I want to compute several weighted crosstables between the variable x
and several y
variables of the same dataframe
. I created a function to do that, but I can´t loop my list of y
variables.
I am giving an example of my procedure using mpg
data: here, my y
variables are cyl
and year
. x
is class
.
library(questionr)
# include some weights in mpg2 (same weight)
mpg2 <- mpg %>%
mutate(weight = 1/234)
#> Error in mpg %>% mutate(weight = 1/234): could not find function "%>%"
# crosstab class by cyl using weights
questionr::wtd.table(mpg2$class, mpg2$cyl,
weights=mpg2$weight,
digits = 0, na.show=FALSE)
#> Error in questionr::wtd.table(mpg2$class, mpg2$cyl, weights = mpg2$weight, : object 'mpg2' not found
# using a function
calc_table <- function(x, y) {
return(questionr::wtd.table(x, y,
weights=mpg2$weight,
digits = 0, na.show=FALSE))
}
# No problem when describing the variable as mpg2$cyl
calc_table(mpg2$class, mpg2$cyl)
#> Error in questionr::wtd.table(x, y, weights = mpg2$weight, digits = 0, : object 'mpg2' not found
# But I want to crosstab class with cyl (mpg2[5])
# and also class with year (mpg2[4])
# referencing the variable in a loop
# My main goal is to use the function for several variables
for (i in c(4:5)){
calc_table(mpg2$class, mpg2[i])
}
#> Error in questionr::wtd.table(x, y, weights = mpg2$weight, digits = 0, : object 'mpg2' not found
The issue is that you used
mpg2[i]
which returns a dataframe or tibble instead ofmpg2[[i]]
which returns a vector. However, besides this issue I would suggest to loop over column names instead of positions. I also added a list to save the results. Try this: