Google Data Analytics – R programming — Date does not show in console but need to access with View

Issue

This Content is from Stack Overflow. Question asked by Marcus Edmonds

I need to add the View() command to the below code to see the data. It does not populate in the console as in the video. Learning the code and just want to make sure I understand the little things.

Many thanks.

data(ToothGrowth)

filtered_toothgrowth <-ToothGrowth %>% 
  filter(dose==0.5) %>%
  group_by(supp) %>% 
  summarise(mean_len = mean(len,na.rm = T),.group="drop")



Solution

This question is not yet answered, be the first one who answer using the comment. Later the confirmed answer will be published as the solution.

This Question and Answer are collected from stackoverflow and tested by JTuto community, is licensed under the terms of CC BY-SA 2.5. - CC BY-SA 3.0. - CC BY-SA 4.0.

people found this article helpful. What about you?