I was fascinated by the debugging and visualization library pixiedust developed by IBM and wanted to try it on gooogle colab.
I did following:
!pip install pixiedust
# matplotlib, seaborn, jinja2 are already installed in gcolab.
Display chart does not work
import pixiedust
df = pixiedust.sampleData() # this shows the dataframe
display(df) # This does not do anything.
Debugging also does not work
import pixiedust
# Next cell
%%pixie_debugger
import random
def find_max (values):
max = 0
for val in values:
if val > max:
max = val
return max
find_max(random.sample(range(100), 10))
# This gives nothing.
Is it possible to use pixiedust in Google Colab or it is only availabe in IMB clouds?