Science Score: 36.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
○DOI references
-
○Academic publication links
-
✓Committers with academic emails
2 of 19 committers (10.5%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (11.7%) to scientific vocabulary
Keywords
Keywords from Contributors
Repository
Bootstrap 4 shinydashboard using AdminLTE3
Basic Info
- Host: GitHub
- Owner: RinteRface
- License: other
- Language: R
- Default Branch: master
- Homepage: https://bs4dash.rinterface.com
- Size: 52.1 MB
Statistics
- Stars: 450
- Watchers: 15
- Forks: 82
- Open Issues: 102
- Releases: 15
Topics
Metadata Files
README.md
bs4Dash 
Bootstrap 4 shinydashboard using AdminLTE3
From {shinydashboard} to {bs4Dash}
Taking the simple {shinydashboard} example:
```r library(shiny) library(shinydashboard)
ui <- dashboardPage( dashboardHeader(title = "Basic dashboard"), dashboardSidebar(), dashboardBody( # Boxes need to be put in a row (or column) fluidRow( box(plotOutput("plot1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
) )
server <- function(input, output) { set.seed(122) histdata <- rnorm(500)
output$plot1 <- renderPlot({ data <- histdata[seq_len(input$slider)] hist(data) }) }
shinyApp(ui, server) ```
Moving to {bs4Dash} is rather simple, as we just replace library(shinydashboard):
```r library(bs4Dash) ui <- dashboardPage( dashboardHeader(title = "Basic dashboard"), dashboardSidebar(), dashboardBody( # Boxes need to be put in a row (or column) fluidRow( box(plotOutput("plot1", height = 250)),
box(
title = "Controls",
sliderInput("slider", "Number of observations:", 1, 100, 50)
)
)
) )
server <- function(input, output) { set.seed(122) histdata <- rnorm(500)
output$plot1 <- renderPlot({ data <- histdata[seq_len(input$slider)] hist(data) }) }
shinyApp(ui, server) ```
Installation
```r
latest devel version
pak::pak("RinteRface/bs4Dash")
latest devel version from r-universe
install.packages("bs4Dash", repos = c("cynkra.r-universe.dev", "cloud.r-project.org"))
from CRAN
install.packages("bs4Dash") ```
Demo
You may also run:
r
library(bs4Dash)
bs4DashGallery()
Issues
Issues are listed here.
Acknowledgement
I warmly thank Glyphicons creator for providing them for free with Bootstrap.
Code of Conduct
Please note that the bs4Dash project is released with a Contributor Code of Conduct. By contributing to this project, you agree toabide by its terms.
Owner
- Name: RinteRface
- Login: RinteRface
- Kind: organization
- Email: dgranjon@ymail.com
- Location: Zurich, Switzerland
- Website: https://rinterface.com
- Repositories: 28
- Profile: https://github.com/RinteRface
A collection of outstanding APIs for R Shiny
GitHub Events
Total
- Issues event: 22
- Watch event: 20
- Issue comment event: 19
- Push event: 3
- Pull request review event: 1
- Pull request review comment event: 1
- Pull request event: 3
- Fork event: 3
Last Year
- Issues event: 22
- Watch event: 20
- Issue comment event: 19
- Push event: 3
- Pull request review event: 1
- Pull request review comment event: 1
- Pull request event: 3
- Fork event: 3
Committers
Last synced: 9 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| DivadNojnarg | d****n@y****m | 710 |
| statnmap | s****p | 6 |
| Stefan Fritsch | s****h@s****m | 5 |
| JohnCoene | j****p@g****m | 4 |
| bjornol | b****e@c****o | 3 |
| Stefan Werner | s****r@m****m | 3 |
| Matthew T. Warkentin | m****n@m****a | 2 |
| remko_duursma | r****o@s****l | 2 |
| Adam Forys | a****s@c****m | 2 |
| Mohammed Ali | m****d@a****m | 2 |
| Juha Itkonen | i****a@g****m | 1 |
| Federico Marini | m****f@u****e | 1 |
| Duque-de-Sealand | 4****d | 1 |
| David Barkemeyer | d****r@g****e | 1 |
| Ari Angelo | h****o@a****z | 1 |
| Lucas Habegger | l****r@b****m | 1 |
| Stefan Eng | s****3@g****m | 1 |
| Stephen Synchronicity | 3****h | 1 |
| etiennebacher | e****r@p****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 135
- Total pull requests: 27
- Average time to close issues: 5 months
- Average time to close pull requests: 25 days
- Total issue authors: 101
- Total pull request authors: 14
- Average comments per issue: 2.0
- Average comments per pull request: 0.78
- Merged pull requests: 12
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 19
- Pull requests: 7
- Average time to close issues: 1 day
- Average time to close pull requests: 3 days
- Issue authors: 15
- Pull request authors: 4
- Average comments per issue: 0.37
- Average comments per pull request: 0.14
- Merged pull requests: 3
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- HugoGit39 (6)
- FreyGeospatial (5)
- jnhyeon (4)
- antoine4ucsd (3)
- ugurdar (3)
- lanceupton (3)
- ApexHeel (3)
- echoplaza (3)
- yogat3ch (3)
- jcrodriguez1989 (2)
- lucas-alcantara (2)
- lemuelemos (2)
- James-G-Hill (2)
- shahreyar-abeer (2)
- analytichealth (2)
Pull Request Authors
- DivadNojnarg (6)
- yogat3ch (5)
- MohammedFCIS (3)
- lhabegger (2)
- bwaite-esr (2)
- eblondel (2)
- krlmlr (2)
- itkonen (1)
- bowyes (1)
- muschellij2 (1)
- shahreyar-abeer (1)
- etiennebacher (1)
- duanyu5871 (1)
- ismirsehregal (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 4
-
Total downloads:
- cran 3,772 last-month
- Total docker downloads: 2,237
-
Total dependent packages: 17
(may contain duplicates) -
Total dependent repositories: 81
(may contain duplicates) - Total versions: 52
- Total maintainers: 1
cran.r-project.org: bs4Dash
A 'Bootstrap 4' Version of 'shinydashboard'
- Homepage: https://github.com/RinteRface/bs4Dash
- Documentation: http://cran.r-project.org/web/packages/bs4Dash/bs4Dash.pdf
- License: GPL-2 | GPL-3 | file LICENSE [expanded from: GPL (≥ 2) | file LICENSE]
-
Latest release: 2.3.5
published 6 months ago
Rankings
Maintainers (1)
proxy.golang.org: github.com/RinteRface/bs4Dash
- Documentation: https://pkg.go.dev/github.com/RinteRface/bs4Dash#section-documentation
- License: other
-
Latest release: v2.3.4+incompatible
published over 1 year ago
Rankings
proxy.golang.org: github.com/rinterface/bs4dash
- Documentation: https://pkg.go.dev/github.com/rinterface/bs4dash#section-documentation
- License: other
-
Latest release: v2.3.4+incompatible
published over 1 year ago
Rankings
conda-forge.org: r-bs4dash
- Homepage: https://rinterface.github.io/bs4Dash/index.html, https://github.com/RinteRface/bs4Dash
- License: GPL-2.0-or-later
-
Latest release: 2.1.0
published almost 4 years ago
Rankings
Dependencies
- bslib >= 0.2.4 imports
- fresh * imports
- htmltools >= 0.5.1.1 imports
- httpuv >= 1.5.2 imports
- httr * imports
- jsonlite >= 0.9.16 imports
- lifecycle * imports
- shiny >= 1.6.0 imports
- waiter >= 0.2.3 imports
- DT * suggests
- covr * suggests
- golem * suggests
- knitr * suggests
- rmarkdown * suggests
- testthat >= 2.1.0 suggests
- thematic >= 0.1.2 suggests
- actions/checkout v3 composite
- actions/upload-artifact main composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
- JamesIves/github-pages-deploy-action v4.4.1 composite
- actions/checkout v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
