Calendar Plots With ggplot2

August 3, 2024 | Albert Rapp

library(tidyverse) ## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ── ## ✔ dplyr 1.1.4 ✔ readr 2.1.5 ## ✔ forcats 1.0.0 ✔ stringr 1.5.1 ## ✔ ggplot2 3.5.1 ✔ tibble 3.2.1 ## ✔ lubridate 1.9.3 ✔ tidyr 1.3.1 ## ✔ purrr 1.0.2 ## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ── ## ✖ dplyr::filter() masks stats::filter() ## ✖ dplyr::lag() masks stats::lag() ## ℹ Use the conflicted package () to force all conflicts to become errors library(reactable) counts filter(!is.na(sex)) |__ dplyr::count(species, ... [Read more...]

R Consortium Grants Committee Announces New Chair

August 2, 2024 | R Consortium

The R Consortium is pleased to announce that Katherine Jeschke has been appointed Chair of the Grants Committee. She will oversee day-to-day grant processes for both pre- and post-awards, ensuring... The post R Consortium Grants Committee Announces New Chair appeared first on R Consortium.
[Read more...]

Pulling a Loose Thread on Pull()

August 1, 2024 | John Mount

Richard Layton recently shared a neat article: A subtle flaw in pull(). This is the usual loss of reliable programmable semantics just to avoid a few quote marks (at the cost of many more force eval and paste marks). It is well considered and well writ... [Read more...]

Filter a Vector in R

July 31, 2024 | R Archives » Data Science Tutorials

The post Filter a Vector in R appeared first on Data Science Tutorials Unravel the Future: Dive Deep into the World of Data Science Today! Data Science Tutorials. Filter a Vector in R is a fundamental skill that can be applied to a wide range of data analysis tasks. In ... [Read more...]

A subtle flaw in pull()

July 31, 2024 | Richard Layton

Summary In the current version of dplyr, if x is not a column name in data frame d, then pull(d, x) attempts to look up the value of x in the environment instead of returning NULL or an error. There are ways to augment pull() to yield the exp... [Read more...]

EpiLPS for estimation of incubation times

July 31, 2024 | R on Stats and R

Motivation Coarse data Simulated example Real data example References Motivation A group of researchers from the Data Science Institute (DSI) at Hasselt University developed a new statistical model to estimate the incubation period of a pathogenic organism based on coarse data. The incubation period of an infectious disease (defined as ...
[Read more...]

AI-Powered Virtual Assistants: Beyond Siri and Alexa

July 31, 2024 | Sapna Naga

“We can only see a short distance ahead, but we can see plenty there that needs to be done.” ― Alan Turing AI virtual assistants have become indispensable tools for both personal and professional settings. While Siri and Alexa are household names, the latest advancements in AI-powered virtual assistants offer capabilities ...
[Read more...]
1 43 44 45 46 47 2,173