tidyverse - delete a column within a nested column/list
问题 I have the following data: (Note: I'm using the current github version of dplyr within tidyverse which offerse some new experimental functions, like condense - which I'm using below, but I think that's not relevant for my problem/question). library(tidyverse) library(corrr) dat <- data.frame(grp = rep(1:4, each = 25), Q1 = sample(c(1:5, NA), 100, replace = TRUE), Q2 = sample(c(1:5, NA), 100, replace = TRUE), Q3 = sample(c(1:5, NA), 100, replace = TRUE), Q4 = sample(c(1:5, NA), 100, replace =