question |
réponse |
commencer à apprendre
|
|
import matplotlib. pyplot as plt
|
|
|
wykres dwie osie blue circle lub red plus commencer à apprendre
|
|
plt. plot(x, y, 'bo') plt. plot(x, y, 'r+') plt. plot(x, y, 'bo', x, y, 'r+')
|
|
|
commencer à apprendre
|
|
plt. bar(x, y, yerr=variance, color='blue')
|
|
|
commencer à apprendre
|
|
plt. barh(x, y, xerr=variance, color='blue')
|
|
|
commencer à apprendre
|
|
plt. bar(x, y, 0.3, color='red', label='Label1') plt. bar(x + 0.3, y, 0.3, color='blue', label='Label2')
|
|
|
commencer à apprendre
|
|
plt. pie(lista, explode=explode, labels=firms, shadow=True, startangle=45)
|
|
|
commencer à apprendre
|
|
|
|
|
commencer à apprendre
|
|
|
|
|
commencer à apprendre
|
|
|
|
|
legenda wykresu i po prawej stronie commencer à apprendre
|
|
plt. legend() plt. legend(title='Firms') plt. axis('equal')
|
|
|
commencer à apprendre
|
|
plt. xlabel('X') plt. ylabel('Y')
|
|
|
automatycznie dostosój parametry wykresu commencer à apprendre
|
|
|
|
|
wykresy wyświetlane jednocześnie commencer à apprendre
|
|
plt. figure(1, figsize=(10, 10)) plt. plot(x, y, 'bo')
|
|
|
kilka wykresów na jednej figurze commencer à apprendre
|
|
plt. figure(1, figsize=(10, 10)) plt. subplot(2, 2, 1) plt. plot(x, y, 'bo')
|
|
|
commencer à apprendre
|
|
plt. suptitle('Sub title')
|
|
|
commencer à apprendre
|
|
|
|
|
wykres rozproszony na bazie df commencer à apprendre
|
|
df. plot(kind='scatter', x='kolumna', y='kolumna', title=")
|
|
|
commencer à apprendre
|
|
df['kolumna']. plot(kind='hist', title='Score')
|
|
|
wykres słupkowy na bazie df commencer à apprendre
|
|
df['kolumna']. plot(kind='bar') barh
|
|
|
wykres kołowy na bazie df commencer à apprendre
|
|
df['kolumna']. plot(kind='pie')
|
|
|
commencer à apprendre
|
|
df['kolumna']. plot(kind='box')
|
|
|
commencer à apprendre
|
|
fig, axes = plt. subplots(nrows=2, ncols=2) df. plot(ax=axes[0, 0], kind='hist')
|
|
|
kolorowanie wykresu rozproszonego commencer à apprendre
|
|
plt. scatter(df. col1, df. col2, c=colors) colors = np. array(["#f442bf", "#6e41f4", "#f4dc41"])[df[1]. cat. codes]
|
|
|