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: README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@
20
20
21
21
## What is it?
22
22
23
-
**pandas** is a Python package providing fast, flexible, and expressive data
23
+
**pandas** is a Python package that provides fast, flexible, and expressive data
24
24
structures designed to make working with "relational" or "labeled" data both
25
25
easy and intuitive. It aims to be the fundamental high-level building block for
26
26
doing practical, **real world** data analysis in Python. Additionally, it has
@@ -154,11 +154,11 @@ For usage questions, the best place to go to is [StackOverflow](https://stackove
154
154
Further, general questions and discussions can also take place on the [pydata mailing list](https://groups.google.com/forum/?fromgroups#!forum/pydata).
155
155
156
156
## Discussion and Development
157
-
Most development discussion is taking place on github in this repo. Further, the [pandas-dev mailing list](https://mail.python.org/mailman/listinfo/pandas-dev) can also be used for specialized discussions or design issues, and a [Gitter channel](https://gitter.im/pydata/pandas) is available for quick development related questions.
157
+
Most development discussions take place on github in this repo. Further, the [pandas-dev mailing list](https://mail.python.org/mailman/listinfo/pandas-dev) can also be used for specialized discussions or design issues, and a [Gitter channel](https://gitter.im/pydata/pandas) is available for quick development related questions.
158
158
159
159
## Contributing to pandas [](https://www.codetriage.com/pandas-dev/pandas)
160
160
161
-
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
161
+
All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.
162
162
163
163
A detailed overview on how to contribute can be found in the **[contributing guide](https://pandas.pydata.org/docs/dev/development/contributing.html)**. There is also an [overview](.github/CONTRIBUTING.md) on GitHub.
Copy file name to clipboardExpand all lines: doc/source/getting_started/intro_tutorials/01_table_oriented.rst
+2-2
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ I want to store passenger data of the Titanic. For a number of passengers, I kno
51
51
df
52
52
53
53
To manually store data in a table, create a ``DataFrame``. When using a Python dictionary of lists, the dictionary keys will be used as column headers and
54
-
the values in each list as rows of the ``DataFrame``.
54
+
the values in each list as columns of the ``DataFrame``.
55
55
56
56
.. raw:: html
57
57
@@ -215,4 +215,4 @@ A more extended explanation to ``DataFrame`` and ``Series`` is provided in the :
0 commit comments