Skip to content

Commit f993bd0

Browse files
committed
update readme & add go analysis tutorail
1 parent 564ed98 commit f993bd0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tutorail/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
## CodeQuery使用教程
22

3-
### 使用Github codespace 来体验CodeQuery分析能力
3+
### 使用Github Codespaces 来体验CodeQuery分析能力
44

55
#### 步骤
66

77
- 在项目主页切换到目标分支
8-
- 创建Codespace,依次点击 Code -> Codespaces,在当前分支创建一个 Codespace
9-
- 创建后,打开 Codespace,加载完成后,切换至项目tutorail/notebook 目录下
8+
- 创建 Codespaces,依次点击 Code -> Codespaces,在当前分支创建一个 Codespaces
9+
- 创建后,打开该 Codespaces,加载完成后,切换至项目tutorail/notebook 目录下
1010
- 选择示例下的 jupyter notebook 分析教程,即可开始体验
1111

1212
#### 注意

tutorail/notebook/go_analysis.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@
141141
"metadata": {},
142142
"outputs": [],
143143
"source": [
144-
"%%save_to ./out/query.json"
144+
"%%save_to ./query.json"
145145
]
146146
},
147147
{
@@ -167,7 +167,7 @@
167167
"source": [
168168
"%%python\n",
169169
"import pandas as pd\n",
170-
"data = pd.read_json('./out/query.json')\n",
170+
"data = pd.read_json('query.json')\n",
171171
"data.sort_values('cmplx', ascending=False, inplace=True)\n",
172172
"top_10 = data.head(10)\n",
173173
"print(top_10)"

0 commit comments

Comments
 (0)