All Projects → RinteRface → mobileCharts

RinteRface / mobileCharts

Licence: other
Mobile friendly charts with a familiar syntax

Programming Languages

r
7636 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to mobileCharts

mikropml
User-Friendly R Package for Supervised Machine Learning Pipelines
Stars: ✭ 34 (+47.83%)
Mutual labels:  rstats
music
Music Theory in R
Stars: ✭ 34 (+47.83%)
Mutual labels:  rstats
tftargets
🎯 Human transcription factor target genes.
Stars: ✭ 77 (+234.78%)
Mutual labels:  rstats
shapr
Explaining the output of machine learning models with more accurately estimated Shapley values
Stars: ✭ 95 (+313.04%)
Mutual labels:  rstats
cusumcharter
Easier CUSUM control charts. Returns simple CUSUM statistics, CUSUMs with control limit calculations, and function to generate faceted CUSUM Control Charts
Stars: ✭ 17 (-26.09%)
Mutual labels:  rstats
heddlr
Bring a functional programming mindset to R Markdown document generation
Stars: ✭ 14 (-39.13%)
Mutual labels:  rstats
wdlRunR
Elastic, reproducible, and reusable genomic data science tools from R backed by cloud resources
Stars: ✭ 34 (+47.83%)
Mutual labels:  rstats
corrgram
Correlograms
Stars: ✭ 13 (-43.48%)
Mutual labels:  rstats
sacred
📖 Sacred texts in R
Stars: ✭ 19 (-17.39%)
Mutual labels:  rstats
destatiscleanr
Imports and cleans data from official German statistical offices to jump-start the data analysis
Stars: ✭ 47 (+104.35%)
Mutual labels:  rstats
HumanPilot
Spatial Transcriptomics human DLPFC pilot study part of the spatialLIBD project
Stars: ✭ 22 (-4.35%)
Mutual labels:  rstats
r-docker-tutorial
A docker tutorial for reproducible research
Stars: ✭ 245 (+965.22%)
Mutual labels:  rstats
agent
Store sensitive data such as API tokens
Stars: ✭ 19 (-17.39%)
Mutual labels:  rstats
nasapower
API Client for NASA POWER Global Meteorology, Surface Solar Energy and Climatology in R
Stars: ✭ 79 (+243.48%)
Mutual labels:  rstats
scclusteval
Single Cell Cluster Evaluation
Stars: ✭ 57 (+147.83%)
Mutual labels:  rstats
statically
📸 Generate Webpage Screenshots Using the Statically API
Stars: ✭ 28 (+21.74%)
Mutual labels:  rstats
geoparser
⛔ ARCHIVED ⛔ R package for the Geoparser.io API
Stars: ✭ 38 (+65.22%)
Mutual labels:  rstats
rLandsat
R Package to make Landsat8 data accessible
Stars: ✭ 95 (+313.04%)
Mutual labels:  rstats
r-ladies-ML-1
⭐ Files for my R-Ladies ML workshop - Supervised Learning 101 ⭐
Stars: ✭ 35 (+52.17%)
Mutual labels:  rstats
flowmapblue.R
Flowmap.blue widget for R
Stars: ✭ 42 (+82.61%)
Mutual labels:  rstats

Lifecycle: experimental Travis build status

mobileCharts

The goal of mobileCharts is to bring mobile friendly charts to shinyMobile via f2.

Installation

install.packages("remotes")
remotes::install_github("rinterface/mobileCharts")

Example

See the website for more examples. Visit the demo (from your mobile) to have a better idea of the look and feel.

library(mobileCharts)

mobile(iris, aes(Sepal.Length, Sepal.Width, color = Species)) %>% 
  mobile_point()

shinyMobile

refresh if you resize the screen

library(shiny)
library(shinyMobile)
library(mobileCharts)

ui <- f7Page(
  title = "mobileCharts",
  f7SingleLayout(
    navbar = f7Navbar(
      title = "mobileCharts",
      hairline = TRUE,
      shadow = TRUE
    ),
    f7Shadow(
      intensity = 16,
      f7Card(
        title = "Chart",
        mobileOutput("mc", width = 400)
      )
    )
  )
)

server <- function(input, output){
  output$mc <- render_mobile({
    mobile(iris, aes(Sepal.Length, Sepal.Width, color = Species)) %>% 
      mobile_point()
  })
}

shinyApp(ui, server)
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].