
pandas
@pandas_dev
Followers
31K
Following
157
Media
31
Statuses
270
Official account of the pandas project
Joined July 2018
We're happy to announce the release of #pandas 2.3.0. You can install it with `pip install pandas` or `conda install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible! The release notes can be found at:
1
8
66
RT @ThiagoTDotCom: For a second I thought this headline was about @pandas_dev and was like HELLSSS YEAH!. https://t….
0
2
0
We're happy to announce the release of #pandas 2.2.2. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible! The release notes can be found at:
2
16
96
We're happy to announce the release of #pandas 2.2.1. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible! The release notes can be found at:
0
9
80
RT @datapythonista: How fast can a CSV file be processed? I explain in detail comparing many options such as @pandas_dev, @duckdb, @DataPol….
0
35
0
We're happy to announce the release of #pandas 2.2.0. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible! The release notes can be found at:
2
24
141
We're happy to announce the release of #pandas 2.1.4. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible! . The release notes can be found at:
2
10
117
We're happy to announce the release of #pandas 2.1.2. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. Thanks to all contributors and sponsors who made this release possible!. The release notes can be found at:.
2
14
93
We're happy to announce the release of #pandas 2.1.1. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. You can find what's new in this version in the release notes. Thanks to all contributors and sponsors who made this release possible!.
2
23
143
Can #pandas be lazy?. There has been some discussion and a proof of concept about it recently.
2
10
120
RT @kylebarron2: @feliparagao I can't answer that: read the source code of every project you find interesting!. For me I was a @pandas_dev….
0
2
0
This is the (much more efficient) workaround which you're encouraged to use instead - nice one @CaioLCastro !. Use `concat` a single time outside the loop, rather than multiple times inside it.
@quant_arb we use a hybrid approach. Append to a list, and then concat. res = [].for x in itersomething:. res.append(calculations).pd.concat(res). df.append is gruesomely inefficient so maybe it is best to remove.
2
8
107
#pandas has two internal ways to store strings: NumPy and PyArrow (faster). pandas 3.0 will change the default and strings will use PyArrow when for example calling read_csv. You can get this change now in pandas 2.1 with:. pandas.options.future.infer_string = True.
2
35
352
We're happy to announce the release of #pandas 2.1.0. You can install it with `pip install pandas` or `mamba install -c conda-forge pandas`. You can find what's new in this version in the release notes. Thanks to all contributors and sponsors who made this release possible!.
7
78
436
Do you know how to extend #pandas with a fast language like #rustlang?. Core developer @datapythonista shows you how in this step by step tutorial at @EuroSciPy.
2
11
87
Do you want to learn more about #pandas 2.0 and beyond?. Core developers @jorisvdbossche and Richard Shadrach gave a talk about it at @EuroSciPy.
0
10
66
Artificial intelligence may not be so intelligent if it uses pandas .apply() when not strictly necessary. Our operations are usually vectorized (very fast), .apply() is usually not, so it may be very slow. Avoid loops and apply if a pandas operation exists for what you need.
15
65
899