As noted by @AmrAS1, there is a performance flaw in the current table.pprint() implementation:
text_type() or some other formatter is called on each individual numpy value, which causes numpy to call an array-to-string method internally for each value.
As noted by @AmrAS1, there is a performance flaw in the current
table.pprint()implementation:text_type()or some other formatter is called on each individual numpy value, which causes numpy to call an array-to-string method internally for each value.