convert tibble to dataframe with row names code example
Example 1: convert tibble to dataframe
as.data.frame(x) #x being the tibble to be converted
Example 2: r named chr to dataframe
data.frame(as.list(testVect))
as.data.frame(x) #x being the tibble to be converted
data.frame(as.list(testVect))