Is it possible to create a combined column graph and line graph with different Y axis like you can in Excel? I want to automate the production of graphs where the line graph is the Good -Bad ratio and the bar graph is the percent of universe for the given interval of another variable. The left Y axis would be for the Good - Bad ratio and the right Y axis would be the percent of universe. I'd like to do this with lattice but any recommendations would be appreciated.
|
feedback
|
There seems to be a problem with the comment formatting so I am putting the code here as well. The rx and lx vectors need to be numeric but the xticklab argument can be used to label correctly:
| |||||||||
feedback
|
|
If you want to do this by hand, look at the updateusr function in the TeachingDemos package. This only works with base graphics, not lattice. | |||
|
feedback
|
|
I know this question already has an accepted answer, but I just wanted to add another option. If you find yourself in a situation where your options beyond "base" R are limited (eg if you are working on a disparate team of people and need highest possible code compatibility, a situation I've found myself in recently), you can always use the
command to plot one plot on top of another -- so, a barplot and a line plot. The trick here (thanks to this post) is to use "plot" for both the line and bar charts, just use "type='h'" and the "lend" and "lwd" options to create a barplot from the line plot. This replicates the code above, using only the "base" functions:
| |||
|
feedback
|