Day of the week number in R

There is R base function like weekdays that can return the name of the weekday. But what if you want to get the day of the week number in R to do calculations? Here is how to do that by using one of the most popular R packages.

Use ifelse across a range of R data frame columns

Here is how to apply the ifelse function across a range of multiple R data frame columns. Sometimes it is necessary to do calculations by a condition and it could be time-consuming to do that for each of multiple columns. Or even worse. Maybe the necessary columns are changing position over time and you have… Continue reading Use ifelse across a range of R data frame columns

Variance or other calculation across columns in R

Here is how to calculate variance across columns in the R data frame. The same technique can be useful in other situations. Like in this other example. Get a count of NA values for each of the columns in the R data frame.

Running, moving, rolling average in R, dplyr

You can calculate the moving average (also called a running or rolling average) in different ways by using R packages.

Exit mobile version