alexandreczg
alexandreczg
Update upon reading databricks post on this. Changing the report config to: ```python profile = ProfileReport(df, title="Profiling Report", infer_dtypes=False, interactions=None, missing_diagrams=None, correlations={"auto": {"calculate": False}, "pearson": {"calculate": True}, "spearman": {"calculate": True}}...
Another error. Different CSV file, since I'm testing things out. But it seems if the files are not exactly pristine, the profiling is out of the window with errors that...
Hi @fabclmnt , thank you for getting back to me. I just ran it again, different file. But same outcome. This is my df schema and row count. As you...
Additionally, in your docs you point to this [Spark Example](https://github.com/ydataai/ydata-profiling/blob/master/examples/features/spark_example.py#L119) but what is funny is that you convert the spark DF to a pandas one... leads me to think that...
Thank @fabclmnt, I hear you. I'm gonna open an MR for the 2 bugs I found, which seem to have nothing to do with the Spark implementation, but more to...
Having the same issue. ``` Version: 1.87.2 (user setup) Commit: 863d2581ecda6849923a2118d93a088b0745d9d6 Date: 2024-03-08T15:20:17.278Z Electron: 27.3.2 ElectronBuildId: 26836302 Chromium: 118.0.5993.159 Node.js: 18.17.1 V8: 11.8.172.18-electron.0 OS: Windows_NT x64 10.0.19045 ```
@bassicallychris Without offering a solution using this library, when using `public.ecr.aws/lambda/python:3.12` I just use the [psycopg2-binary](https://pypi.org/project/psycopg2-binary/)
ah, that's good to know, haven't read that advisory. I guess gotta find a way to build it myself, seems like this lib here has lost support.
Hi @uriyyo , thanks for the quick action. I'm still facing an error with empty sequences. ``` Traceback (most recent call last): File "/workspaces/allegro-api/./allegro_api/util/routing.py", line 37, in wrapper return await...
it's just the default page with optional parameters ```python from typing import Any, Callable, Optional, Sequence, TypeVar from fastapi_pagination import Page from fastapi_pagination.api import apply_items_transformer, create_page from fastapi_pagination.bases import AbstractParams...