Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ianhi/line-fit-cli
https://github.com/ianhi/line-fit-cli
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ianhi/line-fit-cli
- Owner: ianhi
- License: bsd-3-clause
- Created: 2022-03-16T21:02:11.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-07-02T00:00:37.000Z (6 months ago)
- Last Synced: 2024-11-05T08:03:01.875Z (about 2 months ago)
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# line-fit-cli
cli for loading csvs and fitting simple curves to them. Avoid opening needing to open a full python session or excel.
To install: `pip install git+https://github.com/ianhi/line-fit-cli`
Standard Least squares with a plot
```bash
csv-fit-linear examples/example.csv
```Without a plot
```bash
csv-fit-linear examples/example.csv --no-plot
```Ridge Regression
```bash
csv-fit-linear examples/example.csv --ridge
```Ridge regression changing alpha
```bash
csv-fit-linear examples/example.csv --ridge --ridge-alpha=.5
```