It's REALLY the best video about graphics on R. i loveeee it!!! thank you sooo much !!
@SmoothCode3 жыл бұрын
Awesome video! Please do more step-by-step R data visualization tutorials!
@wanglisong57643 жыл бұрын
Fantastical tutorial, best one!
@samuelvitor242411 ай бұрын
Show de bola
@annestephen31744 жыл бұрын
Hello, How can i get the data you are using on this clip. Great Work.
@sergiocosta61514 жыл бұрын
The data is in the base package `datasets`. Just load the package and type `Orange` to see it, as shown in the video.
@jimmypratama36782 жыл бұрын
why when i use the geom_line its always error, its says "Each group consists of only one observation."
@ahmed007Jaber2 жыл бұрын
thank you for this; I am trying to visulaise the below but I am getting straight lines connected in the same year. any idea how to fix it? world_bank_pop %>% # tibble() %>% # janitor::clean_names() %>% pivot_longer(cols = 3:20, names_to = "date_data", values_to= "num_values") %>% tibble() %>% head(100) %>% ggplot(aes(date_data, num_values, groups = country)) + # geom_line()+ geom_point()