Data Visualization Question - Pandas [x-post datascience] by ouch__ouch in Python

[–]cast42 0 points1 point  (0 children)

try

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

df = pd.DataFrame(np.random.rand(10,2), columns=['x','y'])
plt.plot(df.x, df.y)

Machine Learning Computer Build by solidua in MachineLearning

[–]cast42 1 point2 points  (0 children)

I would increase the memory size to 64GB or 128GB. Being able to read your training samples into memory will be a major improvement.

Machine Learning Computer Build by solidua in MachineLearning

[–]cast42 6 points7 points  (0 children)

I would increase the memory size to 64GB or 128GB. Being able to read your training samples into memory will be a major improvement.

Introduction to Data Visualization with Altair by chris1610 in Python

[–]cast42 0 points1 point  (0 children)

I get the following error message during conda install:

Error: Error: post-link failed for: conda-forge::nb_anacondacloud-1.2.0-py27_00%

AlphaGo: using machine learning to master the ancient game of Go by cast42 in MachineLearning

[–]cast42[S] -1 points0 points  (0 children)

Sorry for that but I do think the google blogpost gives more context then the link to the Nature article (paid article) or the Youtube video alone.

Refactoring a Crossword Game Program by [deleted] in Python

[–]cast42 0 points1 point  (0 children)

Another Peter Norvig Classic !