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
+9-5Lines changed: 9 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ HLR is a simple Python package for running hierarchical regression. It was creat
7
7
It is built to work with Pandas dataframes, uses SciPy and statsmodels for all statistics and regression functions, and runs diagnostic tests for testing assumptions while plotting figures with matplotlib and seaborn.
8
8
9
9
## Installation
10
-
HLR is meant to be used with Python 3.x and has been tested on Python 3.6-3.9.
10
+
HLR is meant to be used with Python 3.x and has been tested on Python 3.7-3.9.
11
11
12
12
#### Dependencies
13
13
-[NumPy](https://numpy.org/)
@@ -33,7 +33,7 @@ An example Jupyter Notebook can be found in 'example' subfolder with a sample da
33
33
34
34
```python
35
35
import pandas as pd
36
-
importhlr
36
+
importHLR
37
37
38
38
nba = pd.read_csv('example/NBA_train.csv')
39
39
@@ -51,9 +51,9 @@ X_names = [['points'],
51
51
y = nba[['W']]
52
52
53
53
# Create a HLR model with diagnostic tests, run and save the results
@@ -71,6 +71,10 @@ HLR was created by [Toomas Erik Anijärv](https://www.toomaserikanijarv.com) usi
71
71
72
72
This program is provided with no warranty of any kind and it is still under heavy development. However, this code has been checked and validated against multiple same analyses conducted in SPSS.
73
73
74
+
#### To-do
75
+
- Documentation
76
+
- More thorough testing
77
+
74
78
#### Contributors
75
79
[Toomas Erik Anijärv](https://github.com/teanijarv)
0 commit comments