Marc Garcia
Marc Garcia
My understanding when reading [this doc](https://www.debian.org/doc/manuals/maint-guide/dother.en.html#conffiles) linked in cargo-deb documentation for `conf-files` is that anything under `/etc` will automatically not be overwritten when a package is upgraded. But given this...
I'm working on using this theme for the [pandas](http://pandas.pydata.org/) documentation, and I'm getting something which seems wrong in the sidebar (see attachment).  The links to the previous and next...
@tswast I'd like to know your opinion on this. Seems to me, that the Ibis SQL compiler (i.e. `ibis/backends/base/sql/compiler`) is basically reinventing SQLAlchemy. SQLAlchemy is great at generating an SQL...
The Bigquery build seems to be finally working correctly, but some of the tests are failing: ``` FAILED ibis/tests/all/test_aggregation.py::test_reduction_ops[BigQuery-no_cond-covar] FAILED ibis/tests/all/test_aggregation.py::test_reduction_ops[BigQuery-is_in-covar] FAILED ibis/tests/all/test_aggregation.py::test_topk_filter_op[BigQuery-string_col_filter_top3] FAILED ibis/tests/all/test_array.py::test_array_concat[BigQuery] - ValueError... FAILED ibis/tests/all/test_generic.py::test_fillna_nullif[BigQuery-expr2-None] FAILED...
You may want to run the Ibis tests for the backends (i.e. `ibis/backends/tests`). I had a quick look and I don't think you are. I'm implementing it for ibis-omniscidb, should...
In #10, it's been discussed that it would be convenient if the dataframe API allows method chaining. For example: ```python import pandas (pandas.read_csv('countries.csv') .rename(columns={'name': 'country'}) .assign(area_km2=lambda df: df['area_m2'].astype(float) / 100)...
This is a follow up of the discussions in: - https://github.com/pydata-apis/dataframe-api/issues/6#issuecomment-639754182 - #11 (question: `pandas has parameters (bool_only, numeric_only) to let only apply the operation over columns of certain types...
I think there is consensus (correct me if I'm wrong), on having a 2-D structure where (at least) columns are labelled, and where a whole column share a type. More...
What data types should be part of the standard? For the array API, the types have been discussed [here](https://github.com/data-apis/array-api/issues/15). A good reference for data types for data frames is the...
This is a first version of the analysis of pandas usage in Kaggle notebooks. We've fetched Python notebooks from [Kaggle](https://www.kaggle.com/notebooks?sortBy=voteCount&group=everyone&pageSize=20&language=Python) and we run them using [record_api](https://github.com/pydata-apis/python-record-api) to analyze the number...