A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://sbalci.github.io/ClinicoPathJamoviModule/ below:

Comprehensive Analysis for Clinicopathological Research β€’ ClinicoPath

Abstract The ClinicoPathJamoviModule: A Comprehensive Open-Source Toolkit for Streamlining Clinicopathological Research

Background: Clinicopathological research is fundamental to advancing evidence-based medicine, but it requires the application of complex and specialized statistical methods. The technical barrier of programming-based statistical software can limit the ability of clinicians and researchers to perform these analyses efficiently and reproducibly. To address this gap, we have developed the ClinicoPathJamoviModule, an open-source extension for the user-friendly jamovi statistical platform.

Methods: The ClinicoPathJamoviModule integrates a robust and comprehensive suite of analytical tools designed to address the typical workflow of clinicopathological data analysis. The module is built upon the R statistical language and provides a graphical user interface within jamovi for a wide range of functions. Key features include:

Conclusion: The ClinicoPathJamoviModule provides a powerful, accessible, and free-to-use toolkit that empowers medical researchers to conduct sophisticated statistical analyses without requiring extensive programming knowledge. By integrating these essential functions into the intuitive jamovi framework, the module aims to lower the barrier to high-quality data analysis, enhance research reproducibility, and accelerate the translation of clinical data into meaningful insights.

Installation in jamovi

You can install this module after installing jamovi version >= 2.7.2 from here: https://www.jamovi.org/download.html

Then you can install the submodules directly inside the jamovi, using library.

Submodules are:

Installation via sideload jamovi Step 1:

Download and install jamovi.

Step 2:

Download the relevant jmo file for your operating system from

Screenshots of Module Exploration ClinicoPath Descriptives Swimmer Plot

(Comprehensive swimmer plots for visualizing patient timelines)

Tidy Density

(Statistical distribution generator and analyzer)

Tools Summary

(Tools for data summary with summarytools integration)

ClinicoPath Comparisons Cross Tables

Pairwise Chi-Square Tests

πŸ”¬πŸ”¬πŸ”¬πŸ”¬ UNDER CONSTRUCTION πŸ› β›”οΈβš οΈπŸ”©

JJStatsPlot Graphs and Plots

(sjPlot Integration for Social Science Research)

Line Chart

(Line Chart for Time Series and Trend Analysis)

Treemap

(Creates treemap visualizations for categorical data)

StreamGraphs

(Create interactive StreamGraphs using R streamgraph package.)

Survival jsurvival Jvisr

(Fit-for-Purpose Clinical Visualizations)

meddecide Agreement Interrater Reliability

ICC coefficients

πŸ”¬πŸ”¬πŸ”¬πŸ”¬ UNDER CONSTRUCTION πŸ› β›”οΈβš οΈπŸ”©

Decision Medical Decision

Decision Tree explore

πŸ”¬πŸ”¬πŸ”¬πŸ”¬ UNDER CONSTRUCTION πŸ› β›”οΈβš οΈπŸ”©

FFTrees

πŸ”¬πŸ”¬πŸ”¬πŸ”¬ UNDER CONSTRUCTION πŸ› β›”οΈβš οΈπŸ”©

rpart

πŸ”¬πŸ”¬πŸ”¬πŸ”¬ UNDER CONSTRUCTION πŸ› β›”οΈβš οΈπŸ”©

Installation in R

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("sbalci/ClinicoPathJamoviModule")
Acknowledgement

Made possible via the codes, help, and guidence of

See https://github.com/ClinicoPath for forked packages.

Follow @serdarbalci

Buy me a coffee

https://paypal.me/serdarbalci


Accessing Raw and External Data Files

Beyond the datasets readily available with data(dataset_name), this package also includes various raw and external data files in other formats like CSV (Comma Separated Values), XLSX (Excel), and OMV (Jamovi files). These can be useful for users who want to access the original data, use it with other software, or understand how the R data objects (.rda files) were generated.

These files are typically located in the inst/extdata directory of the package. You can get the full path to a file in inst/extdata using the system.file() function. For example:

# Get the path to 'BreastCancer.csv' in inst/extdata
# (Assuming BreastCancer.csv will be moved to inst/extdata in a later step)
csv_path <- system.file("extdata", "BreastCancer.csv", package = "ClinicoPath")

if (nzchar(csv_path)) {
  # Read the CSV file
  breast_cancer_df <- read.csv(csv_path)
  head(breast_cancer_df)
} else {
  message("BreastCancer.csv not found in inst/extdata. This example assumes it's present there.")
}
Common File Types CSV Files

Many datasets are available in CSV format. These can be easily read into R using read.csv() or other functions from packages like readr or data.table.

XLSX Files (Excel)

Some datasets might be provided in Excel format. You can read these using packages like readxl.

OMV Files (Jamovi)

Files with the .omv extension are project files for Jamovi, a free and open statistical spreadsheet. These files often contain datasets and analyses demonstrating the use of this R package’s functionalities within the Jamovi environment. They are not typically read directly into R but opened with Jamovi.

JASP Files

Files with the .jasp extension are for JASP software, another alternative to SPSS. Similar to Jamovi files, these demonstrate analyses and data.

Relationship to .rda Data Files

Many of the .rda files (loaded using data(dataset_name)) provided by this package are derived from these raw data files (like CSVs). The .rda files are offered for convenience, as they load directly into your R session with proper data types already set. Accessing the raw files can be useful for reproducibility, using the data in other tools, or for specific data manipulation needs not covered by the pre-processed .rda versions.

Please explore the inst/extdata directory (once files are organized in Step 5 of the data documentation improvement plan) to see the full list of available raw and external files.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4