How do you figure out the numerical columns of the Orange data set?
-
The mean values for all the numerical columns of the set should be calculated and removed. Data Orange and descriptive statistics on the Orange data set.
-
Perhaps you'd like to see the average age and length of the tree ring from the dateset.
Orange
♪ This can be done as follows by grouping the tree number:library(tidyverse)
Orange %>%
group_by(Tree) %>%
summarise(mean_age = mean(age, na.rm = TRUE),
mean_cir = mean(circumference, na.rm = TRUE))
Basic narrative statistics can be obtained using the function
summary
to date.Next time, please clarify the question: give an example of the data, the expected outcome, etc.