Skip to content
Prev 369676 / 398503 Next

purrr::pmap does not work

You might try
   matplot()

example:
x <- matrix(rnorm(30), ncol=3)

## plot a dependent variable (1:10) against a bunch of independent variables (the three columns of x)
matplot(x , 1:10, type='b')

## or a bunch of dependent variables (the three columns of x) against an independent variable (1:10)
matplot(1:10,  x, type='b')