horizontal line plot python code example
Example 1: horizontal line matplotlib python
import matplotlib.pyplot as plt
plt.axhline(0)
Example 2: horizontal bar plot python
import seaborn as sns
sns.barplot(data=df, orient = 'h')
import matplotlib.pyplot as plt
plt.axhline(0)
import seaborn as sns
sns.barplot(data=df, orient = 'h')