Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

ploting to data on the same axis

ax = df1.plot(x="col_a", y="col_b",
              label="df1")
df2.plot(x="col_a", y="col_b",
         label="df2", ax=ax, ylabel="Y Axis Label")
Source by projects.datacamp.com #
 
PREVIOUS NEXT
Tagged: #ploting #data #axis
ADD COMMENT
Topic
Name
7+5 =