如何创建具有 3 个不同 y 轴的 Seaborn 线图?

时间:2021-07-15 10:59:59

标签: python matplotlib seaborn visualization

我试图用 3 组不同的数据在 y 轴上绘制 3 个不同的比例。我能够绘制第三条线,但 y2 和 y3 轴在一起。

我需要将这两个轴分开,以便它们可读。

enter image description here

这可以通过 Seaborn 库完成吗?

这是代码:

import datetime
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

# Ingest the data
url = 'https://covid.ourworldindata.org/data/owid-covid-data.csv'
covid_data = pd.read_csv(url).set_index("location")

# Clean the data 
df = covid_data.copy()
df.date = pd.to_datetime(df.date)
df = df.loc[df['date'] > (datetime.datetime(2021, 4, 30)), :]
df = df[df.index.isin(['United States'])]

# Select the features of interest
new_cases = 'new_cases_smoothed_per_million'
patients = 'hosp_patients_per_million'
vaccinated = 'people_fully_vaccinated_per_hundred'
bedsT = 'hospital_beds_per_thousand'
bedsM = 'hospital_beds_per_million'
beds_used = 'hospital_beds_used'
df = df.loc[:, ['date', new_cases, patients, vaccinated, bedsT]]
df[bedsM] = df[bedsT] * 1000
df[beds_used]=df.apply(lambda x: x[patients] / x[bedsM], axis = 1)


# Visualise the data
y1_color = "red"
y2_color = "green"
y3_color = "blue"

x1_axis = "date"
y1_axis = new_cases
y2_axis = vaccinated
y3_axis = beds_used

x1 = df[x1_axis]
y1 = df[y1_axis]
y2 = df[y2_axis]
y3 = df[y3_axis]
y2_limit = df[y2_axis].max()


fig, ax1 = plt.subplots(figsize=(16, 6))
ax1.set_title("United States")
ax2 = ax1.twinx()
ax3 = ax1.twinx()

ax2.set(ylim=(0, y2_limit))
g1 = sns.lineplot(data = df, x = x1, y = y1, ax = ax1, color = y1_color) # plots the first set
g2 = sns.lineplot(data = df, x = x1, y = y2, ax = ax2, color = y2_color) # plots the second set 
g3 = sns.lineplot(data = df, x = x1, y = y3, ax = ax3, color = y3_color) # plots the third set 

1 个答案:

答案 0 :(得分:0)

我用你的数据修改了代码,参考官方样例中的子图。您可以找到参考 here

from mpl_toolkits.axes_grid1 import host_subplot
from mpl_toolkits import axisartist

# fig, ax1 = plt.subplots(figsize=(16, 6))
host = host_subplot(111, axes_class=axisartist.Axes) # update
plt.rcParams["figure.figsize"] = (16, 6) # update

ax1.set_title("United States")
# ax1 = host.twinx()
ax2 = host.twinx() # update
ax3 = host.twinx() # update

ax3.axis["right"] = ax3.new_fixed_axis(loc="right", offset=(50, 0)) # update

ax1.axis["right"].toggle(all=True) # update
ax2.axis["right"].toggle(all=True) # update

ax2.set(ylim=(0, y2_limit))
sns.lineplot(data = df, x = x1, y = y1, ax = host, color = y1_color) # plots the first set ax = ax1,
sns.lineplot(data = df, x = x1, y = y2, ax = ax2, color = y2_color) # plots the second set ax = ax2,
sns.lineplot(data = df, x = x1, y = y3, ax = ax3, color = y3_color) # plots the third set ax = ax3, 

plt.show()

enter image description here