I have such a data frame df1
, to indicate the emotion status of a certain user in a time series:
0.00
0.10
0.20
0.00
0.70
....
And another data frame df2
, to indicate the number of record in df1
in a certain day:
2015-01-02 1
2015-01-03 2
2015-01-04 3
i.e, the first value belongs to 01-02
, the second and the third value belongs to 01-03
and so on.
Now I'd like the plot a point graph with date as x-axis and emotional value as y-axis. How can I do that? Furthermore, How to skip all the 0.0 value and just show the value other than zero? Thanks!