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
+4-1
Original file line number
Diff line number
Diff line change
@@ -216,13 +216,16 @@ Further, general questions and discussions can also take place on the [pydata ma
216
216
## Discussion and Development
217
217
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.
218
218
219
-
## Contributing to pandas
219
+
## Contributing to pandas [](https://www.codetriage.com/pandas-dev/pandas)
220
+
220
221
All contributions, bug reports, bug fixes, documentation improvements, enhancements and ideas are welcome.
221
222
222
223
A detailed overview on how to contribute can be found in the **[contributing guide.](https://pandas.pydata.org/pandas-docs/stable/contributing.html)**
223
224
224
225
If you are simply looking to start working with the pandas codebase, navigate to the [GitHub “issues” tab](https://github.com/pandas-dev/pandas/issues) and start looking through interesting issues. There are a number of issues listed under [Docs](https://github.com/pandas-dev/pandas/issues?labels=Docs&sort=updated&state=open) and [Difficulty Novice](https://github.com/pandas-dev/pandas/issues?q=is%3Aopen+is%3Aissue+label%3A%22Difficulty+Novice%22) where you could start out.
225
226
227
+
You can also triage issues which may include reproducing bug reports, or asking for vital information such as version numbers or reproduction instructions. If you would like to start triaging issues, one easy way to get started is to [subscribe to pandas on CodeTriage](https://www.codetriage.com/pandas-dev/pandas).
228
+
226
229
Or maybe through using pandas you have an idea of your own or are looking for something in the documentation and thinking ‘this can be improved’...you can do something about it!
227
230
228
231
Feel free to ask questions on the [mailing list](https://groups.google.com/forum/?fromgroups#!forum/pydata) or on [Gitter](https://gitter.im/pydata/pandas).
Copy file name to clipboardExpand all lines: doc/source/api.rst
+12-8
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,18 @@ API Reference
6
6
*************
7
7
8
8
This page gives an overview of all public pandas objects, functions and
9
-
methods. In general, all classes and functions exposed in the top-level
10
-
``pandas.*`` namespace are regarded as public.
9
+
methods. All classes and functions exposed in ``pandas.*`` namespace are public.
11
10
12
-
Further some of the subpackages are public, including ``pandas.errors``,
13
-
``pandas.plotting``, and ``pandas.testing``. Certain functions in the
14
-
``pandas.io`` and ``pandas.tseries`` submodules are public as well (those
15
-
mentioned in the documentation). Further, the ``pandas.api.types`` subpackage
16
-
holds some public functions related to data types in pandas.
11
+
Some subpackages are public which include ``pandas.errors``,
12
+
``pandas.plotting``, and ``pandas.testing``. Public functions in
13
+
``pandas.io`` and ``pandas.tseries`` submodules are mentioned in
14
+
the documentation. ``pandas.api.types`` subpackage holds some
15
+
public functions related to data types in pandas.
17
16
18
17
19
18
.. warning::
20
19
21
-
The ``pandas.core``, ``pandas.compat``, and ``pandas.util`` top-level modules are considered to be PRIVATE. Stability of functionality in those modules in not guaranteed.
20
+
The ``pandas.core``, ``pandas.compat``, and ``pandas.util`` top-level modules are PRIVATE. Stable functionality in such modules is not guaranteed.
Copy file name to clipboardExpand all lines: doc/source/basics.rst
+3-3
Original file line number
Diff line number
Diff line change
@@ -746,7 +746,7 @@ What if the function you wish to apply takes its data as, say, the second argume
746
746
In this case, provide ``pipe`` with a tuple of ``(callable, data_keyword)``.
747
747
``.pipe`` will route the ``DataFrame`` to the argument specified in the tuple.
748
748
749
-
For example, we can fit a regression using statsmodels. Their API expects a formula first and a ``DataFrame`` as the second argument, ``data``. We pass in the function, keyword pair ``(sm.poisson, 'data')`` to ``pipe``:
749
+
For example, we can fit a regression using statsmodels. Their API expects a formula first and a ``DataFrame`` as the second argument, ``data``. We pass in the function, keyword pair ``(sm.ols, 'data')`` to ``pipe``:
750
750
751
751
.. ipython:: python
752
752
@@ -756,7 +756,7 @@ For example, we can fit a regression using statsmodels. Their API expects a form
756
756
757
757
(bb.query('h > 0')
758
758
.assign(ln_h=lambdadf: np.log(df.h))
759
-
.pipe((sm.poisson, 'data'), 'hr ~ ln_h + year + g + C(lg)')
759
+
.pipe((sm.ols, 'data'), 'hr ~ ln_h + year + g + C(lg)')
760
760
.fit()
761
761
.summary()
762
762
)
@@ -2312,4 +2312,4 @@ All NumPy dtypes are subclasses of ``numpy.generic``:
2312
2312
.. note::
2313
2313
2314
2314
Pandas also defines the types ``category``, and ``datetime64[ns, tz]``, which are not integrated into the normal
2315
-
NumPy hierarchy and wont show up with the above function.
2315
+
NumPy hierarchy and won't show up with the above function.
0 commit comments