Rotate label text in seaborn factorplot

I have a simple factorplot import seaborn as sns g = sns.factorplot(“name”, “miss_ratio”, “policy”, dodge=.2, linestyles=[“none”, “none”, “none”, “none”], data=df[df[“level”] == 2]) The problem is that the x labels all run together, making them unreadable. How do you rotate the text so that the labels are readable? 10 Answers 10

pyplot scatter plot marker size

In the pyplot document for scatter plot: matplotlib.pyplot.scatter(x, y, s=20, c=”b”, marker=”o”, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewidths=None, faceted=True, verts=None, hold=None, **kwargs) The marker size s: size in points^2. It is a scalar or an array of the same length as x and y. What kind of unit is points^2? What does it mean? Does … Read more