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
RidgeMake is intended for educational use and small-to-medium sized datasets.
42
+
43
+
The package is designed for simple linear regression on paired numeric data and prioritizes clarity and ease of use over computational efficiency. It is suitable for classroom demonstrations, quick exploratory analysis, and small experiments.
44
+
45
+
RidgeMake does not support large-scale datasets, high-dimensional data, or advanced regression techniques (e.g., regularization, multivariate regression, or model diagnostics). For production-level workflows or large datasets, users should consider more specialized libraries such as scikit-learn or statsmodels.
11
46
12
47
## Developer setup
13
48
@@ -27,18 +62,12 @@ conda activate group-24-524
27
62
28
63
### (3) Install the package
29
64
30
-
If you are developing locally:
65
+
From the repo root:
31
66
32
67
```bash
33
68
pip install -e .
34
69
```
35
70
36
-
If you are installing from a released package (example):
37
-
38
-
```bash
39
-
pip install ridge_remake
40
-
```
41
-
42
71
## Running tests
43
72
44
73
From the repo root:
@@ -50,7 +79,9 @@ pytest -q
50
79
## Building documentation locally
51
80
52
81
### Generate docs locally
82
+
53
83
From the repo root, run:
84
+
54
85
```bash
55
86
quartodoc build
56
87
```
@@ -66,6 +97,7 @@ Documentation deployment is automated via GitHub Actions on pushes to `main`.
66
97
### (1) Ensure GitHub Pages is configured
67
98
68
99
On GitHub:
100
+
69
101
- Repository Settings → Pages
70
102
- Set Source to GitHub Actions
71
103
@@ -79,13 +111,11 @@ git push origin main
79
111
80
112
### (3) View the deployed site
81
113
82
-
After the workflow finishes, the site will be available at the repository’s GitHub Pages URL:
83
-
https://ubc-mds.github.io/DSCI_524_group24/
84
-
114
+
After the workflow finishes, the site will be available at the repository’s GitHub Pages URL.
0 commit comments