Skip to content

Commit c12ebe9

Browse files
authored
Create Day44.md
1 parent 28fea4b commit c12ebe9

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

Day44.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
## Day 44 of #dailycoding challenge ⬇️
2+
3+
Today we are interested in #RStudio #addins.
4+
5+
RStudio addins were released in early 2016 to provide anyone with the ability to add #extensions to RStudio.
6+
7+
An Rstudio addin is installed as a package, and it simplifies some manipulations.
8+
9+
Through out this post, we are particularly interested in the #beautifyR addin.
10+
11+
beautifyR is a RStudio addin that can help to format Markdown tables. It aligns the columns according to the content width, adds missing columns if needed and inserts the formatting row if missing.
12+
13+
Additionally the Beautify Comment addin allows for aligning multi-line comments. This saves a lot of time when editing vast commentary in code.
14+
15+
To understand more the functionnality of the beautifyR addin, take a look at the short video below ⬇️
16+
17+
A list of RStudio addins are available at this link 👉 https://lnkd.in/ditcJgr
18+
19+
Happy Coding Learning !
20+
21+
``` r
22+
install.packages('addinslist')
23+
library(addinslist)
24+
25+
# We are excited to invite you to our next meetup : Introduction to R
26+
# Markdown.
27+
28+
# ◾️ Date/Time : Saturday, the 18th of July 2020 3:00PM > 4:30PM (Tunisia time
29+
# GMT+1) ◾️ Place : Zoom
30+
31+
# The workshop will cover an overview of R Markdown, including the possible
32+
# output formats, the Markdown syntax and the R code chunk syntax. We will
33+
# also introduce the basics of building flexible dashboards with the R package
34+
# flexdashboard.
35+
36+
# R Markdown has many avaiable output formats including HTML, PDF, MS Word,
37+
# Beamer, HTML5 slides, Tufte handouts, books, dashboards, and websites
38+
# https://rmarkdown.rstudio.com/gallery.html
39+
40+
# Along the workshop, a range of examples on how to extend the functionality
41+
# of the R Markdown documents will be provided.
42+
43+
# In order to attend the event, please fill out this form 👉
44+
# https://tinyurl.com/y8urdpqf
45+
46+
# Please take a look at our linkedIn page
47+
```

0 commit comments

Comments
 (0)