rust - Is there a way to print a nicely formatted table to the console? -
is there way print nice table console using rust language? in python world, create numpy array or pandas dataframe hold data values , output them console, looking this:
f1 f2 f3 m1 m2 m3 0 14.000000 3.000000 19.000000 37.000000 28.000000 239.000000 1 14.279622 4.046231 19.202175 36.720378 26.228172 238.797825 2 14.530399 5.098601 19.413289 36.469601 24.454171 238.586711 3 14.755486 6.153470 19.633712 36.244514 22.681652 238.366288
is there way in rust arbitrary precision?
i have looked @ vector , array datatypes. while multidimensional arrays possible in rust, have not seen print nicely formatted tables 1 above.
Comments
Post a Comment