This is a small sample of my dataset:
Genes Cell_Line Value
myc A1 233
myc A2 213
myc A3 541
erk A1 123
erk A2 245
erk A3 123
I would like to take the first column, then make the unique gene names as columns for the values
Example :
Cell_Line myc erk
A1 233 123
A2 213 245
A3 541 123
I am trying to navigate around the dplyr package and the group function. I am not sure if that works.