Posts by Socrates • 302 points
6 posts
-
2
votes1
answer79
viewsA: Filtering a data.frame based on multiple variables
After clarification of the question in the comments: I need to filter the lines where these measurements occur together in any of the X1 variables.... X9 The solution remains based on the command…
-
1
votes1
answer71
viewsQ: How to combine multiple R-Markdown (.rmd) files into a single document?
In a project on R, I have several files .Rmd in the same folder. As in the example below: Capitulo1.Rmd --- title: "Capítulo 1" output: pdf_document --- # Esse é o capítulo 1. ```{r} plot(cars) ```…
-
1
votes1
answer71
viewsA: How to combine multiple R-Markdown (.rmd) files into a single document?
Bookdown package One option is to use the package bookdown, written especially for the writing of long books and reports in the R-markdown, and which includes various features such as the…
-
3
votes1
answer72
viewsQ: YAML: How to use the current date in the Rmarkdown compilation?
How to automatically include the current system date in the title of the document to be compiled by R-markdown? When I try to include the system date in the field date through the YAML code: r…
-
4
votes1
answer72
viewsA: YAML: How to use the current date in the Rmarkdown compilation?
For the date to be a valid field in YALM, it needs to be a string. For this reason, it is necessary to enclose the R code in quotation marks. Single quotes work better than double quotes in this…
-
4
votes1
answer82
viewsQ: What are the differences between Rmarkdown and Rnotebook?
The RMarkdown has become a very popular interface and file type in recent years. I believe this is due to the fact that it allows using a single software to write complete statistical analysis…