├── .flake8 ├── .gitattributes ├── .github ├── codecov.yml └── workflows │ ├── docker_deploy.yml │ ├── tests.yml │ └── vercel_deploy.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── backend ├── Dockerfile ├── README.md ├── local.mk └── stan-wasm-server │ ├── pyproject.toml │ ├── run.sh │ └── src │ └── app │ ├── config.py │ ├── logic │ ├── __init__.py │ ├── authorization.py │ ├── compilation.py │ ├── compilation_job_mgmt.py │ ├── exceptions.py │ ├── file_validation │ │ ├── __init__.py │ │ └── compilation_files.py │ └── locking.py │ └── main.py ├── docs ├── README.md ├── compilation_server_setup.md ├── embed_examples │ ├── embed_example_1.html │ ├── embed_example_2.md │ ├── embed_example_3.md │ ├── embed_examples.md │ ├── linear_regression_multiple_predictors.json │ ├── linear_regression_multiple_predictors.py │ └── linear_regression_multiple_predictors.stan ├── feature_overview.md ├── previous_stan_playground.md ├── stan_playground_embedded.md └── url_parameters.md └── gui ├── .eslintrc.cjs ├── .prettierignore ├── ARCHITECTURE.md ├── README.md ├── index.html ├── package.json ├── public ├── StanPlay_Icon_RGB_Black.png ├── StanPlay_Logo_RGB_Black.png ├── StanPlay_Logo_RGB_Full.png ├── StanPlay_Logo_RGB_White.png ├── StanPlayground_favicon.ico └── stan-playground-embed.js ├── src ├── app │ ├── App.tsx │ ├── areas │ │ ├── ControlArea.tsx │ │ ├── ControlArea │ │ │ ├── DataGenerationArea.tsx │ │ │ ├── DataGenerationArea │ │ │ │ ├── DataPyPanel.tsx │ │ │ │ ├── DataRPanel.tsx │ │ │ │ ├── code_templates │ │ │ │ │ ├── data.R │ │ │ │ │ └── data.py │ │ │ │ └── useDataGenState.ts │ │ │ ├── SamplingArea.tsx │ │ │ └── SamplingArea │ │ │ │ ├── ResultsArea.tsx │ │ │ │ ├── ResultsArea │ │ │ │ ├── AnalysisArea.tsx │ │ │ │ ├── AnalysisArea │ │ │ │ │ ├── AnalysisPyPanel.tsx │ │ │ │ │ ├── AnalysisRPanel.tsx │ │ │ │ │ ├── code_templates │ │ │ │ │ │ ├── analysis.R │ │ │ │ │ │ └── analysis.py │ │ │ │ │ └── useAnalysisState.ts │ │ │ │ ├── SamplerOutputArea.tsx │ │ │ │ └── SamplerOutputArea │ │ │ │ │ ├── ConsolePanel.tsx │ │ │ │ │ ├── DrawsTablePanel.tsx │ │ │ │ │ ├── HistogramsPanel.tsx │ │ │ │ │ ├── Plots │ │ │ │ │ ├── Histogram.tsx │ │ │ │ │ ├── ScatterPlot2D.tsx │ │ │ │ │ ├── ScatterPlot3D.tsx │ │ │ │ │ ├── ScatterPlotMatrix.tsx │ │ │ │ │ └── TracePlot.tsx │ │ │ │ │ ├── ScatterPlotsPanel.tsx │ │ │ │ │ ├── SummaryPanel.tsx │ │ │ │ │ └── TracePlotsPanel.tsx │ │ │ │ ├── RunArea.tsx │ │ │ │ └── RunArea │ │ │ │ ├── CompileButton.tsx │ │ │ │ ├── RunOrCompilePanel.tsx │ │ │ │ ├── RunPanel.tsx │ │ │ │ ├── SamplerProgress.tsx │ │ │ │ ├── SamplerProgressCircular.tsx │ │ │ │ ├── SamplerStatusPanel.tsx │ │ │ │ └── SamplingOptsPanel.tsx │ │ ├── ModelDataArea.tsx │ │ └── ModelDataArea │ │ │ ├── DataEditorPanel.tsx │ │ │ ├── ModelEditorPanel.tsx │ │ │ └── StanCompileResultPanel.tsx │ ├── components │ │ ├── CloseableDialog.tsx │ │ ├── Collapsable.tsx │ │ ├── FileEditor │ │ │ ├── PlottingScriptEditor.tsx │ │ │ ├── ScriptEditor.tsx │ │ │ ├── TextEditor.tsx │ │ │ ├── ToolBar.tsx │ │ │ ├── monacoStanLanguage.ts │ │ │ └── useTemplatedFillerText.ts │ │ ├── FilledCircularProgress.tsx │ │ ├── LazyPlotlyPlot.tsx │ │ ├── LinearProgressWithLabel.tsx │ │ ├── Loading.tsx │ │ ├── NumberInput.tsx │ │ ├── ResponsiveGrid.tsx │ │ ├── StyledTables.tsx │ │ └── TabWidget.tsx │ ├── core │ │ ├── Compilation │ │ │ ├── CompileContextProvider.tsx │ │ │ └── compileStanProgram.ts │ │ ├── Project │ │ │ ├── FileMapping.ts │ │ │ ├── ProjectContextProvider.tsx │ │ │ ├── ProjectDataModel.ts │ │ │ ├── ProjectQueryLoading.ts │ │ │ ├── ProjectReducer.ts │ │ │ └── ProjectSerialization.ts │ │ ├── Scripting │ │ │ ├── InterpreterTypes.ts │ │ │ ├── OutputDivUtils.ts │ │ │ ├── Takeout │ │ │ │ ├── R │ │ │ │ │ ├── cmdstan.R │ │ │ │ │ ├── load_args.R │ │ │ │ │ ├── preamble.R │ │ │ │ │ ├── run_analysis.R │ │ │ │ │ ├── run_data.R │ │ │ │ │ └── sample.R │ │ │ │ ├── makeRuntime.ts │ │ │ │ └── py │ │ │ │ │ ├── cmdstan.py │ │ │ │ │ ├── load_args.py │ │ │ │ │ ├── preamble.py │ │ │ │ │ ├── run_analysis.py │ │ │ │ │ ├── run_data.py │ │ │ │ │ └── sample.py │ │ │ ├── pyodide │ │ │ │ ├── pyodideWorker.ts │ │ │ │ ├── pyodideWorkerTypes.ts │ │ │ │ ├── sp_load_draws.py │ │ │ │ ├── sp_patch_matplotlib.py │ │ │ │ └── usePyodideWorker.ts │ │ │ └── webR │ │ │ │ ├── data_postamble.R │ │ │ │ ├── sp_load_draws.R │ │ │ │ ├── stan_code_postamble.R │ │ │ │ ├── useWebR.ts │ │ │ │ ├── webR_brms.R │ │ │ │ └── webR_preamble.R │ │ ├── Settings │ │ │ ├── UserSettings.ts │ │ │ └── UserSettingsProvider.tsx │ │ ├── StanSampler │ │ │ ├── SamplerTypes.ts │ │ │ ├── StanModelWorker.ts │ │ │ ├── StanSampler.ts │ │ │ └── useStanSampler.ts │ │ └── Stanc │ │ │ ├── Linting.ts │ │ │ ├── Types.ts │ │ │ ├── stancWorker.ts │ │ │ └── useStanc.ts │ ├── pages │ │ ├── CustomTheming.tsx │ │ ├── EmbeddedBottomBar.tsx │ │ ├── HomeEmbedded.tsx │ │ ├── HomePage.tsx │ │ ├── Sidebar.tsx │ │ └── TopBar.tsx │ ├── util │ │ ├── baseObjectCheck.ts │ │ ├── gists │ │ │ ├── doesGistExist.ts │ │ │ ├── loadFilesFromGist.ts │ │ │ └── saveAsGitHubGist.ts │ │ ├── indent.ts │ │ ├── isMonacoWorkerNoise.ts │ │ ├── normalizeLineEndings.ts │ │ ├── prettifyStanParamName.ts │ │ ├── replaceSpaces.ts │ │ ├── serializeAsZip.ts │ │ ├── triggerDownload.ts │ │ ├── tryFetch.ts │ │ └── unreachable.ts │ └── windows │ │ ├── ExportProjectWindow.tsx │ │ ├── ExportProjectWindow │ │ ├── ExportProjectPanel.tsx │ │ ├── GistExportPanel.tsx │ │ ├── GistUpdatePanel.tsx │ │ ├── InputPersonalAccessToken.tsx │ │ └── makeShareableLink.ts │ │ ├── LoadProjectWindow.tsx │ │ ├── LoadProjectWindow │ │ ├── LoadProjectPanel.tsx │ │ └── UploadFiles.tsx │ │ ├── SettingsWindow.tsx │ │ └── SettingsWindow │ │ ├── CompilationServerArea.tsx │ │ └── PersonalSettingsArea.tsx ├── index.css ├── localStyles.css └── main.tsx ├── test └── app │ ├── Scripting │ ├── makePyRuntime.test.ts │ └── makeRRuntime.test.ts │ ├── core │ ├── Project │ │ ├── ProjectDataModel.test.ts │ │ ├── ProjectQueryLoading.test.ts │ │ └── ProjectReducer.test.ts │ ├── StanSampler │ │ ├── MockStanModel.ts │ │ ├── empty.ts │ │ ├── fail.ts │ │ └── useStanSampler.test.ts │ └── Stanc │ │ ├── Linting.test.ts │ │ └── useStanc.test.ts │ └── util │ ├── normalizeLineEndings.test.ts │ └── prettifyStanParamName.test.ts ├── tsconfig.json ├── tsconfig.node.json ├── vendor └── plotly-stan-playground-dist │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── plotly-stan-playground.d.ts │ └── plotly-stan-playground.js ├── vercel.json ├── vite.config.ts └── yarn.lock /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/docker_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.github/workflows/docker_deploy.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/vercel_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.github/workflows/vercel_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/README.md -------------------------------------------------------------------------------- /backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/Dockerfile -------------------------------------------------------------------------------- /backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/README.md -------------------------------------------------------------------------------- /backend/local.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/local.mk -------------------------------------------------------------------------------- /backend/stan-wasm-server/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/pyproject.toml -------------------------------------------------------------------------------- /backend/stan-wasm-server/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/run.sh -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/config.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/authorization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/authorization.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/compilation.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/compilation_job_mgmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/compilation_job_mgmt.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/exceptions.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/file_validation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/file_validation/compilation_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/file_validation/compilation_files.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/logic/locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/logic/locking.py -------------------------------------------------------------------------------- /backend/stan-wasm-server/src/app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/backend/stan-wasm-server/src/app/main.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/compilation_server_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/compilation_server_setup.md -------------------------------------------------------------------------------- /docs/embed_examples/embed_example_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/embed_example_1.html -------------------------------------------------------------------------------- /docs/embed_examples/embed_example_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/embed_example_2.md -------------------------------------------------------------------------------- /docs/embed_examples/embed_example_3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/embed_example_3.md -------------------------------------------------------------------------------- /docs/embed_examples/embed_examples.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/embed_examples/linear_regression_multiple_predictors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/linear_regression_multiple_predictors.json -------------------------------------------------------------------------------- /docs/embed_examples/linear_regression_multiple_predictors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/linear_regression_multiple_predictors.py -------------------------------------------------------------------------------- /docs/embed_examples/linear_regression_multiple_predictors.stan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/embed_examples/linear_regression_multiple_predictors.stan -------------------------------------------------------------------------------- /docs/feature_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/feature_overview.md -------------------------------------------------------------------------------- /docs/previous_stan_playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/previous_stan_playground.md -------------------------------------------------------------------------------- /docs/stan_playground_embedded.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/stan_playground_embedded.md -------------------------------------------------------------------------------- /docs/url_parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/docs/url_parameters.md -------------------------------------------------------------------------------- /gui/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/.eslintrc.cjs -------------------------------------------------------------------------------- /gui/.prettierignore: -------------------------------------------------------------------------------- 1 | backend/ 2 | node_modules/ 3 | dist/ 4 | coverage/ 5 | vendor/ 6 | 7 | fft.ts 8 | -------------------------------------------------------------------------------- /gui/ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/ARCHITECTURE.md -------------------------------------------------------------------------------- /gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/README.md -------------------------------------------------------------------------------- /gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/index.html -------------------------------------------------------------------------------- /gui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/package.json -------------------------------------------------------------------------------- /gui/public/StanPlay_Icon_RGB_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/StanPlay_Icon_RGB_Black.png -------------------------------------------------------------------------------- /gui/public/StanPlay_Logo_RGB_Black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/StanPlay_Logo_RGB_Black.png -------------------------------------------------------------------------------- /gui/public/StanPlay_Logo_RGB_Full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/StanPlay_Logo_RGB_Full.png -------------------------------------------------------------------------------- /gui/public/StanPlay_Logo_RGB_White.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/StanPlay_Logo_RGB_White.png -------------------------------------------------------------------------------- /gui/public/StanPlayground_favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/StanPlayground_favicon.ico -------------------------------------------------------------------------------- /gui/public/stan-playground-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/public/stan-playground-embed.js -------------------------------------------------------------------------------- /gui/src/app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/App.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/DataGenerationArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea/DataPyPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/DataGenerationArea/DataPyPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea/DataRPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/DataGenerationArea/DataRPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea/code_templates/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/DataGenerationArea/code_templates/data.R -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea/code_templates/data.py: -------------------------------------------------------------------------------- 1 | data = {"a": [1, 2, 3]} 2 | -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/DataGenerationArea/useDataGenState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/DataGenerationArea/useDataGenState.ts -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/AnalysisPyPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/AnalysisPyPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/AnalysisRPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/AnalysisRPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/code_templates/analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/code_templates/analysis.R -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/code_templates/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/code_templates/analysis.py -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/useAnalysisState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/AnalysisArea/useAnalysisState.ts -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/ConsolePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/ConsolePanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/DrawsTablePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/DrawsTablePanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/HistogramsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/HistogramsPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/Histogram.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/Histogram.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlot2D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlot2D.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlot3D.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlot3D.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlotMatrix.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/ScatterPlotMatrix.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/TracePlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/Plots/TracePlot.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/ScatterPlotsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/ScatterPlotsPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/SummaryPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/SummaryPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/TracePlotsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/ResultsArea/SamplerOutputArea/TracePlotsPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/CompileButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/CompileButton.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/RunOrCompilePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/RunOrCompilePanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/RunPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/RunPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerProgress.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerProgressCircular.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerProgressCircular.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerStatusPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplerStatusPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplingOptsPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ControlArea/SamplingArea/RunArea/SamplingOptsPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ModelDataArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ModelDataArea.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ModelDataArea/DataEditorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ModelDataArea/DataEditorPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ModelDataArea/ModelEditorPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ModelDataArea/ModelEditorPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/areas/ModelDataArea/StanCompileResultPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/areas/ModelDataArea/StanCompileResultPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/components/CloseableDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/CloseableDialog.tsx -------------------------------------------------------------------------------- /gui/src/app/components/Collapsable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/Collapsable.tsx -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/PlottingScriptEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/PlottingScriptEditor.tsx -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/ScriptEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/ScriptEditor.tsx -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/TextEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/TextEditor.tsx -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/ToolBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/ToolBar.tsx -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/monacoStanLanguage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/monacoStanLanguage.ts -------------------------------------------------------------------------------- /gui/src/app/components/FileEditor/useTemplatedFillerText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FileEditor/useTemplatedFillerText.ts -------------------------------------------------------------------------------- /gui/src/app/components/FilledCircularProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/FilledCircularProgress.tsx -------------------------------------------------------------------------------- /gui/src/app/components/LazyPlotlyPlot.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/LazyPlotlyPlot.tsx -------------------------------------------------------------------------------- /gui/src/app/components/LinearProgressWithLabel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/LinearProgressWithLabel.tsx -------------------------------------------------------------------------------- /gui/src/app/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/Loading.tsx -------------------------------------------------------------------------------- /gui/src/app/components/NumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/NumberInput.tsx -------------------------------------------------------------------------------- /gui/src/app/components/ResponsiveGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/ResponsiveGrid.tsx -------------------------------------------------------------------------------- /gui/src/app/components/StyledTables.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/StyledTables.tsx -------------------------------------------------------------------------------- /gui/src/app/components/TabWidget.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/components/TabWidget.tsx -------------------------------------------------------------------------------- /gui/src/app/core/Compilation/CompileContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Compilation/CompileContextProvider.tsx -------------------------------------------------------------------------------- /gui/src/app/core/Compilation/compileStanProgram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Compilation/compileStanProgram.ts -------------------------------------------------------------------------------- /gui/src/app/core/Project/FileMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/FileMapping.ts -------------------------------------------------------------------------------- /gui/src/app/core/Project/ProjectContextProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/ProjectContextProvider.tsx -------------------------------------------------------------------------------- /gui/src/app/core/Project/ProjectDataModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/ProjectDataModel.ts -------------------------------------------------------------------------------- /gui/src/app/core/Project/ProjectQueryLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/ProjectQueryLoading.ts -------------------------------------------------------------------------------- /gui/src/app/core/Project/ProjectReducer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/ProjectReducer.ts -------------------------------------------------------------------------------- /gui/src/app/core/Project/ProjectSerialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Project/ProjectSerialization.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/InterpreterTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/InterpreterTypes.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/OutputDivUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/OutputDivUtils.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/cmdstan.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/cmdstan.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/load_args.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/load_args.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/preamble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/preamble.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/run_analysis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/run_analysis.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/run_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/run_data.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/R/sample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/R/sample.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/makeRuntime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/makeRuntime.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/cmdstan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/cmdstan.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/load_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/load_args.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/preamble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/preamble.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/run_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/run_analysis.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/run_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/run_data.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/Takeout/py/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/Takeout/py/sample.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/pyodide/pyodideWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/pyodide/pyodideWorker.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/pyodide/pyodideWorkerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/pyodide/pyodideWorkerTypes.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/pyodide/sp_load_draws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/pyodide/sp_load_draws.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/pyodide/sp_patch_matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/pyodide/sp_patch_matplotlib.py -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/pyodide/usePyodideWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/pyodide/usePyodideWorker.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/data_postamble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/data_postamble.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/sp_load_draws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/sp_load_draws.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/stan_code_postamble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/stan_code_postamble.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/useWebR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/useWebR.ts -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/webR_brms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/webR_brms.R -------------------------------------------------------------------------------- /gui/src/app/core/Scripting/webR/webR_preamble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Scripting/webR/webR_preamble.R -------------------------------------------------------------------------------- /gui/src/app/core/Settings/UserSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Settings/UserSettings.ts -------------------------------------------------------------------------------- /gui/src/app/core/Settings/UserSettingsProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Settings/UserSettingsProvider.tsx -------------------------------------------------------------------------------- /gui/src/app/core/StanSampler/SamplerTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/StanSampler/SamplerTypes.ts -------------------------------------------------------------------------------- /gui/src/app/core/StanSampler/StanModelWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/StanSampler/StanModelWorker.ts -------------------------------------------------------------------------------- /gui/src/app/core/StanSampler/StanSampler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/StanSampler/StanSampler.ts -------------------------------------------------------------------------------- /gui/src/app/core/StanSampler/useStanSampler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/StanSampler/useStanSampler.ts -------------------------------------------------------------------------------- /gui/src/app/core/Stanc/Linting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Stanc/Linting.ts -------------------------------------------------------------------------------- /gui/src/app/core/Stanc/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Stanc/Types.ts -------------------------------------------------------------------------------- /gui/src/app/core/Stanc/stancWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Stanc/stancWorker.ts -------------------------------------------------------------------------------- /gui/src/app/core/Stanc/useStanc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/core/Stanc/useStanc.ts -------------------------------------------------------------------------------- /gui/src/app/pages/CustomTheming.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/CustomTheming.tsx -------------------------------------------------------------------------------- /gui/src/app/pages/EmbeddedBottomBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/EmbeddedBottomBar.tsx -------------------------------------------------------------------------------- /gui/src/app/pages/HomeEmbedded.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/HomeEmbedded.tsx -------------------------------------------------------------------------------- /gui/src/app/pages/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/HomePage.tsx -------------------------------------------------------------------------------- /gui/src/app/pages/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/Sidebar.tsx -------------------------------------------------------------------------------- /gui/src/app/pages/TopBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/pages/TopBar.tsx -------------------------------------------------------------------------------- /gui/src/app/util/baseObjectCheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/baseObjectCheck.ts -------------------------------------------------------------------------------- /gui/src/app/util/gists/doesGistExist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/gists/doesGistExist.ts -------------------------------------------------------------------------------- /gui/src/app/util/gists/loadFilesFromGist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/gists/loadFilesFromGist.ts -------------------------------------------------------------------------------- /gui/src/app/util/gists/saveAsGitHubGist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/gists/saveAsGitHubGist.ts -------------------------------------------------------------------------------- /gui/src/app/util/indent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/indent.ts -------------------------------------------------------------------------------- /gui/src/app/util/isMonacoWorkerNoise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/isMonacoWorkerNoise.ts -------------------------------------------------------------------------------- /gui/src/app/util/normalizeLineEndings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/normalizeLineEndings.ts -------------------------------------------------------------------------------- /gui/src/app/util/prettifyStanParamName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/prettifyStanParamName.ts -------------------------------------------------------------------------------- /gui/src/app/util/replaceSpaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/replaceSpaces.ts -------------------------------------------------------------------------------- /gui/src/app/util/serializeAsZip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/serializeAsZip.ts -------------------------------------------------------------------------------- /gui/src/app/util/triggerDownload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/triggerDownload.ts -------------------------------------------------------------------------------- /gui/src/app/util/tryFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/tryFetch.ts -------------------------------------------------------------------------------- /gui/src/app/util/unreachable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/util/unreachable.ts -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow/ExportProjectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow/ExportProjectPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow/GistExportPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow/GistExportPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow/GistUpdatePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow/GistUpdatePanel.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow/InputPersonalAccessToken.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow/InputPersonalAccessToken.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/ExportProjectWindow/makeShareableLink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/ExportProjectWindow/makeShareableLink.ts -------------------------------------------------------------------------------- /gui/src/app/windows/LoadProjectWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/LoadProjectWindow.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/LoadProjectWindow/LoadProjectPanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/LoadProjectWindow/LoadProjectPanel.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/LoadProjectWindow/UploadFiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/LoadProjectWindow/UploadFiles.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/SettingsWindow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/SettingsWindow.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/SettingsWindow/CompilationServerArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/SettingsWindow/CompilationServerArea.tsx -------------------------------------------------------------------------------- /gui/src/app/windows/SettingsWindow/PersonalSettingsArea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/app/windows/SettingsWindow/PersonalSettingsArea.tsx -------------------------------------------------------------------------------- /gui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/index.css -------------------------------------------------------------------------------- /gui/src/localStyles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/localStyles.css -------------------------------------------------------------------------------- /gui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/src/main.tsx -------------------------------------------------------------------------------- /gui/test/app/Scripting/makePyRuntime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/Scripting/makePyRuntime.test.ts -------------------------------------------------------------------------------- /gui/test/app/Scripting/makeRRuntime.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/Scripting/makeRRuntime.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/Project/ProjectDataModel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/Project/ProjectDataModel.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/Project/ProjectQueryLoading.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/Project/ProjectQueryLoading.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/Project/ProjectReducer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/Project/ProjectReducer.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/StanSampler/MockStanModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/StanSampler/MockStanModel.ts -------------------------------------------------------------------------------- /gui/test/app/core/StanSampler/empty.ts: -------------------------------------------------------------------------------- 1 | // intentionally empty, used to create a URL vitest can resolve 2 | -------------------------------------------------------------------------------- /gui/test/app/core/StanSampler/fail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/StanSampler/fail.ts -------------------------------------------------------------------------------- /gui/test/app/core/StanSampler/useStanSampler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/StanSampler/useStanSampler.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/Stanc/Linting.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/Stanc/Linting.test.ts -------------------------------------------------------------------------------- /gui/test/app/core/Stanc/useStanc.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/core/Stanc/useStanc.test.ts -------------------------------------------------------------------------------- /gui/test/app/util/normalizeLineEndings.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/util/normalizeLineEndings.test.ts -------------------------------------------------------------------------------- /gui/test/app/util/prettifyStanParamName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/test/app/util/prettifyStanParamName.test.ts -------------------------------------------------------------------------------- /gui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/tsconfig.json -------------------------------------------------------------------------------- /gui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/tsconfig.node.json -------------------------------------------------------------------------------- /gui/vendor/plotly-stan-playground-dist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vendor/plotly-stan-playground-dist/LICENSE -------------------------------------------------------------------------------- /gui/vendor/plotly-stan-playground-dist/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vendor/plotly-stan-playground-dist/README.md -------------------------------------------------------------------------------- /gui/vendor/plotly-stan-playground-dist/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vendor/plotly-stan-playground-dist/package.json -------------------------------------------------------------------------------- /gui/vendor/plotly-stan-playground-dist/plotly-stan-playground.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vendor/plotly-stan-playground-dist/plotly-stan-playground.d.ts -------------------------------------------------------------------------------- /gui/vendor/plotly-stan-playground-dist/plotly-stan-playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vendor/plotly-stan-playground-dist/plotly-stan-playground.js -------------------------------------------------------------------------------- /gui/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vercel.json -------------------------------------------------------------------------------- /gui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/vite.config.ts -------------------------------------------------------------------------------- /gui/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatironinstitute/stan-playground/HEAD/gui/yarn.lock --------------------------------------------------------------------------------