Posts

This is a very brief guide about how to get started with R and R Studio, including links to where each can be downloaded and several …

In this tutorial we will load in the data created in the second tutorial and make some plots Plotting in Tidyvserse is handled by the …

Below is the first Shiny App I made: It’s an interface for viewing raw ECG data and some summary statistics: My First Shiny App: …

In this tutorial we will load in the data created in the first tutorial. Once the data is loaded, we will perform a conditional …

This is a quick tutorial to introduce some of the basic tidyverse functions by creating some fake data The design of this tutorial is …

How I made this website in R Studio

R Notebook code{white-space: pre;} pre:not([class]) { background-color: white; } if (window.hljs && document.readyState && …

library(tidyverse) library(stringr) states <- map_data("state") Create percent a and b states<-as.tibble(states) %>% …