simstudy 0.8.0: customized distributions

May 20, 2024 | Keith Goldfeld

Over the past few years, a number of folks have asked if simstudy accommodates customized distributions. There’s been interest in truncated, zero-inflated, or even more standard distributions that haven’t been implemented in simstudy. While I’ve com...
[Read more...]

R Solution for Excel Puzzles

May 20, 2024 | Numbers around us

Puzzles no. 454–458PuzzlesAuthor: ExcelBIAll files (xlsx with puzzle and R with solution) for each and every puzzle are available on my Github. Enjoy.Puzzle #454Sombody was counting something, and as usually we have to check it and find the most insigt...
[Read more...]

Effective Visual Communication with R workshop

May 20, 2024 | Dariia Mykhailyshyna

Join our workshop on Effective Visual Communication with R, which is a part of our workshops for Ukraine series!  Here’s some more info:  Title: Effective Visual Communication with R Date: Thursday, June 20th, 18:00 – 20:00 CEST (Rome, Berlin, Paris timezone)  Speaker: Claus Wilke is a data scientist and computational biologist at ... [Read more...]

formatdown v0.1.4

May 19, 2024 | Richard Layton

Summary In response to issues raised by users, formatdown has new functionality (and bug fixes) with additional arguments affording greater control over the appearance of the formatted objects. R code library(formatdown) library(data...
[Read more...]

Three Ways to Include Images in Your ggplots

May 18, 2024 | Albert Rapp

library(tidyverse) library(giscoR) library(ggiraph) germany_districts as_tibble() |__ janitor::clean_names() germany_states as_tibble() |__ janitor::clean_names() ggplt ggplot(aes(geometry = geometry)) + geom_sf( data = germany_states, aes(fill = nuts_name), color = 'black', linewidth = 0.5 ) + geom_sf_interactive( fill = NA, aes( data_id = nuts_id, tooltip = glue::glue(... [Read more...]

Count Function in R I dplyr::count()

May 18, 2024 | Zubair Goraya

Data analysis is all about turning raw data into actionable insights. I was working on a research project analyzing survey data from thousands of respondents. The clock was ticking, and I needed to summarize responses to hundreds of questions quickly. Manually counting each response would have taken days, if not ...
[Read more...]

Positive or Negative in R

May 17, 2024 | R Archives » Data Science Tutorials

The post Positive or Negative in R appeared first on Data Science Tutorials Unravel the Future: Dive Deep into the World of Data Science Today! Data Science Tutorials. Positive or Negative in R, we will learn how to use the sign function in R to determine whether a numeric value ... [Read more...]
1 6 7 8 9 10 2,114