Skip to content

Commit

Permalink
update for 1b78f89
Browse files Browse the repository at this point in the history
  • Loading branch information
rickiepark committed Feb 18, 2021
1 parent 23d6eaf commit d51f782
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tools_pandas.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9849,7 +9849,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"예상할 수 있듯이 `read_json`, `read_html`, `read_excel` 함수도 있습니다. 인터넷에서 데이터를 바로 읽을 수도 있습니다. 예를 들어 [simplemaps.com](http://simplemaps.com/)에서 U.S. 도시를 로드해 보죠:"
"예상할 수 있듯이 `read_json`, `read_html`, `read_excel` 함수도 있습니다. 인터넷에서 데이터를 바로 읽을 수도 있습니다. 예를 들어 깃허브에서 1,000개의 U.S. 도시를 로드해 보죠:"
]
},
{
Expand All @@ -9875,7 +9875,7 @@
"source": [
"us_cities = None\n",
"try:\n",
" csv_url = \"http://simplemaps.com/files/cities.csv\"\n",
" csv_url = \"https://raw.githubusercontent.com/plotly/datasets/master/us-cities-top-1k.csv\"\n",
" us_cities = pd.read_csv(csv_url, index_col=0)\n",
" us_cities = us_cities.head()\n",
"except IOError as e:\n",
Expand Down Expand Up @@ -11815,7 +11815,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "TensorFlow 2.3 on Python 3.6 (CUDA 10.1)",
"display_name": "TensorFlow 2.4 on Python 3.8 & CUDA 11.1",
"language": "python",
"name": "python3"
},
Expand All @@ -11829,7 +11829,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.9"
"version": "3.8.7"
},
"toc": {
"toc_cell": false,
Expand Down

0 comments on commit d51f782

Please sign in to comment.