In [ ]:
# %install_ext https://raw.githubusercontent.com/rasbt/watermark/master/watermark.py
%load_ext watermark
%watermark --githash --machine --python --packages pandas,numpy,matplotlib -u --custom_time %Y-%m-%d

In [ ]:
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
import seaborn as sns
sns.set();

In [ ]:
x = np.random.random_sample(1000) * 50.0

In [ ]:
y = np.sin(x)

In [ ]:
plt.scatter(x, y)

In [ ]:
# Create new visualization

In [ ]:
plt.scatter(x ** 2.0,y**2.0, color='red')

In [ ]:
plt.scatter(x,y**2.0, color='red')

In [ ]:


In [ ]: