Lecture video & notebook:
Please use this thread for asking questions.
Lecture video & notebook:
Please use this thread for asking questions.
Whoās here for the lecture?
how we add a csv file present locally in my PC
you have to import pandas as pd for reading the csv file as pd.read_csv(āfile nameā)
try this it will help.
i mean how to read it on binder?
If we get a graph, can we create a dataframe/csv from graph ?
binder is a plateform or the service provider to run your jupyter notebook , but as the explained method is the only way to get read your csv file. (locally) or you can do the use of
flowers_df = sns.load_dataset(āirisā)
which load the data as shown in the notebook.
hope this will help.
I donāt think there are straight forward way for this. Since graphs are images it is definitely not possible, probably you can get the values from that plot object.
If we want to show graph or bin to horizontal line or along X-axis?
like this How can this happen?
Check out orient
argument in seaborn and orientation
in matplotlib
this will help for sure
I didnāt got what is āvariationā in Bar chart? (line above the bar)
variation means changes between bars. this means that how two bar or plots vari from each other.
Variation means that How two bars or plots vari from each other.
Variation means changes between two bar.
If I want to use my Jupyter notebook for presentation, how can I hide code cells and keep only visualization/graphs? ⦠write a blog using real dataset.