Displaying 1 result from an estimated 1 matches for "v08_01_up11".
2017 Jun 07
2
purrr::pmap does not work
Hi All,
I try to do a scatterplot for a bunch of variables. I plot a dependent 
variable against a bunch of independent variables:
-- cut --
graphics::plot(
  v01_r01 ~ v08_01_up11,
  data = dataset,
  xlab = "Dependent",
  ylab = "Independent #1"
)
-- cut --
It is tedious to repeat the statement for all independent variables. Found 
an alternative, i.e. :
-- cut --
mu <- list(5, 10, -3)
sigma <- list(1, 5, 10)
n <- list(1, 3, 5)
fargs <- l...