I'm trying to generate statistics (among other things) for a list of bignums, but it doesn't work.
import pandas as pd
# example numbers
dataset = pd.DataFrame(data=[2 ** 64, 2 ** 65, 2 ** 66], columns=['bignum'])
print(dataset.describe())
It prints the following, but not the statistics I wanted, like standard deviation, mean, etc, like it does with lists of smaller numbers.
bignum
count 3
unique 3
top 36893488147419103232
freq 1
I'd like it to say something like this:
bignum
mean ...
std ...
min ...
25% ...
50% ...
75% ...
max ...