Hi,
I need help in creating a table for the below data set using the basic package
into this in terms of height
so far the code I've typed is
X <- read.table("A4.csv", header = TRUE, sep = ",", stringsAsFactors = FALSE)
#Laying the data in a table
Y <- table(X$height, X$gender)
print(Y)
which does not work.
Any help will be appreciated.
Thanks