Skip to contents

The FreesearchR is a simple, clinical health data exploration and analysis tool to democratise clinical research by assisting any researcher to easily evaluate and analyse data and export publication ready results.

FreesearchR is free and open-source, and is accessible in your web browser through this link. The app can also run locally, please see below.

All feedback is welcome and can be shared as a GitHub issue. Any suggestions on collaboration is much welcomed. Please reach out!

FreesearchR demo
FreesearchR demo

Motivation

This app has the following simple goals:

  1. help the health clinician getting an overview of data in quality improvement projects and clinical research

  2. help learners get a good start analysing data and coding in R

  3. ease quick data overview and basic visualisations for any clinical researcher

Run locally on your own machine

The FreesearchR app can also run on your own machine with no data transmitted anywhere. Any data.frame available in the global environment will be accessible from the interface. Just follow the below steps:

  1. Requirement: You need to have R installed and possibly an editor like RStudio.

  2. Then open the R console and copy/paste the following code, that will install the devtools package and then the FreesearchR R-package with its dependencies:

    require("devtools")
    devtools::install_github("agdamsbo/FreesearchR")
    library(FreesearchR)
    # By loading mtcars to the environment, it will be available
    # in the interface like any other data.frame
    data(mtcars)
    launch_FreesearchR()

Code of Conduct

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

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:

This project was all written by a human and not by any AI-based tools.

The online FreesearchR app contains a tracking script, transmitting minimal data on usage. No uploaded data is transmitted anywhere. Have a look at the tracking data here. No tracking data is sent running the app locally (see above).