Dynamic variable names in R

Assigning dynamic variable names Sometimes you want to use dynamic variable names, these are variable names that change (dynamically) per iteration. In the basic example below each value in the vector my.vec is iteratively re-named. Example First a dynamic name Continue Reading …

How to check your code

Whether you’re studying a course or self learning it’s nice to be able to check your code. It’s time to introduce code linters. A linter checks your code for typos, unused variables and general formatting. These tools are particularly helpful Continue Reading …