pointplot Questions
3
Solved
3
Solved
I have two arrays like so:
Soldier_years = [1850, 1851, 1852, 1853, 1854, 1855, 1856, 1857, 1858, 1859, 1860, 1861, 1862, 1863, 1864, 1865, 1866, 1867, 1868, 1869, 1870]
num_records_yob = [7, 5, 8...
Greenaway asked 9/5, 2016 at 2:0
2
Solved
import seaborn as sns
sns.set(style="ticks")
exercise = sns.load_dataset("exercise")
g = sns.factorplot(x="time", y="pulse", hue="kind", data=exercise)
In the plot above, if I specify scale as 0....
Essequibo asked 7/8, 2017 at 6:49
1
I understand that scale changes both parameters at the same time, but I want to achieve the effect of having a thin line connected between big markers.
I also tried resizing through rc{'lines.line...
Chuckhole asked 5/4, 2016 at 3:50
1
© 2022 - 2024 — McMap. All rights reserved.