Skip to content

DOC: Update of the 'getting started' pages in the sphinx section of the documentation #31156

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 51 commits into from
Feb 17, 2020
Merged
Changes from 1 commit
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
879ec63
Add new getting started tutorials to pandas
stijnvanhoey Nov 24, 2019
ead1445
Update links to raw data
stijnvanhoey Nov 25, 2019
aa46ef4
Move reference to top of title
stijnvanhoey Nov 25, 2019
351a523
Fix minor mistakes in text
stijnvanhoey Nov 25, 2019
6840905
Add missing reference to user guide section
stijnvanhoey Nov 25, 2019
bf19817
Add missing reference to user guide section
stijnvanhoey Nov 25, 2019
49858f9
Remove created artifacts
stijnvanhoey Nov 25, 2019
6ca5e59
Update link to raw data
stijnvanhoey Nov 25, 2019
a40fff8
Change title of text tutorial
stijnvanhoey Nov 25, 2019
89aa154
Change title of tutorial
stijnvanhoey Nov 25, 2019
2cff6f8
Update
stijnvanhoey Nov 25, 2019
3b12e77
Add draft index page of getting started
stijnvanhoey Nov 25, 2019
9819fb8
Add custom css for getting started pages
stijnvanhoey Nov 25, 2019
b2433a1
Add logos for getting started page
stijnvanhoey Nov 25, 2019
92e2b72
Fix link to logos
stijnvanhoey Nov 26, 2019
a2f2f81
Fix toctree on getting started page
stijnvanhoey Nov 26, 2019
abf7aec
Merge branch 'master' of github.com:pandas-dev/pandas into getting-st…
stijnvanhoey Jan 13, 2020
d45040c
Add pandas colors to color cycle
stijnvanhoey Jan 13, 2020
147551c
provide blueprint to intro tutorials
stijnvanhoey Jan 13, 2020
3dfa4cd
Add first update to general doc page
stijnvanhoey Jan 13, 2020
9f41347
Fix minor styling elements
stijnvanhoey Jan 13, 2020
80c9615
Add section 2 and 3 short intro
stijnvanhoey Jan 13, 2020
577d8e7
Merge remote-tracking branch 'upstream/master' into getting-started-p…
stijnvanhoey Jan 18, 2020
cd446f2
Add plot intro
stijnvanhoey Jan 20, 2020
3828749
Add dataframe calc intro
stijnvanhoey Jan 20, 2020
05f4811
Add groupby intro
stijnvanhoey Jan 20, 2020
809248d
Add reshape intro
stijnvanhoey Jan 20, 2020
55f64ef
Fix wrong collapseble
stijnvanhoey Jan 20, 2020
864ac3e
Fix typos
stijnvanhoey Jan 20, 2020
b7de411
Add combine table intro
stijnvanhoey Jan 20, 2020
1e777eb
Add intro textual and time series data
stijnvanhoey Jan 20, 2020
2177660
Reset index page
stijnvanhoey Jan 20, 2020
9534c75
Fix excel file read and removal order
stijnvanhoey Jan 20, 2020
6290de5
Fix title handling toctree main index page
stijnvanhoey Jan 20, 2020
79c6d69
Fix title handling toctree main index page
stijnvanhoey Jan 20, 2020
2c38cdc
Merge branch 'getting-started-pages' of github.com:stijnvanhoey/panda…
stijnvanhoey Jan 20, 2020
247e6a0
Remove trailing whitespaces in rst files
stijnvanhoey Jan 20, 2020
67639ff
Fix linting errors
stijnvanhoey Jan 20, 2020
19ba810
Fix linting issues of tutorials
stijnvanhoey Jan 20, 2020
e1aab58
Add schemas
stijnvanhoey Jan 20, 2020
a06eeb2
Fix trailing whitespaces in css
stijnvanhoey Jan 20, 2020
446df48
Fix linting issues
stijnvanhoey Jan 20, 2020
afa917a
Fix linting errors
stijnvanhoey Jan 20, 2020
08ad852
Remove pandas colors in plots
stijnvanhoey Jan 20, 2020
7f47a18
Add missing reference
stijnvanhoey Jan 20, 2020
9665264
Revision of tutorials on internal references
stijnvanhoey Jan 20, 2020
a4b2c8d
Add required data sets for intro tutorials
stijnvanhoey Jan 20, 2020
3459ff3
Fix missing figure
stijnvanhoey Jan 21, 2020
5a323ad
Ignore warnings
stijnvanhoey Jan 27, 2020
f3267a7
Merge branch 'master' into getting-started-pages
stijnvanhoey Jan 27, 2020
de23000
Fix relative path
stijnvanhoey Jan 27, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add combine table intro
  • Loading branch information
stijnvanhoey committed Jan 20, 2020
commit b7de411f532318cfcf613f152753308169fc0d7c
46 changes: 46 additions & 0 deletions doc/source/getting_started/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,52 @@ from long to wide format. With aggregations built-in, a pivot table is created w

:ref:`To user guide <reshaping>`

.. raw:: html

</span>
</div>
</div>
</div>
</div>

<div class="card tutorial-card">
<div class="card-header collapsed card-link" data-toggle="collapse" data-target="#collapseEight">
<div class="d-flex flex-row tutorial-card-header-1">
<div class="d-flex flex-row tutorial-card-header-2">
<button class="btn btn-dark btn-sm"></button>
How to combine data from multiple tables?
</div>
<span class="badge gs-badge-link">

:ref:`Straight to tutorial...<10min_tut_08_combine>`

.. raw:: html

</span>
</div>
</div>
<div id="collapseEight" class="collapse" data-parent="#accordion">
<div class="card-body">

Multiple tables can be concatenated both column wise as row wise and database-like join/merge operations are provided to combine multiple tables of data.

.. image:: ../../_static/schemas/08_concat_row.svg
:align: center

.. raw:: html

<div class="d-flex flex-row">
<span class="badge gs-badge-link">

:ref:`To introduction tutorial <10min_tut_08_combine>`

.. raw:: html

</span>
<span class="badge gs-badge-link">

:ref:`To user guide <reshaping>`

.. raw:: html

</span>
Expand Down