Skip to content

Commit c115d9c

Browse files
authored
Merge pull request #224 from realpython/scipy-linalg-2
Add files via upload
2 parents b234289 + 1461af3 commit c115d9c

File tree

5 files changed

+10842
-0
lines changed

5 files changed

+10842
-0
lines changed

scipy-linalg/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Working With Linear Systems in Python
2+
3+
This directory contains code associated with the Real Python tutorials:
4+
5+
- [Working With Linear Systems in Python With `scipy.linalg`](https://realpython.com/python-scipy-linalg/)
6+
- [Linear Algebra in Python: Matrix Inverses and Least Squares](https://realpython.com/python-linear-algebra/)
7+
8+
See the tutorials for details.
9+
10+
## Installation
11+
12+
Use [`conda`](https://docs.conda.io/en/latest/miniconda.html) to create and activate a virtual environment:
13+
14+
```console
15+
$ conda create --name linalg
16+
$ conda activate linalg
17+
```
18+
19+
Install packages into your environment:
20+
21+
```console
22+
(linalg) $ conda install numpy scipy matplotlib pandas jupyter
23+
```
24+
25+
## Code
26+
27+
The code from the tutorials is available as notebooks that you can open with [Jupyter](https://realpython.com/jupyter-notebook-introduction/):
28+
29+
- Working With Linear Systems in Python With `scipy.linalg` [notebook](linear-systems.ipynb)
30+
- Linear Algebra in Python: Matrix Inverses and Least Squares [notebook](matrix-inverses-least-squares.ipynb)
31+
32+
## Data
33+
34+
You can find [`vehicles_cleaned.csv`](vehicles_cleaned.csv) in this directory. The dataset is adapted from https://www.kaggle.com/austinreese/craigslist-carstrucks-data and used in Linear Algebra in Python: Matrix Inverses and Least Squares. The [vehicles-data-preparation](vehicles-data-preparation.ipynb) notebook shows how the dataset was cleaned and prepared.
35+
36+
## About the Author
37+
38+
Renato Candido - <https://realpython.com/team/rcandido/>
39+
40+
## License
41+
42+
Distributed under the MIT license. See [`LICENSE`](../LICENSE) for more information.

0 commit comments

Comments
 (0)