SkinSim is a Quarto-based research website for statistical modeling of human skin reflectance spectra.
The project integrates real measurements (ISSA) and simulated spectra to support:
- reproducible spectral analysis,
- biologically informed modeling (melanin and erythema effects),
- synthetic spectrum generation and validation.
analysis/: Quarto analysis reports (.qmd)notebooks/: Jupyter notebooks (.ipynb)code/: reusable Python and R modules/scriptsdata/: source and derived datasetsoutput/: generated figures, tables, and exportsdocs/: rendered static website output
source("renv-setup.R")python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtRun the live preview server:
quarto previewBuild the full site to docs/:
quarto render- Add or update analysis content in
analysis/ornotebooks/. - Keep reusable model code in
code/. - Store intermediate and final artifacts in
output/. - Preview frequently with
quarto preview. - Commit both source files and rendered updates when publishing.
- The website uses Quarto navigation and supports both R and Python execution.
- Notebook pages are rendered as part of the same site output.