Manipulate data
Perform novel analysis on your data.
1. Find correlations
# Get the correlation and show the value in the sheet
data['col1'].corr(data['col2'], method='pearson')
# possible methods: pearson, kendall, spearman 2. Basic stats - max, min, mean, selections, etc.
# Get the max value of a column
df["col1"].max()# Get the min value of a column
df["col1"].min()# Get the mean value of a column
df["col1"].mean()3. DataFrame math
4. Data selections
Last updated
Was this helpful?