I am trying to use holoveiws in an MS Fabric Jupyter notebook on a simple example that was provided in documentation.
xs = range(-10,11)
ys = [100-x**2 for x in xs]
curve = hv.Curve((xs, ys))
curve
but i am not getting any display although the cell executed with no errors.
The test that i was doing comes after a failed attempt to plot a Dataset defined as:
datasets=hv.Dataset(pd_daily_summary_df,kdims=[‘DATE’, ‘LP’, ‘TYPE’, ‘QUANTITY’, ‘SOURCE’, ‘TICKER’],vdims=[‘FIRST_PRICE’,
‘LAST_PRICE’, ‘MIN_PRICE’, ‘MAX_PRICE’, ‘AVG_PRICE’])
layout=(datasets.select(LP=‘AGG’,TICKER=‘XAU/USD’).to(hv.Curve,‘DATE’,‘AVG_PRICE’))
layout.opts(opts.Curve(width=600, height=400))
but always with no luck.