Jak utworzyć wykres warstwowy w seaborn (z przykładami)
Aby utworzyć wykres obszarowy w Seaborn , możesz użyć następującej podstawowej składni:
import matplotlib. pyplot as plt import seaborn as sns #set seaborn style sns. set_theme () #create seaborn area chart plt. stackplot ( df.x , df.y1 , df.y2 , df.y3 )
Poniższe przykłady pokazują, jak używać tej składni w praktyce.
Przykład 1: Utwórz podstawowy wykres warstwowy w Seaborn
Poniższy kod pokazuje, jak utworzyć podstawowy wykres warstwowy w Seaborn:
import pandas as pd import matplotlib. pyplot as plt import seaborn as sns #set seaborn style sns. set_theme () #define DataFrame df = pd. DataFrame ({' period ': [1, 2, 3, 4, 5, 6, 7, 8], ' team_A ': [20, 12, 15, 14, 19, 23, 25, 29], ' team_B ': [5, 7, 7, 9, 12, 9, 9, 4], ' team_C ': [11, 8, 10, 6, 6, 5, 9, 12]}) #create area chart plt. stackplot (df. period , df. team_A , df. team_B , df. team_C )
Oś x wyświetla zmienną okresu, a oś y wyświetla wartości dla każdego z trzech zespołów w czasie.
Przykład 2: Utwórz niestandardowy wykres warstwowy w Seaborn
Poniższy kod pokazuje, jak zmienić kolory wykresu warstwowego i dodać legendę z określonymi etykietami:
import pandas as pd import matplotlib. pyplot as plt import seaborn as sns #set seaborn style sns. set_theme () #define DataFrame df = pd. DataFrame ({' period ': [1, 2, 3, 4, 5, 6, 7, 8], ' team_A ': [20, 12, 15, 14, 19, 23, 25, 29], ' team_B ': [5, 7, 7, 9, 12, 9, 9, 4], ' team_C ': [11, 8, 10, 6, 6, 5, 9, 12]}) #define colors to use in chart color_map = [' red ', ' steelblue ', ' pink '] #create area chart plt. stackplot (df. period , df. team_A , df. team_B , df. team_C , labels=[' Team A ', ' Team B ', ' Team C '], colors=color_map) #add legend plt. legend (loc=' upper left ') #add axis labels plt. xlabel (' Period ') plt. ylabel (' Points Scored ') #display area chart plt. show ()
Należy pamiętać, że argument kolory akceptuje nazwy kolorów oraz kody kolorów w formacie szesnastkowym.
Dodatkowe zasoby
Poniższe samouczki wyjaśniają, jak tworzyć inne popularne wątki w Seaborn:
Jak utworzyć wykres szeregów czasowych w Seaborn
Jak utworzyć wykres kołowy w Seaborn
Jak stworzyć barplot w Seaborn