Reading delimited data
(This article was first published on R-exercises, and kindly contributed to R-bloggers) In the exercises below we cover the basics of reading delimited data. Before proceeding, first read section 7.1...
View ArticleScan exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) In the exercises below we cover the basics of the scan function. Before proceeding, first read section 7.2 of An...
View ArticleConditional execution exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) In the exercises below we cover the basics of conditional execution. In all previous exercises, the solutions...
View Articlefunctions exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) Today we’re practising functions! In the exercises below, you’re asked to write short R scripts that define...
View ArticleMode exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) In the exercises below we cover the basics of R object modes. Understanding mode is important, because mode is a...
View ArticlePractical uses of R object modes: some examples
(This article was first published on R-exercises, and kindly contributed to R-bloggers) One of our readers commented on our mode exercises post: “What real world tasks are you using mode to solve?” I...
View ArticleBind exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) Binding vectors, matrices and data frames using rbind and cbind is a common R task. However, when dimensions or...
View ArticleGet-your-stuff-in-order exercises
(This article was first published on R-exercises, and kindly contributed to R-bloggers) In the exercises below we cover the basics of ordering vectors, matrices and data frames. We consider both...
View Article