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.
By default, list_primitives() function only displays the first 20 primitives and uses the "..." to display others. You can modify the pandas options to show all the rows without truncation. Example: