enter image description hereI am quite new to R and programming in general. So please forgive my ignorance, I am trying to learn.
I have two sets of data and I would like to plot them against each other. Both have 27 rows and 3 columns; one set is called "range" and the other is called "rangePx". Column “Comp” has the different components, column “Min” is the minimum concentration in % and column “Max” is the maximum concentration in %.
I want to make a 2-y axis dumbbell plot, with the y axis being the different components and x axis being the concentration.
I do manage to create 1 y axis dumbbell plot, but I have troubles to add the second y axis.
Here is a snap from the "range" data
 head(range)
# A tibble: 6 x 3
  Comp         Min    Max
  <chr>      <dbl>  <dbl>
1 Methane   0.0100 100   
2 Ethane    0.0100  65.0 
3 Ethene    0.100   20.0 
4 Propane   0.0100  40.0 
5 Propene   0.100    6.00
6 Propadien 0.0500   2.00
and here is a snap from the "rangePx" data
head(rangePx)
# A tibble: 6 x 3
  Comp           Min    Max
  <chr>        <dbl>  <dbl>
1 Methane   50.0     100   
2 Ethane     0.00800  14.0 
3 Ethene     0         0   
4 Propane    0.00800   8.00
5 Propene    0         0   
6 Propadien  0         0  
Here is the piece of code that I use:
library(ggplot2)
library(ggalt)
library(readxl)
theme_set(theme_classic())
range <- read_excel(range.xlsx)
rangePx <- read_excel(rangePx.xlsx")
p <- ggplot(range, aes(x=Max, xend=Min, y = Comp, group=Comp))
p <- p + geom_dumbbell(color="blue")
p
px <- ggplot(rangePx, aes(x=Max, xend=Min, y = Comp, group=Comp))
px <- px + geom_dumbbell(color="green")
p <- p + geom_dumbbell(aes(y=px, color="red"))
p
and here is the complain I get when I call p:
Error: Aesthetics must be either length 1 or the same as the data (27): y, colour, x, xend, group
Here I saw a 6x3 data frame but my original data are 27x3
can anyone help me?
Thnx in advance
 
    