Posts by William Amorim • 41 points
3 posts
-
0
votes3
answers1398
viewsA: in R, create a vector rounding function so that the coordinates vanish 100
I do not believe that there is an objective (nonsubjective) way to do this. Imagine the following scenario: > v <- c(rep(10.1, 9), 9.1) > sum(v) [1] 100 > sum(round(v)) [1] 99 What value…
ranswered William Amorim 41 -
1
votes1
answer271
viewsA: Specify Miktex path in Rstudio
I discovered that Rstudio finds the installation without problems. In my case it was not working because I installed the Miktex basic, and Knitr requires the installation of the full version. After…
-
3
votes1
answer271
viewsQ: Specify Miktex path in Rstudio
I am trying to compile a file . Rmd to pdf using Rstudio’s Knitr. As I am using a computer (Windows 7) with permission restrictions, I had to install Miktex in the Documents folder and Rstudio is…