Skip to content

Commit 41d78af

Browse files
authored
Merge pull request #458 from microsoft/dependabot/npm_and_yarn/3-Data-Visualization/13-meaningful-visualizations/starter/express-4.18.2
Bump express from 4.17.1 to 4.18.2 in /3-Data-Visualization/13-meaningful-visualizations/starter
2 parents 786ee13 + e93d6a7 commit 41d78af

File tree

8 files changed

+20687
-19772
lines changed

8 files changed

+20687
-19772
lines changed

2-Working-With-Data/07-python/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ b = pd.Series(["I","like","to","play","games","and","will","not","change"],index
9797
df = pd.DataFrame([a,b])
9898
```
9999
This will create a horizontal table like this:
100-
101100
| | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
102101
| --- | --- | ---- | --- | --- | ------ | --- | ------ | ---- | ---- |
103102
| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
@@ -123,7 +122,7 @@ This will give us a table like this:
123122

124123
**Note** that we can also get this table layout by transposing the previous table, eg. by writing
125124
```python
126-
df = pd.DataFrame([a,b]).T.rename(columns={ 0 : 'A', 1 : 'B' })
125+
df = pd.DataFrame([a,b]).T..rename(columns={ 0 : 'A', 1 : 'B' })
127126
```
128127
Here `.T` means the operation of transposing the DataFrame, i.e. changing rows and columns, and `rename` operation allows us to rename columns to match the previous example.
129128

3-Data-Visualization/13-meaningful-visualizations/solution/package-lock.json

Lines changed: 3103 additions & 3373 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3-Data-Visualization/13-meaningful-visualizations/solution/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"@vue/cli-plugin-babel": "~4.5.0",
1717
"@vue/cli-plugin-eslint": "~4.5.0",
18-
"@vue/cli-service": "~5.0.8",
18+
"@vue/cli-service": "~4.5.0",
1919
"babel-eslint": "^10.1.0",
2020
"eslint": "^6.7.2",
2121
"eslint-plugin-vue": "^6.2.2",

3-Data-Visualization/13-meaningful-visualizations/starter/package-lock.json

Lines changed: 3050 additions & 3682 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

3-Data-Visualization/13-meaningful-visualizations/starter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"devDependencies": {
1616
"@vue/cli-plugin-babel": "~4.5.0",
1717
"@vue/cli-plugin-eslint": "~4.5.0",
18-
"@vue/cli-service": "~5.0.8",
18+
"@vue/cli-service": "~4.5.0",
1919
"babel-eslint": "^10.1.0",
2020
"eslint": "^6.7.2",
2121
"eslint-plugin-vue": "^6.2.2",

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quiz-app/package-lock.json

Lines changed: 14522 additions & 12704 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

quiz-app/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
"vue-router": "^3.4.9"
1515
},
1616
"devDependencies": {
17-
"@vue/cli-plugin-babel": "~5.0.8",
18-
"@vue/cli-plugin-eslint": "~5.0.8",
19-
"@vue/cli-service": "~5.0.8",
17+
"@vue/cli-plugin-babel": "~4.5.0",
18+
"@vue/cli-plugin-eslint": "~4.5.0",
19+
"@vue/cli-service": "~4.5.0",
2020
"babel-eslint": "^10.1.0",
2121
"eslint": "^6.7.2",
2222
"eslint-plugin-vue": "^6.2.2",

0 commit comments

Comments
 (0)