Skip to content

Commit a1d2c3d

Browse files
committed
Improved the docs
1 parent 6743d30 commit a1d2c3d

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

8-Numpy/Readme.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ NumPy is a Python library that stands for Numerical Python. It is a fundamental
66

77
To install NumPy, you can use the following command:
88

9-
```pip
9+
```bash
1010
%pip install numpy
1111
```
1212

@@ -51,15 +51,15 @@ NumPy is a fundamental library in the Python scientific computing ecosystem, and
5151

5252
## Install Numpy with Types
5353

54-
```pip
54+
```bash
5555
%pip install nptyping beartype
5656
```
5757

5858
`nptyping` and `beartype` are used for static typing in python code.
5959

6060
### To upgrade for latest versions
6161

62-
```pip
62+
```bash
6363
%pip install nptyping beartype --upgrade --force
6464
```
6565

9-Pandas/Readme.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pandas is an open-source data manipulation and analysis library for Python. It p
1616
First make sure that your virtual environment is activated.
1717

1818
```bash
19-
pip install pandas
19+
%pip install pandas
2020
```
2121

2222
This command will download and install the Pandas library and its dependencies.
@@ -110,9 +110,11 @@ For more detailed information, you can refer to the official [Pandas documentati
110110

111111
## Pandera
112112

113-
`pip install pandera`
113+
**Installation:**
114114

115-
To install pandera.
115+
```bash
116+
pip install pandera
117+
```
116118

117119
## Pandas Topics Covered
118120

0 commit comments

Comments
 (0)