-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
/
Copy pathindex.rst.template
131 lines (102 loc) · 4.42 KB
/
index.rst.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
:notoc:
.. pandas documentation master file, created by
.. module:: pandas
********************
pandas documentation
********************
**Date**: |today| **Version**: |version|
**Download documentation**: `PDF Version <pandas.pdf>`__ | `Zipped HTML <pandas.zip>`__
**Useful links**:
`Binary Installers <https://pypi.org/project/pandas>`__ |
`Source Repository <https://github.com/pandas-dev/pandas>`__ |
`Issues & Ideas <https://github.com/pandas-dev/pandas/issues>`__ |
`Q&A Support <https://stackoverflow.com/questions/tagged/pandas>`__ |
`Mailing List <https://groups.google.com/g/pydata>`__
:mod:`pandas` is an open source, BSD-licensed library providing high-performance,
easy-to-use data structures and data analysis tools for the `Python <https://www.python.org/>`__
programming language.
.. raw:: html
<div class="container">
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
<div class="card text-center intro-card shadow">
<img src="_static/index_getting_started.svg" class="card-img-top" alt="getting started with pandas action icon" height="52">
<div class="card-body flex-fill">
<h5 class="card-title">Getting started</h5>
<p class="card-text">New to <em>pandas</em>? Check out the getting started guides. They
contain an introduction to <em>pandas'</em> main concepts and links to additional tutorials.</p>
</div>
.. container:: custom-button
:ref:`To the getting started guides<getting_started>`
.. raw:: html
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
<div class="card text-center intro-card shadow">
<img src="_static/index_user_guide.svg" class="card-img-top" alt="pandas user guide action icon" height="52">
<div class="card-body flex-fill">
<h5 class="card-title">User guide</h5>
<p class="card-text">The user guide provides in-depth information on the
key concepts of pandas with useful background information and explanation.</p>
</div>
.. container:: custom-button
:ref:`To the user guide<user_guide>`
.. raw:: html
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
<div class="card text-center intro-card shadow">
<img src="_static/index_api.svg" class="card-img-top" alt="api of pandas action icon" height="52">
<div class="card-body flex-fill">
<h5 class="card-title">API reference</h5>
<p class="card-text">The reference guide contains a detailed description of
the pandas API. The reference describes how the methods work and which parameters can
be used. It assumes that you have an understanding of the key concepts.</p>
</div>
.. container:: custom-button
:ref:`To the reference guide<api>`
.. raw:: html
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12 d-flex">
<div class="card text-center intro-card shadow">
<img src="_static/index_contribute.svg" class="card-img-top" alt="contribute to pandas action icon" height="52">
<div class="card-body flex-fill">
<h5 class="card-title">Developer guide</h5>
<p class="card-text">Saw a typo in the documentation? Want to improve
existing functionalities? The contributing guidelines will guide
you through the process of improving pandas.</p>
</div>
.. container:: custom-button
:ref:`To the development guide<development>`
.. raw:: html
</div>
</div>
</div>
</div>
{% if single_doc and single_doc.endswith('.rst') -%}
.. toctree::
:maxdepth: 3
:titlesonly:
{{ single_doc[:-4] }}
{% elif single_doc %}
.. autosummary::
:toctree: reference/api/
{{ single_doc }}
{% else -%}
.. toctree::
:maxdepth: 3
:hidden:
:titlesonly:
{% endif %}
{% if not single_doc %}
getting_started/index
user_guide/index
{% endif -%}
{% if include_api -%}
reference/index
{% endif -%}
{% if not single_doc -%}
development/index
whatsnew/index
{% endif %}