R News from another blog for R community

D is for dummy_cols

For the letter D, I’m going to talk about the dummy_cols functions, which isn’t actually part of the tidyverse, but hey: my posts, my rules. This function is incredibly useful...continue reading.

C is for coalesce

For the letter C, we’ll talk about the coalesce function. If you’re familiar with SQL, you may have seen this function before. It combines two or more variables into a...continue reading.

B is for bind_rows

Moving on to the letter B, today we’ll talk about merging datasets that contain the same variables but add new cases. This is easily done with bind_rows. Let’s say I...continue reading.

Python Data Analysis: covid-19, part 4 [visual data exploration]

This tutorial is part of a series of tutorials analyzing covid-19 data. For parts 1, 2, and 3, see the following posts: https://www.sharpsightlabs.com/blog/python-data-analysis-covid19-part1/ https://www.sharpsightlabs.com/blog/python-data-analysis-covid19-part2/ https://www.sharpsightlabs.com/blog/analyzing-covid-19-with-python-part-3-eda/ Covid19 analysis, part 4: visual...continue reading.

A is for arrange

The arrange function allows you to sort a dataset by one or more variable, either ascending or descending. This function is especially helpful if you plan on aggregating your data...continue reading.