I want to list every built-in primitive in Featuretool without skip("..."). I know I can use list_primitives() but I don't know how to show everything.
import featuretools as ft
print(ft.primitives.list_primitives()) #show list of primitives with skip
I tried .set_option('display.max_rows', None) but it didn't work.