Should I be using unnest_wider and rowMeans to get the average of a list column?
I have a simple data set. The row names are a meaningful index and column 1 has a list of values. What I eventually want is the average of that list for each row name. What it looks like now: row name years 108457 [1200, 1200, 1540, 1890] 237021 [1600, 1270, 1270] What I eventually… Read More Should I be using unnest_wider and rowMeans to get the average of a list column?