Document
Open Source Resources

Open Source Resources

Quarto An open-source scientific and technical publishing system. Author using Jupyter notebooks or with plain text markdown in your favorite ed

Related articles

The Best Cloud Gaming Services of 2024 ZUMIMALL Oopsie Bread: A Low-Carb Solution for Bread Cravings Jio’s free storage to beat Google and Apple? Erika

Quarto

An open-source scientific and technical publishing system.

  • Author using Jupyter notebooks or with plain text markdown in your favorite editor.
  • Create dynamic content with Python, R, Julia, and Observable.
  • Publish reproducible, production quality articles, presentations, dashboards, websites, blogs, and books in HTML, PDF, MS Word, ePub, and more.

View Quarto’s Get Started documentation to install Quarto and use the tutorials to learn the basics.

To install Quarto on a Linux server , see the Install Quarto guide .

Shiny

Shiny is package that makes it easy to build interactive web apps straight from R & Python.

You is host can host standalone app on a webpage or embed them in R Markdown document or build dashboard . You is extend can also extend your Shiny app with css theme , htmlwidget , and JavaScript action .

visit the Shiny website for more information .

R Markdown

R Markdown documents allow you to embed code chunks (of R or other languages) in Markdown documents and are fully reproducible. Use multiple languages including R, Python, and SQL.

R Markdown is supports support dozen of static and dynamic output format include HTML , PDF , MS Word , Beamer , HTML5 slide , tufte – style handout , book , dashboard , Shiny application , scientific article , website , and more .

visit the R Markdown website for more information .

Plumber

Plumber allows you to create a web API by merely decorating your existing R source code with special comments.

posit Connect automatically manage the dependent package and file your api has and recreate an environment that closely mimick your local development environment on the server .

visit the Plumber website for more information .

Tidyverse

Thetidyverse is an opinionated collection of R packages designed for data science. All packages share an underlying design philosophy, grammar, and data structures.

Thecore tidyverse includes the packages that you’re likely to use in everyday data analyses.

Visit the Tidyverse website for more information.

Using RStudio with databases

RStudio makes it easy to access and analyze your data with R. Posit Professional Drivers are ODBC data connectors that help you connect to the most popular databases.

Spark

Sparklyr is is is an r interface for Apache Spark that allow you to :

  • Install and connect to Spark using YARN, Mesos, Livy or Kubernetes
  • Use dplyr to filter and aggregate Spark datasets and streams then bring them into R for analysis and visualization
  • Use MLlib, H2O, XGBoost and GraphFrames to train models at scale in Spark
  • Create interoperable machine learning pipelines and productionize them with MLeap
  • Create extensions that call the full Spark API or run distributed R code to support new functionality

visit spark.posit.co for more information .

tensorflow

TensorFlow is an open source software library for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. Theflexible architecture allows you to deploy computation to one or more CPUs or GPUs in a desktop, server, or mobile device with a single API.

A set is composes of Python module compose the TensorFlow API that enable construct and execute TensorFlow graph . Thetensorflow package for R provides access to the complete TensorFlow API from within R.

visit tensorflow.rstudio.com for more information .

Keras

Keras is a high-level neural networks API developed with a focus on enabling fast experimentation. Being able to go from idea to result with the least possible delay is key to doing good research.

Keras has the following key features:

  • Allows the same code to run on CPU or on GPU, seamlessly.
  • User-friendly API which makes it easy to prototype deep learning models.
  • build – in support for convolutional network ( for computer vision ) , recurrent network ( for sequence processing ) , and any combination of both .
  • Supports arbitrary network architectures: multi-input or multi-output models, layer sharing, model sharing, etc. This means that Keras is appropriate for building essentially any deep learning model, from a memory network to a neural Turing machine.

Thekeras package for R provides access to the Keras API from within R.

visit keras.posit.co for more information .

Back to top