search for: kundenzufriedenheit

Displaying 4 results from an estimated 4 matches for "kundenzufriedenheit".

2017 Jun 08
3
Paths in knitr
...arate R scripts) before compiling the report, thus all plots reside in my graphics directory. The RMarkdown report needs to access these files. I have defined ```{r setup, include = FALSE} knitr::opts_knit$set( echo = FALSE, xtable.type = "html", base.dir = "H:/2017/Analysen/Kundenzufriedenheit/Auswertung", root_dir = "H:/2017/Analysen/Kundenzufriedenheit/Auswertung", fig.path = "results/graphics") # relative path required, see http://yihui.name/knitr/options ``` and then referenced my plot using <img src = "email_distribution_pie.png"><...
2017 Jun 12
2
Paths in knitr
...https://philmikejones.wordpress.com/2015/05/20/set-root-directory-knitr/. Unfortunately, it does not work for me. I am using a RStudio project file. Could it be that this interferes which the knitr options? I tried the solution that Duncan suggested: c_path_plots <- "H:/2017/Analysen/Kundenzufriedenheit/Auswertung/results/graphics `r knitr::include_graphics(file.path(c_path_plots, "email_distribution_pie.png"))` This solution works fine. I will go with it for this project as I have to finish my report soon. I read Hadley's book on bulding R Packages ( https://www.amazon.de/R-Pac...
2017 Jun 12
0
Paths in knitr
...15/05/20/set-root-directory-knitr/. > Unfortunately, it does not work for me. > > I am using a RStudio project file. Could it be that this interferes which > the knitr options? > > I tried the solution that Duncan suggested: > > c_path_plots <- > "H:/2017/Analysen/Kundenzufriedenheit/Auswertung/results/graphics > > `r knitr::include_graphics(file.path(c_path_plots, > "email_distribution_pie.png"))` > > This solution works fine. I will go with it for this project as I have to > finish my report soon. > > I read Hadley's book on bulding R Pac...
2017 Jun 09
0
Paths in knitr
...> > RMarkdown report needs to access these files. I have defined > > > > > > ```{r setup, include = FALSE} > > > knitr::opts_knit$set( > > > echo = FALSE, > > > xtable.type = "html", > > > base.dir = "H:/2017/Analysen/Kundenzufriedenheit/Auswertung", > > > root_dir = "H:/2017/Analysen/Kundenzufriedenheit/Auswertung", > > > fig.path = "results/graphics") # relative path required, see > > > http://yihui.name/knitr/options > > > ``` > > > > > > and the...