|
|
|
|
|
by teekert
3284 days ago
|
|
Seaborn has a standard data set (now that I searched it, it is part of scikit I think) [0], however, I think what made learning fast is that I used the same type of data as I did before and had a clear goal. Excel sheets are easily loaded into pandas: import pandas as pd
file = pd.read_xlsx('some_excel_file.xlsx')
file # Just typing this will display the file as a table in jupyter, after ctrl-enter to execute the code block
To plot: import seaborn as sns
%matplotlib inline # This makes the plot appear in the notebook instead of in a separate window
sns.violinplot(file)
Boom, that is it (assuming the Excel file is a number of columns with labels as the top row).[0] http://scikit-learn.org/stable/auto_examples/datasets/plot_i... |
|
http://www.dataschool.io/best-python-pandas-resources/
https://www.quora.com/How-do-I-learn-data-analysis-with-Pyth...
https://www.quora.com/What-is-the-best-way-to-learn-algorith...