Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
What is the R command to write the caption of the figure using R language so that the caption of the figure can be given below the plot.
in Rmarkdown:
```{r my_fig_with_caption, fig.cap=fn('My Figure')}
plot(rnorm(100)
```
see: http://www.rstudio.com/ide/docs/authoring/using_markdown.
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
Here is what to be coded in R:
sum_{n=1}^{10}\left(\frac{2^{n}}{n^2} + \frac{n^{4}}{4^{n}}\right)
With purrr I'd say something like:
sum(map_dbl(1:10, fun(x) 2^x/^2+x^4/4^x)
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
Is there a function such as kable to output character vectors in a way that doesn't look as ugly as the default console type?
See eg p from the pander package or the generic pander method:
> pander::pander(sample(letters, 5))
_p_, _r_, _v_, _f_ and _t_
If you want to override the default formatting, see panderOptions or specify directly in the p function.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 5 years ago.
Improve this question
Is it possible to add the "list of figures" to my "table of content" in R Markdown?
My toc is working, but it shows only the chapters of the document but not the generated list of figures.
The list of figures is generated automatically by using \listoffigures in the code. But only the chapters which are added with # Chaptername are shown in the toc.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
No line number is given, for the error, in an R script. Googling didn't help.
What's the problem?
I had meant to put this line in the script:
# -----------
but instead it was this line.
-----------
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
[![R commander table of statistics][1]][1]
Hello,
Is there any solution of how I choose all 'mean', 'median', 'SD', etc in statistics? Otherwise I will have to run all of them individually which is a pain.
In R commander, go to >statistics > summaries > table of statistics.
Thank you in advance.