Skip to content

Commit bcc2a4e

Browse files
authored
Merge pull request #49096 from PhilKang0704/broken-link-fix-softchris
Broken links fixing - softchris
2 parents af040ef + 90eb269 commit bcc2a4e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

learn-pr/reactors/join-clean-data-deep-dive/includes/1-introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ As a general rule, data scientists assume that about 80 percent of the time and
33

44
This section makes extensive use of pandas, the principal Python library for data handling and manipulation. This section assumes some familiarity with pandas and basic Python skills.
55

6-
To provide an experience more like real-world data science, we'll use real data gathered from the [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/nutrient-data-laboratory/docs/usda-national-nutrient-database-for-standard-reference/?azure-portal=true).
6+
To provide an experience more like real-world data science, we'll use real data gathered from the [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/?azure-portal=true).
77

88
## Learning objectives
99

learn-pr/reactors/principal-component-analysis-food-composition/includes/2-pca-theory-download-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import matplotlib.pyplot as plt
2929
%matplotlib inline
3030
```
3131

32-
The dataset we'll use here's the same one that's drawn from the [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/nutrient-data-laboratory/docs/usda-national-nutrient-database-for-standard-reference/?azure-portal=true) that you prepared in the preceding module.
32+
The dataset we'll use here's the same one that's drawn from the [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/?azure-portal=true) that you prepared in the preceding module.
3333

3434
Remember to set the encoding to `latin1` (for µg):
3535

learn-pr/reactors/unsupervised-learning-clustering/includes/2-load-prepare-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
To illustrate k-means clustering in action, we'll use the familiar [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/nutrient-data-laboratory/docs/usda-national-nutrient-database-for-standard-reference/?azure-portal=true) dataset that you used in sections 1.1 through 1.3. Note that the path name is case sensitive.
1+
To illustrate k-means clustering in action, we'll use the familiar [U.S. Department of Agriculture National Nutrient Database for Standard Reference](https://www.ars.usda.gov/northeast-area/beltsville-md-bhnrc/beltsville-human-nutrition-research-center/?azure-portal=true) dataset that you used in sections 1.1 through 1.3. Note that the path name is case sensitive.
22

33
```python
44
import pandas as pd

0 commit comments

Comments
 (0)