As the title says, I have a column 'values' that has a list of values for each entry. I want to find the minimum value in the list for each row and append it in a new column. Below is what I've tried (among other things) based on this answer Extract the maximum value within each group in a dataframe. Unfortunately, I only manage to find the minimum of the entire column and apply that same minimum to every row.
df <- df[,'minVal' := min(unlist(df$values))]