Browse Source

fix(ai/numpy): fix readme and audit

pull/2490/head^2
miguel 2 months ago committed by MSilva95
parent
commit
bf5260262f
  1. 2
      subjects/ai/numpy/README.md
  2. 11
      subjects/ai/numpy/audit/README.md

2
subjects/ai/numpy/README.md

@ -290,7 +290,7 @@ Expected output:
The goal of this exercise is to perform fundamental data analysis on real data using NumPy.
The dataset chosen for this task is the [red wine dataset](https://archive.ics.uci.edu/ml/datasets/wine+quality)
The dataset chosen for this task was the [red wine dataset](./data/winequality-red.csv). You can find more info [HERE](./data/)
1. Load the data using `genfromtxt`, specifying the delimiter as ';', and optimize the numpy array size by reducing the data types. Use `np.float32` and verify that the resulting numpy array weighs **76800 bytes**.

11
subjects/ai/numpy/audit/README.md

@ -314,16 +314,7 @@ else:
"Display the 2nd, 7th, and 12th rows as a two-dimensional array. Exclude `np.nan` values if present."
###### Is the output the following?
```console
[[ 7.8 0.76 0.04 2.3 0.092 15. 54. 0.997 3.26
0.65 9.8 5. ]
[ 7.3 0.65 0. 1.2 0.065 15. 21. 0.9946 3.39
0.47 10. 7. ]
[ 5.6 0.615 0. 1.6 0.089 16. 59. 0.9943 3.58
0.52 9.9 5. ]]
```
###### Is the output in line with the data present in the provided dataset in the subject?
##### For question 3:

Loading…
Cancel
Save