RStudio GGplot Cheat Sheet | RStudioDataLab

September 13, 2024 | Zubair Goraya

Table of Contents Scatter Plot (geom_point) Code ggplot(mtcars, aes(x = mpg, y = wt)) +geom_point(color = "darkblue", size = 3) +ggtitle("MPG vs Weight") Copy Line Chart (geom_line) Code ggplot(mtcars, aes(x = seq_along(mpg), y = mpg)) + geom_line(color = "green", linewidth = 1) + ggtitle("Line Chart of MPG") Copy ...
[Read more...]

Introduction to Interpretable Machine Learning in R

September 10, 2024 | Dariia Mykhailyshyna

Join our workshop on Introduction to Interpretable Machine Learning in R, which is a part of our workshops for Ukraine series!  Here’s some more info:  Title: Introduction to Interpretable Machine Learning in R Date: Thursday, October 10th, 18:00 – 20:00 CEST (Rome, Berlin, Paris timezone)  Speaker: Andreas Hofheinz, Andreas is a Data ... [Read more...]

PowerQuery Puzzle solved with R

September 10, 2024 | Numbers around us

#215–216PuzzlesAuthor: ExcelBIAll files (xlsx with puzzle and R with solution) for each and every puzzle are available on my Github. Enjoy.Puzzle #215Today we have to do something that I really don’t like to do: constructing tables with esthetical stru...
[Read more...]
1 38 39 40 41 42 2,177