Skip to content

Commit ca3d23a

Browse files
committed
update
1 parent 57392e3 commit ca3d23a

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Joyful-Pandas
22

3-
请在使用教程前确认pandas版本不低于1.1.0
3+
请在使用教程前确认pandas版本不低于1.2.0
44

55
### 网页版
66

@@ -30,12 +30,10 @@ http://datawhale.club/c/team-learning/IntroductionToPandas/12
3030

3131
### 交流群
3232

33-
<img src="source/_static/qun.jpg" width="25%"/>
34-
35-
### 推广
33+
关注Datawhale公众号,回复关键词“熊猫”获得二维码
3634

3735
<img src="source/_static/qrcode.jpeg" width="25%"/>
3836

3937
### LICENSE
4038

41-
<img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可
39+
<img alt="知识共享许可协议" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a><br />本作品采用<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/">知识共享署名-非商业性使用-相同方式共享 4.0 国际许可协议</a>进行许可

notebook/第三章 索引.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,7 +1314,7 @@
13141314
"\n",
13151315
"#### 【END】\n",
13161316
"\n",
1317-
"同时,在`query`中还注册了若干英语的字面用法,帮助提高可读性,例如:`or, and, or, is in, not in`。例如,筛选出男生中不是大一大二的学生:"
1317+
"同时,在`query`中还注册了若干英语的字面用法,帮助提高可读性,例如:`or, and, or, in, not in`。例如,筛选出男生中不是大一大二的学生:"
13181318
],
13191319
"cell_type": "markdown",
13201320
"metadata": {}
@@ -1354,7 +1354,7 @@
13541354
},
13551355
{
13561356
"source": [
1357-
"此外,在字符串中出现与列表的比较时,`==`和`!=`分别表示元素出现在列表和没有出现在列表,等价于`is in`和`not in`,例如查询所有大三和大四的学生:"
1357+
"此外,在字符串中出现与列表的比较时,`==`和`!=`分别表示元素出现在列表和没有出现在列表,等价于`in`和`not in`,例如查询所有大三和大四的学生:"
13581358
],
13591359
"cell_type": "markdown",
13601360
"metadata": {}

notebook/第十章 时序数据.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@
604604
},
605605
{
606606
"source": [
607-
"#### 【练一练\n",
607+
"#### 【NOTE\n",
608608
"前面提到了`datetime64[ns]`本质上可以理解为一个大整数,对于一个该类型的序列,可以使用`max, min, mean`,来取得最大时间戳、最小时间戳和“平均”时间戳。\n",
609609
"#### 【END】\n",
610610
"### 3. dt对象\n",

source/Content/ch3.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,14 +294,14 @@
294294

295295
对于含有空格的列名,需要使用 ```col name``` 的方式进行引用。
296296

297-
同时,在 ``query`` 中还注册了若干英语的字面用法,帮助提高可读性,例如: ``or, and, or, is in, not in`` 。例如,筛选出男生中不是大一大二的学生:
297+
同时,在 ``query`` 中还注册了若干英语的字面用法,帮助提高可读性,例如: ``or, and, or, in, not in`` 。例如,筛选出男生中不是大一大二的学生:
298298

299299
.. ipython:: python
300300
301301
df.query('(Grade not in ["Freshman", "Sophomore"]) and'
302302
'(Gender == "Male")').head()
303303
304-
此外,在字符串中出现与列表的比较时, ``==`` 和 ``!=`` 分别表示元素出现在列表和没有出现在列表,等价于 ``is in`` 和 ``not in``,例如查询所有大三和大四的学生:
304+
此外,在字符串中出现与列表的比较时, ``==`` 和 ``!=`` 分别表示元素出现在列表和没有出现在列表,等价于 ``in`` 和 ``not in``,例如查询所有大三和大四的学生:
305305

306306
.. ipython:: python
307307

0 commit comments

Comments
 (0)