Science Score: 13.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
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (13.9%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Workflows for Building Web Applications
Basic Info
Statistics
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 1
Created almost 2 years ago
· Last pushed over 1 year ago
Metadata Files
Readme
License
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# mmints
The 'mmints' (Mighty Metrika Internals) package aims to automate tasks commonly used in 'shiny' applications. It primarily consists of internal functions and modules frequently utilized in other Mighty Metrika 'shiny' applications.
## Installation
You can install the released version of 'mmints' from [CRAN](https://CRAN.R-project.org):
```{r eval=FALSE}
install.packages("mmints")
```
You can install the development version of 'mmints' from [GitHub](https://github.com/) with:
```{r eval=FALSE}
# install.packages("pak")
pak::pak("mightymetrika/mmints")
```
## Example
One feature of 'mmints' is the csvUploadModule, which simplifies the process of:
1. Uploading a CSV data file
2. Displaying the variables and data types as a 'DT' data table
3. Providing functionality for editing variable types
Here's how to use the csvUploadModule:
```{r eval=FALSE}
library(mmints)
csvUpload_app <- function(){
ui <- shiny::fluidPage(
shiny::titlePanel("CSV Upload Module"),
shiny::sidebarLayout(
shiny::sidebarPanel(
csvUploadUI("data_upload")$input
),
shiny::mainPanel(
csvUploadUI("data_upload")$output
)
)
)
server <- function(input, output, session) {
data <- csvUploadServer("data_upload")
}
shiny::shinyApp(ui, server)
}
if(interactive()){
csvUpload_app()
}
```
## License
This project is licensed under the MIT License.
## Contact
For any queries or suggestions, please open an issue on the GitHub repository.
Owner
- Login: mightymetrika
- Kind: user
- Website: mightymetrika.com
- Twitter: mightymetrika
- Repositories: 23
- Profile: https://github.com/mightymetrika
GitHub Events
Total
- Create event: 1
- Release event: 1
- Issues event: 2
- Push event: 7
Last Year
- Create event: 1
- Release event: 1
- Issues event: 2
- Push event: 7
Issues and Pull Requests
Last synced: 10 months ago
All Time
- Total issues: 2
- Total pull requests: 0
- Average time to close issues: 5 days
- Average time to close pull requests: N/A
- Total issue authors: 1
- Total pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 2
- Pull requests: 0
- Average time to close issues: 5 days
- Average time to close pull requests: N/A
- Issue authors: 1
- Pull request authors: 0
- Average comments per issue: 0.0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- mightymetrika (2)
Pull Request Authors
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 196 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 2
- Total maintainers: 1
cran.r-project.org: mmints
Workflows for Building Web Applications
- Homepage: https://github.com/mightymetrika/mmints
- Documentation: http://cran.r-project.org/web/packages/mmints/mmints.pdf
- License: MIT + file LICENSE
-
Latest release: 0.2.0
published over 1 year ago
Rankings
Dependent packages count: 28.3%
Dependent repos count: 34.9%
Average: 49.9%
Downloads: 86.7%
Maintainers (1)
Last synced:
10 months ago