All Projects → feddelegrand7 → bubblyr

feddelegrand7 / bubblyr

Licence: Unknown, Unknown licenses found Licenses found Unknown LICENSE Unknown LICENSE.md
☁️ ☁️ ☁️ Beautiful Bubbles in Shiny and RMarkdown Backgrounds

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to bubblyr

fabricerin
Create Easily Canvas in Shiny and RMarkdown Documents
Stars: ✭ 52 (+225%)
Mutual labels:  shiny, rmarkdown, rmarkdown-document
workshops-setup cloud analytics machine
Tips and Tricks to setup a cloud machine for Analytics and Data Science with R, RStudio and Shiny Servers, Python and JupyterLab
Stars: ✭ 12 (-25%)
Mutual labels:  shiny, rmarkdown
vembedr
Functions to Embed Video in HTML
Stars: ✭ 56 (+250%)
Mutual labels:  shiny, rmarkdown
Gfonts
🔤 Offline Google Fonts for rmarkdown and shiny
Stars: ✭ 85 (+431.25%)
Mutual labels:  shiny, rmarkdown
signals-and-systems
Interactive visualizations for Dr. Richard Baraniuk's open-source "Signals and Systems" textbook. R / Shiny.
Stars: ✭ 31 (+93.75%)
Mutual labels:  shiny, rmarkdown
learning R
List of resources for learning R
Stars: ✭ 32 (+100%)
Mutual labels:  shiny, rmarkdown
Shufflecards
✨ Create magical grid layouts in Shiny & Markdown
Stars: ✭ 76 (+375%)
Mutual labels:  shiny, rmarkdown
Explore
R package that makes basic data exploration radically simple (interactive data exploration, reproducible data science)
Stars: ✭ 69 (+331.25%)
Mutual labels:  shiny, rmarkdown
Bsplus
Shiny and R Markdown addons to Bootstrap 3
Stars: ✭ 120 (+650%)
Mutual labels:  shiny, rmarkdown
Bslib
Tools for theming shiny and rmarkdown from R via Bootstrap (3 or 4) Sass.
Stars: ✭ 197 (+1131.25%)
Mutual labels:  shiny, rmarkdown
flipdownr
📆📆📆 Implement a Countdown in RMarkdown Documents and Shiny Applications
Stars: ✭ 30 (+87.5%)
Mutual labels:  shiny, rmarkdown
reportfactory
Lightweight infrastructure to handle multiple rmarkdown reports
Stars: ✭ 68 (+325%)
Mutual labels:  rmarkdown, rmarkdown-document
epoxy
Extra-strength glue engines for R Markdown and Quarto
Stars: ✭ 141 (+781.25%)
Mutual labels:  shiny, rmarkdown
flexpivot
Simple frequency table
Stars: ✭ 19 (+18.75%)
Mutual labels:  shiny, rmarkdown
weasydoc
Convert R Markdown to PDF Using Weasyprint (or Prince XML)
Stars: ✭ 40 (+150%)
Mutual labels:  rmarkdown, rmarkdown-document
Anicon
Animated icons for R markdown and Shiny apps
Stars: ✭ 109 (+581.25%)
Mutual labels:  shiny, rmarkdown
grillade
Grid sytem for shiny apps or rmarkdown and to create htmlwidgets matrix
Stars: ✭ 16 (+0%)
Mutual labels:  shiny, rmarkdown
customer-tracker
R data products: Reports, Presentations, Apps, and API's
Stars: ✭ 19 (+18.75%)
Mutual labels:  shiny, rmarkdown
vueR
vue.js for R
Stars: ✭ 131 (+718.75%)
Mutual labels:  shiny
PlotTwist
PlotTwist - a web app for plotting and annotating time-series data
Stars: ✭ 21 (+31.25%)
Mutual labels:  shiny

bubblyr

CRAN_Status_Badge CRAN_time_from_release metacran downloads license R build status

bubblyr is an R wrapper of the JavaScript library bubbly-bg. It allows you to add beautiful animated bubbles within Shiny and RMarkdown backgrounds. You can choose from several themes and apply the animation with one line of code.

Installation

You can install the bubblyr package from CRAN with:

install.packages("bubblyr")

You can install the development version of bubblyr from Github with:

install.packages("remotes") #if not installed

remotes::install_github("feddelegrand7/bubblyr")

Themes

Here a list of all the available themes. Note that The ocean, cherry, hippie, bigmom and deepsea themes are provided by the author of the bubbly-bg JavaScript library, I just gave them some fancy names:

Themes
ocean
cherry
hippie
bigmom
deepsea
illusion
rstudio
ash
classy
volcano
lacoste
warmup
fire
traffic
life
darksky
orangina
meteor
gravitas
rladies
sunshine
sweet
lalaland

Below you can find some examples, feel free to experiment the remaining themes:

Important: You may experiment some lags when viewing your Shiny/Rmd Document in the RStudio pane, instead use the browser.

library(shiny)
library(bubblyr)

ui <- fluidPage(

    bubbly(theme = "bigmom")

)

server <- function(input, output) {}

shinyApp(ui = ui, server = server)

library(shiny)
library(bubblyr)

ui <- fluidPage(

    bubbly(theme = "rstudio")

)

server <- function(input, output) {}

shinyApp(ui = ui, server = server)

library(shiny)
library(bubblyr)

ui <- fluidPage(

    bubbly(theme = "classy")

)

server <- function(input, output) {}

shinyApp(ui = ui, server = server)

Code of Conduct

Please note that the bubblyr project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].