Forum Discussion

xhead's avatar
xhead
Helper II
8 years ago
Solved

Scatter chart alternative

I have two measures that I want to plot over time. Average Oil ("Avg Oil (bbl/d)") and Cumulative Oil ("Cumulative Oil (bbl)"). Here is sample of the data:

 

DateAvg Oil (bbl/d)Cumulative Oil (bbl)
10/1/20171.611.61
10/2/20171.653.26
10/3/20171.614.87
10/4/20171.616.48
10/5/20171.738.21
10/6/20171.729.93
10/7/20171.6711.6
10/8/20171.6413.24
10/9/20171.6814.92
10/10/20171.5416.46
10/11/20171.7218.18

 

I can do this with a Scatter chart, but I really want a line instead of bubbles.

 

--> I can't upload a screen shot, forum isn't letting me

 

I tried using an R visual, but I can't figure out what the script should be:

 

--> my screenshot shows a continuous level line 

 

# dataset <- data.frame(Date, Avg Oil (bbl), Cumulative Oil (bbl))

 

library("ggplot2")

ggplot(dataset, aes(x = `Cumulative Oil (bbl)`, y = `Avg Oil (bbl)`)) +
geom_line()

 

Any ideas? 

 

Mike

5 Replies

    • xhead's avatar
      xhead
      Helper II

      Yeah, I wish I could upload the screen shots. 

       

      A Line chart gives me two lines, one for Avg and one for Cumulative, with 0-200 on the y-axis, and dates on the X-axis.

       , I want the x-axis to show the Avg, and the y-axis to show the cumulative, one line to show the relationship of avg vs cumulative