Data Analysis Shiny App

Data Analysis Shiny App

Data Analysis Shiny App

Mohamed BELMOUIDI

December 31, 2024

The Problem

Ever wondered how to quickly analyze numeric data?

Our Solution

Introducing the Data Analysis Shiny App!

# Example of how simple the analysis can be
sample_data <- c(1, 2, 3, 4, 5)
cat("Basic Statistics:\n")
## Basic Statistics:
cat("Mean:", mean(sample_data), "\n")
## Mean: 3
cat("Median:", median(sample_data), "\n")
## Median: 3
cat("SD:", sd(sample_data), "\n")
## SD: 1.581139

Features in Action

## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

plot of chunk unnamed-chunk-2

Try It Yourself!

Why Choose Our App?

Visit: [https://belmouidi-learning-journey.shinyapps.io/my_shiny_app/]

Source code: [https://github.com/Mohamed-BELMOUIDI/Shiny-application]