PowerQuery Puzzle solved with R

September 17, 2024 | Numbers around us

#217–218PuzzlesAuthor: ExcelBIAll files (xlsx with puzzle and R with solution) for each and every puzzle are available on my Github. Enjoy.Puzzle #217Turn around, transpose, pivot it all means almost the same. Like table asked us to spin itself around....
[Read more...]

Deposits In The Wild

September 16, 2024 | rOpenSci - open tools for open science

For the better part of a year, I have been looking for an opportunity to use the rOpenSci package deposits in my role as the Data Librarian at EcoHealth Alliance. I had done some initial testing with Mark Padgham, the brilliant person who developed this package, but there weren’t ... [Read more...]

R Solution for Excel Puzzles

September 16, 2024 | Numbers around us

Puzzles no. 539–543PuzzlesAuthor: ExcelBIAll files (xlsx with puzzle and R with solution) for each and every puzzle are available on my Github. Enjoy.Puzzle #539Many companies have to diversify their source of resources, to optimize prices etc. So they usually have their orders somehow mixed between vendors. In this case ...
[Read more...]

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...]
1 22 23 24 25 26 2,161