What I've learnt about R Language

What I've learnt about R Language

The R language is fantastic.

Here is everything you need to get started:

sudo apt update
sudo apt install -y r-base r-base-dev
#R --version
ℹ️
This repository has a lot https://github.com/qinwf/awesome-R and I have done an R Recap on this one

Data Driven R

What I enjoy about R, is that it can do very cool data stuff.

R can do many things, from simple Websites with Knit, to Data Apps

FlexDashboards

With R, you can also have ‘static dashboards’, which dont need a server, like Shiny or Streamlit.

Flexdashboard can be hosted statically, for example, on Github Pages, for free:

PS: They maintain the dynamic functionalities like filter, zoom ploylt graphs etc

You can also render or knit the html of those flexdashboards and add them to your Staticaly Generated Sites.

Shiny Apps

Need a full-fledge WebApp framework for R?

Have a look to Shiny.

And if you are looking for a Flexdashboard example (deployed to Github Pages), see:

ℹ️
I covered Containers for R Apps here