I have a dataframe in R with three variables named, for example, df$V1 , df$V2 , df$V3 . df$V1 and df$V2 are both factors, and df$V3 are numerical.
df <- data.frame( V1 = letters[1:4], V2 = rep(LETTERS[1:3], each = 4), V3 = 1:12 )
I am looking for a way to create a table containing values ββin df$V3 , with df$V1 as rows and df$V2 as columns.
I tried the options on the table but received nothing. Maybe someone can help, Thanks in advance, Davy.
r
Davy kavanagh
source share