FreesearchR/README.md

55 lines
3.1 KiB
Markdown
Raw Normal View History

2025-04-23 15:49:46 +02:00
# FreesearchR <a href="https://agdamsbo.github.io/FreesearchR/"><img src="man/figures/logo.png" align="right" height="70" alt="FreesearchR website" /></a>
2024-11-08 15:13:33 +01:00
<!-- badges: start -->
2024-12-20 11:05:56 +01:00
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
2025-01-16 14:24:38 +01:00
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.14527429.svg)](https://doi.org/10.5281/zenodo.14527429)
2025-03-19 09:14:36 +01:00
[![rhub](https://github.com/agdamsbo/FreesearchR/actions/workflows/rhub.yaml/badge.svg)](https://github.com/agdamsbo/FreesearchR/actions/workflows/rhub.yaml)
[![FreesearchR](https://img.shields.io/badge/Shiny-shinyapps.io-blue?style=flat&labelColor=white&logo=RStudio&logoColor=blue)](https://agdamsbo.shinyapps.io/freesearcheR/)
2024-11-08 15:13:33 +01:00
<!-- badges: end -->
2025-04-15 08:55:35 +02:00
This package is the backbone of the ***FreesearchR***, a free and open-source browser based data exploration and analysis tool intended to democratise clinical research by assisting any researcher to easily evaluate and analyse data and export publication ready results.
2024-11-08 15:13:33 +01:00
2025-04-15 08:55:35 +02:00
The ***FreesearchR***-tool is online and accessible here: [link to the app freely hosted on shinyapps.io](https://agdamsbo.shinyapps.io/FreesearcheR/). All feedback is welcome and can be shared as a GitHub issue. Any suggestions on collaboration is much welcomed. Please reach out!
2024-11-08 15:13:33 +01:00
2025-04-14 12:13:38 +02:00
## Motivation
2025-04-15 08:55:35 +02:00
This app has the following simple goals:
1. help the health clinician getting an overview of data in quality improvement projects and clinical research
2025-04-14 12:13:38 +02:00
2025-04-15 08:55:35 +02:00
1. help learners get a good start analysing data and coding in *R*
2025-04-14 12:13:38 +02:00
2025-04-15 08:55:35 +02:00
1. ease quick data overview and basic visualisations for any clinical researcher
## Install locally
2025-03-19 09:14:36 +01:00
The ***FreesearchR***-tool can also be launched locally. Any data.frame available in the global environment will be accessible from the interface.
```
require("devtools")
2025-03-19 09:14:36 +01:00
devtools::install_github("agdamsbo/FreesearchR")
library(FreesearchR)
2024-12-20 11:05:56 +01:00
# By loading mtcars to the environment, it will be available
# in the interface like any other data.frame
data(mtcars)
2025-03-19 09:14:36 +01:00
launch_FreesearchR()
```
## Code of Conduct
2025-03-19 09:14:36 +01:00
Please note that the ***FreesearchR*** project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
2025-04-22 13:57:59 +02:00
## Acknowledgements
Like any other project, this project was never possible without the great work of others. These are some of the sources and packages I have used:
2025-04-23 15:52:17 +02:00
- The ***FreesearchR*** app is build with [Shiny](https://shiny.posit.co/) and based on [*R*](https://www.r-project.org/).
2025-04-22 13:57:59 +02:00
- [gtsummary](https://www.danieldsjoberg.com/gtsummary/): superb and flexible way to create publication-ready analytical and summary tables.
- [dreamRs](https://github.com/dreamRs): maintainers of a broad selection of great extensions and tools for [Shiny](https://shiny.posit.co/).
2025-04-23 14:23:34 +02:00
2025-04-23 15:04:40 +02:00
- [easystats](https://easystats.github.io/easystats/): the [`performance::check_model()`](https://easystats.github.io/performance/articles/check_model.html) function was central in sparking the idea to create a data analysis tool.
2025-04-23 14:23:34 +02:00
This project was all written by a human and not by any AI-based tools.