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-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
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.
D-Tale is a lightweight web client for visualizing pandas data structures. It
160
+
provides a rich spreadsheet-style grid which acts as a wrapper for a lot of
161
+
pandas functionality (query, sort, describe, corr...) so users can quickly
162
+
manipulate their data. There is also an interactive chart-builder using Plotly
163
+
Dash allowing users to build nice portable visualizations. D-Tale can be
164
+
invoked with the following command
165
+
166
+
.. code:: python
167
+
168
+
import dtale; dtale.show(df)
169
+
170
+
D-Tale integrates seamlessly with jupyter notebooks, python terminals, kaggle
171
+
& Google Colab. Here are some demos of the `grid <http://alphatechadmin.pythonanywhere.com/>`__
172
+
and `chart-builder <http://alphatechadmin.pythonanywhere.com/charts/4?chart_type=surface&query=&x=date&z=Col0&agg=raw&cpg=false&y=%5B%22security_id%22%5D>`__.
156
173
157
174
.. _ecosystem.ide:
158
175
@@ -303,6 +320,20 @@ provide a pandas-like and pandas-compatible toolkit for analytics on multi-
303
320
dimensional arrays, rather than the tabular data for which pandas excels.
0 commit comments