#!/usr/bin/env python # coding: utf-8 # In[ ]: from pycaret.datasets import get_data get_data('index') # In[ ]: data = get_data('france') # In[ ]: from pycaret.arules import * # In[ ]: s = setup(data, 'InvoiceNo', item_id='Description') # In[ ]: a1 = create_model() # In[ ]: a1 # In[ ]: plot_model(a1) # In[ ]: plot_model(a1, plot='3d') # In[ ]: