Marc Garcia
Marc Garcia
I think it would make things easier and more standard if you use a pandas accessor instead. ```python import pandas @pandas.api.extensions.register_dataframe_accessor('parallel') class ClassWithYourMethods: pass ``` Then, the user can use:...
xref #47525 In our [DataFrame.to_excel](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.to_excel.html) documentation we don't have any mention to [Styler.to_excel](https://pandas.pydata.org/docs/reference/api/pandas.io.formats.style.Styler.to_excel.html?highlight=to_excel#pandas.io.formats.style.Styler.to_excel) which is very relevant. Users checking the documentation on how to export a `DataFrame` to Excel should...
At the moment we've got different footer notes for the website and the docs, and we're discussing adding our hosting sponsor there. Probably worth agreeing what footer we want to...
In #47931 @logankilpatrick suggested that we add support for GitHub sponsors to pandas. I don't know much about it, but seems like we've got it enabled, but just providing links...
All backends seem to provide `list_tables`, but with a variety of signatures. I propose to standardize all them to the same, so things are simpler and clearer, and code can...
I think there is a difference between: - A pandas backend that is able to operate a pandas dataframe based on Ibis expressions - The functionality to convert a database...
The current API to interact with databases is a bit cumbersome in my opinion. I think we should simplify it. To set a database at connection, list databases, and use...