Issue
I tried drawing a relplot with log scaled axes. Making use of previous answers, I tried:
import matplotlib.pyplot as plt
import seaborn as sns
f, ax = plt.subplots(figsize=(7, 7))
ax.set(xscale="log", yscale="log")
tips = sns.load_dataset("tips")
sns.relplot(x="total_bill", y="tip", hue='smoker', data=tips)
plt.show()
However the axes were not changed in the result.
How can I remedy this?
Solution
You can use scatterplot
and dont forget to mention your axes
in your plot
import matplotlib.pyplot as plt
import seaborn as sns
f, ax = plt.subplots(figsize=(7, 7))
tips = sns.load_dataset("tips")
ax.set(xscale="log", yscale="log")
sns.scatterplot(x="total_bill", y="tip", hue='smoker', data=tips,ax=ax)
plt.show()
Edit - relplot
is a figure-level function and does not accept the ax= paramter
Answered By - Karthik
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.