Python for Spreadsheet Users
Chris Cardillo
Data Scientist
pd.read_excel()
.head()
, .describe()
, and .info()
df[df[column] == 'value']
df[new_column] = df[old_column] + 1
df.group_by().sum()
pd.ExcelFile()
and .parse()
.merge()
and left joinssns.barplot()
and plt.show()
plt.title()
, plt.xlabel()
, and plt.ylabel()
sns.set_style()
and sns.despine()
hue
Python for Spreadsheet Users