Skip to content
This repository was archived by the owner on Aug 6, 2025. It is now read-only.

Commit 7d777d5

Browse files
committed
pandas-intro change
1 parent 6222065 commit 7d777d5

File tree

4 files changed

+1
-213
lines changed

4 files changed

+1
-213
lines changed

book/_toc.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,6 @@ parts:
7979
- file: pandas/intro.md
8080
title: Pandas
8181
sections:
82-
- file: pandas/introduction.ipynb
83-
title: "Introduction"
8482
- file: pandas/series.ipynb
8583
title: "Pandas Series"
8684
- file: pandas/frame.ipynb

book/numpy/introduction.ipynb

Lines changed: 0 additions & 156 deletions
This file was deleted.

book/pandas/intro.md

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

3-
This chapter ..
4-
% a short overview for this chapter
5-
3+
With the standard Python functions and the <b><code>numpy</code></b> library, you already have access to powerful tools to process data. However, you'll find that organizing data using them might still be confusing and messy... so let us introduce you to <b><code>pandas</code></b>: a Python library specialized in data organization. Its functions are simple to use, and they achieve a lot. Furthermore, <b><code>pandas</code></b> was built on top of the <b><code>numpy</code></b> library, using some of their functions and data structures. This makes <b><code>pandas</code></b> fast. The <b><code>pandas</code></b> library is often used in Data Science and Machine Learning to organize data that are used as input in other functions, of other libraries. For example, you store and organize an Excel file using <b><code>pandas</code></b> data structures, apply statistical analysis using <b><code>SciPy</code></b>, and then plot the result using <b><code>matplotlib</code></b>.<br><br> In this section, we'll introduce you to the basic <b><code>pandas</code></b> data structures: the <b><code>Series</code></b> and <b><code>DataFrame</code></b> objects; and how to store data in them. In <b><code>pandas</code></b>, a <b><code>Series</code></b> represents a list, and <b><code>DataFrame</code></b> represents a table.

book/pandas/introduction.ipynb

Lines changed: 0 additions & 52 deletions
This file was deleted.

0 commit comments

Comments
 (0)