6 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
2
answers
70
views
Issues getting PyCaret/Fugue to work with DASK Backend
I am trying to use PyCaret with Fugue for a DASK backend and I'm running into an issue.
Using the following:
pycaret 3.3.2
fugue 0.9.1
dask ...
0
votes
0
answers
22
views
Issues getting PyCaret/Fugue to work with Spark Backend
I am trying to use PyCaret with Fugue for a spark backend and I'm running into some issues with getting everything to work properly.
I can run a PyCaret experiment using spark as a back end if my ...
0
votes
1
answer
1k
views
How to install Python libraries in Azure Synapse Notebook Spark Cluster (pyspark)
I am facing a problem with Python libraries installation in Azure Synapse Notebook. I have tried installing two libraries, holidays and fugue using %pip... and !pip... I have tried even with .WHL ...
0
votes
1
answer
113
views
How can I load a databricks table into a databricks notebook using Fugue?
I am testing the Fugue library to compare its benefits compared to purely PySpark, for which I would like to be able to test different operations strictly with Fugue.
Although I could already use ...
0
votes
1
answer
118
views
How can I sample and show parquet files using fugue?
Say I have this file s3://some/path/some_partiitoned_data.parquet.
I would like to sample a given count of rows and display them nicely, possibly in a jupyter notebook.
some_partiitoned_data.parquet ...
0
votes
1
answer
126
views
How can I union and repartition DataFrames stored in parquet files using fugue?
Say I have these 2 parquet files
import pandas as pd
pd.DataFrame([[0]], columns=["a"]).to_parquet("/tmp/1.parquet")
pd.DataFrame([[0],[2]], columns=["a"]).to_parquet(&...