fig = make_subplots(1,4)
cols = ['OrderValue', 'TransactionPrice', 'ProductPrice', 'ProductUnits']
for i, col in enumerate(cols):
fig.add_trace(
go.Histogram(x=silver_df.select(col).toPandas()[col]),
row=1, col=i+1
)
p =...
I am attempting to load an excel file that's located in a blob storage that I've mounted. In the first cell, when I use the dbutils.fs.ls command, I can see the file I want to load. However, when I try to actually load it, it can't find the file. It ...
I have a notebook functioning as a pipeline, where multiple notebooks are chained together. The issue I'm facing is that some of the notebooks are spark-optimized, others aren't, and what I want is to use 1 cluster for the former and another for the ...
Hi Kaniz, sorry for the incredibly late reply. My notifications for responses ended up in my spam folder! I ended up using ADF, but tried @Prabakar Ammeappin​ 's solution and that worked too!