İlk zaman serini çiz

Python ile Zaman Serisi Verilerini Görselleştirme

Thomas Vincent

Head of Data Science, Getty Images

Matplotlib kütüphanesi

  • Python'da, matplotlib veri görselleştirmek için kapsamlı bir pakettir
  • matplotlib'in pyplot alt modülü genelde plt takma adıyla içe aktarılır
import matplotlib.pyplot as plt
Python ile Zaman Serisi Verilerini Görselleştirme

Zaman serisi verisini çizmek

İlk zaman serin

Python ile Zaman Serisi Verilerini Görselleştirme

Zaman serisi verisini çizmek

import matplotlib.pyplot as plt
import pandas as pd

df = df.set_index('date_column')
df.plot()
plt.show()
Python ile Zaman Serisi Verilerini Görselleştirme

Grafiklerine stil eklemek

plt.style.use('fivethirtyeight')
df.plot()
plt.show()
Python ile Zaman Serisi Verilerini Görselleştirme

FiveThirtyEight stili

fivethirtyeight stilinin bir örneği

Python ile Zaman Serisi Verilerini Görselleştirme

Matplotlib stil sayfaları

print(plt.style.available)
['seaborn-dark-palette', 'seaborn-darkgrid', 
'"seaborn-dark"', 'seaborn-notebook', 
'seaborn-pastel', 'seaborn-white', 
'classic', 'ggplot', 'grayscale', 
'dark_background', 'seaborn-poster', 
'seaborn-muted', 'seaborn', 'bmh', 
'seaborn-paper', 'seaborn-whitegrid', 
'seaborn-bright', 'seaborn-talk', 
'fivethirtyeight', 'seaborn-colorblind', 
'seaborn-deep', 'seaborn-ticks']

Python ile Zaman Serisi Verilerini Görselleştirme

Grafikleri etiketlerle açıklamak

ax = df.plot(color='blue')
ax.set_xlabel('Date')
ax.set_ylabel('The values of my Y axis')
ax.set_title('The title of my plot')
plt.show()

Grafiklerine etiket eklemek

Python ile Zaman Serisi Verilerini Görselleştirme

Figure boyutu, linewidth, linestyle ve fontsize

ax = df.plot(figsize=(12, 5), fontsize=12,
             linewidth=3, linestyle='--')
ax.set_xlabel('Date', fontsize=16)
ax.set_ylabel('The values of my Y axis', fontsize=16)
ax.set_title('The title of my plot', fontsize=16)
plt.show()

Python ile Zaman Serisi Verilerini Görselleştirme

Hadi pratik yapalım!

Python ile Zaman Serisi Verilerini Görselleştirme

Preparing Video For Download...