Python 09 seaborn

 0    5 flashcards    swiatangielskiego
download mp3 print play test yourself
 
Question Answer
import wizualizacji statystycznych
start learning
import seaborn as sns
tablica df iris
start learning
df_iris = sns. load_dataset("iris")
ustaw parametry seaborn
start learning
sns. set(style='whitegrid', color_codes=True) sns. set(rc={'figure. figsize': (11.7, 8.27)})
Wykres zliczania to histogram dla zmiennej jakościowej, a nie ilościowej
start learning
sns. countplot('Route To Market', data=sales_data, hue='Opportunity Result')
wykres prostokątów jako matrycę zakodowaną w kolorze.
start learning
sns. heatmap(cross_tab)

You must sign in to write a comment