You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+45-7Lines changed: 45 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# Numerics Python Examples
2
2
3
-
This repository contains Python notebooks that demonstrate the Numerics .NET library through pythonnet. The goal is to provide practical, reproducible examples for distributions, MCMC, optimization, statistics, time series, machine learning, and linear models.
3
+
This repository contains Python notebooks that demonstrate the Numerics .NET library through pythonnet. The notebooks provide practical, reproducible examples of Numerics applications, including distribution fitting, MCMC, optimization, statistical analysis, time series analysis, machine learning, and linear model fitting.
4
4
5
5
## Contents
6
6
-`notebooks/` Jupyter notebooks organized by topic
@@ -23,14 +23,52 @@ This repository contains Python notebooks that demonstrate the Numerics .NET lib
23
23
24
24
## Prerequisites
25
25
- Windows with .NET installed (or .NET 6+ runtime on Linux/macOS)
26
-
- Python with pythonnet
27
-
- Numerics built locally so the DLL exists at the path used in notebooks
26
+
- Python with [pythonnet](https://github.com/pythonnet/pythonnet)
27
+
- Numerics built and compiled locally. The resulting DLL path must match the path referenced in the notebooks — see Quick Start and/or notebook 00 for setup instructions.
3. Build Numerics and confirm the DLL path matches what the notebooks expect.
33
-
4. Open notebooks in Jupyter or VS Code and run cells top to bottom.
30
+
The quick start will step through the creation of an active python environment, installing the notebook requirements & RMC-Numerics, and getting the methods ready to be used. For a more in depth walk through see notebook 00.
31
+
**NOTE:** This set up is geared towards Windows users. For other operating systems see notebook 00.
32
+
33
+
1. Create and activate a virtual Python environment
0 commit comments