datafest competition 2019
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
280 B

from matplotlib import pyplot as plt
import pandas as pd
def plot_xy(x, y):
plt.scatter(x, y)
plt.xlabel(x.name)
plt.ylabel(y.name)
plt.show()
wellness = pd.read_csv('../data_preparation/data/wellness.csv')
plot_xy(wellness['Fatigue'], wellness['SleepHours'])