Giacomo Caria
Giacomo Caria
```python import dask.dataframe as dkf import pandas as pd import numpy as np import xgboost as xgb x = dkf.from_pandas(pd.DataFrame(np.random.rand(10,50), columns=[str(i) for i in range(50)]), npartitions=1) y = dkf.from_pandas(pd.DataFrame(np.random.rand(10), columns=['y']),...
Hi, it would be really helpful to have a `style` argument (`Grouping variable that will produce points with different markers`) similar to what done in `seaborn` ([example](https://seaborn.pydata.org/generated/seaborn.scatterplot.html))
Hi there, this is my first time trying `scikit-optimize` and I have followed the [minimal example on your webpage](https://scikit-optimize.github.io/stable/auto_examples/sklearn-gridsearchcv-replacement.html), with the only modification of using `joblib` to distribute jobs to...
I suspect this is closely related to #1055, but at least now the error message is much more useful. The setup we're using is what @LewisJarrod describes [here](https://github.com/Toblerity/Fiona/issues/1055#issuecomment-1074232348). Also in...
I am getting this error inside a docker container built with the only command `FROM pangeo/pangeo-notebook:latest`, I hope this helps defining the environment, but I'm happy to provide more explicit...
In `xarray.open_dataset`, the optional arguments `mask_and_scale` defaults to `True` [(doc)](https://xarray.pydata.org/en/v0.12.3/generated/xarray.open_dataset.html), which is what I expect almost any user prefers. I was surprised to find out that in `rioxarray.open_rasterio` the same...
My setup: netCDF4 version: 1.5.3 Python version: 3.8.3 OS: Scientific Linux release 6.6 (work server, so can't change it) Everything works fine when I use the Python interpreter (which makes...
Closes #2056. Currently, the logic added to find a common CRS among several `GeoDataFrame`s is overwritten partially by: https://github.com/gcaria/geopandas/blob/dff88d9c2100b72e27e8626c9d1c0c9948b6e707/geopandas/geodataframe.py#L1410-L1414 Just as a quick check, adding the commented lines would make...
Closes #1988, closes #1208. I've set the default to `False` so this does not surprise anybody in the future. Probably an error or at least a warning should be raised...
Hi, thanks for your work, this is amazing ! A small feedback: I have noticed the latex equations are not converted, that is they stay as plain latex language. I've...