Skip to content

Commit 727d1fd

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_yarn/quiz-app/express-4.18.2
2 parents c51405b + 40b24ca commit 727d1fd

File tree

8 files changed

+19591
-20503
lines changed

8 files changed

+19591
-20503
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ 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+
100101
| | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
101102
| --- | --- | ---- | --- | --- | ------ | --- | ------ | ---- | ---- |
102103
| 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |
@@ -122,7 +123,7 @@ This will give us a table like this:
122123

123124
**Note** that we can also get this table layout by transposing the previous table, eg. by writing
124125
```python
125-
df = pd.DataFrame([a,b]).T..rename(columns={ 0 : 'A', 1 : 'B' })
126+
df = pd.DataFrame([a,b]).T.rename(columns={ 0 : 'A', 1 : 'B' })
126127
```
127128
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.
128129

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

Lines changed: 3432 additions & 2997 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": "~4.5.0",
18+
"@vue/cli-service": "~5.0.8",
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: 3628 additions & 2995 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": "~4.5.0",
18+
"@vue/cli-service": "~5.0.8",
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: 12518 additions & 14499 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": "~4.5.0",
18-
"@vue/cli-plugin-eslint": "~4.5.0",
19-
"@vue/cli-service": "~4.5.0",
17+
"@vue/cli-plugin-babel": "~5.0.8",
18+
"@vue/cli-plugin-eslint": "~5.0.8",
19+
"@vue/cli-service": "~5.0.8",
2020
"babel-eslint": "^10.1.0",
2121
"eslint": "^6.7.2",
2222
"eslint-plugin-vue": "^6.2.2",

0 commit comments

Comments
 (0)