You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/user_guide/index.rst
+37Lines changed: 37 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,43 @@ For a high level summary of the pandas fundamentals, see :ref:`dsintro` and :ref
17
17
Further information on any specific method can be obtained in the
18
18
:ref:`api`.
19
19
20
+
How to read these guides
21
+
------------------------
22
+
In these guides you will see input code inside code blocks such as:
23
+
24
+
::
25
+
26
+
import pandas as pd
27
+
pd.DataFrame({'A': [1, 2, 3]})
28
+
29
+
30
+
or:
31
+
32
+
.. ipython:: python
33
+
34
+
import pandas as pd
35
+
pd.DataFrame({'A': [1, 2, 3]})
36
+
37
+
The first block is a standard python input, while in the second the ``In [1]:`` indicates the input is inside a `notebook <https://jupyter.org>`__. In Jupyter Notebooks the last line is printed and plots are shown inline.
38
+
39
+
For example:
40
+
41
+
.. ipython:: python
42
+
43
+
a =1
44
+
a
45
+
is equivalent to:
46
+
47
+
::
48
+
49
+
a = 1
50
+
print(a)
51
+
52
+
53
+
54
+
Guides
55
+
-------
56
+
20
57
.. If you update this toctree, also update the manual toctree in the
0 commit comments