IonizationChamber/Software/MeasurementAnalysis/README.md

35 wiersze
1.2 KiB
Markdown

2024-12-11 08:50:20 +00:00
# Purpose
This is a set of scripts that take .csv files and generate diagrams for easy analysis of measurements.
# Plotting Signal Value in Time Domain + Plotting Histogram
This mode is useful for observing measurement changes over time.
After collecting data, run the script to post-process it and generate diagrams:
Rscript main.R
A new .png image with a timestamp in its name will be created in the directory where the script is located.
Below is an example of such a generated plot.
![boxplot](https://raw.githubusercontent.com/RobertGawron/IonizationChamber/master/Documentation/Plots/time_domain_example.png)
# Plotting Values from Different Measurements [(box plot)](https://en.wikipedia.org/wiki/Box_plot)
Collect data from different samples as separate .csv files.
Edit boxplot.R to match the filenames of the .csv files and the labels of the measurements.
Run:
Rscript boxplot.R
A new .png image with a timestamp in its name will be created in the directory where the script is located.
Below is an example of such a generated plot.
![boxplot](https://raw.githubusercontent.com/RobertGawron/IonizationChamber/master/Documentation/Plots/box_plot_example.png)