In [1]:
comment?


Object `comment` not found.

In [2]:
# Trying this Github shit
print('Hi man!') # Recall that Python 3.4 recalls parenthesis with the print command


Hi man!

In [3]:
plot?


Object `plot` not found.

In [4]:
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt


N = 50
x = np.random.rand(N)
y = np.random.rand(N)
area = np.pi * (15 * np.random.rand(N))**2 # 0 to 15 point radiuses

plt.scatter(x, y, s=area, alpha=0.5)
plt.show()



In [ ]: