from pycaret.datasets import get_data get_data('index')
data = get_data('france')
from pycaret.arules import *
s = setup(data, 'InvoiceNo', item_id='Description')
a1 = create_model()
a1
plot_model(a1)
plot_model(a1, plot='3d')