The r-faq tag is created to group a limited number of questions discussing problems that come up regularly on the R tag.
There is an option in R to get control over digit display. For example: options(digits=10) is supposed to give …
r precision digits r-faq output-formattingWhat are the differences between the assignment operators = and <- in R? I know that operators are slightly different, …
r assignment-operator r-faqLet's say that I have a date in R and it's formatted as follows. date 2012-02-01 2012-02-01 2012-02…
r date r-faqI'm having trouble rearranging the following data frame: set.seed(45) dat1 <- data.frame( name = rep(c("firstName", "secondName"), …
r reshape r-faqI have data similar to this: dt <- structure(list(fct = structure(c(1L, 2L, 3L, 4L, 3L, 4L, 1…
r subset r-faqHow can I list the distinct values in a vector where the values are replicative? I mean, similarly to the …
r vector distinct-values r-faq