Skip to content

Commit fb4d555

Browse files
committed
Merge remote-tracking branch 'origin/main' into dependabot/npm_and_yarn/3-Data-Visualization/13-meaningful-visualizations/starter/json5-and-vue/cli-plugin-babel-and-vue/cli-plugin-eslint-and-vue/cli-service-2.2.3
2 parents 0366541 + 41d78af commit fb4d555

File tree

7 files changed

+21731
-19575
lines changed

7 files changed

+21731
-19575
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: 4095 additions & 3486 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)