If I have a pandas.DataFrame
in python I can inspect the data types for the DataFrame with the dtypes
attribute. How can I do the same with a Matlab table? I poked around the Properties
mechanism but didn't find anything type oriented there.
Matlab equivalent of Python Panda's dtypes
4.3k Views Asked by jxramos At
2
There are 2 best solutions below
2

Looks like one way to get this information (while unfortunately getting a bunch of other things) is with a simple call to summary.
Here's some sample output
K>> summary(t)
Variables:
var1: 2966185×1 double
Units: sec
Values:
Min 56.207
Median 7466.7
Max 14878
var2: 2966185×4 double
Values:
var2_1 var2_2 var2_3 var2_4
________ __________ ________ ________
Min -0.99966 -0.99901 -0.99887 -0.99998
Median 0.01644 -0.0044018 0.12838 0.1564
Max 0.98176 0.96433 0.99998 1
var3: 2966185×3 double
Units: g
Values:
var3_1 var3_2 var3_3
__________ _________ __________
Min -2.779 -3.1366 -3.6089
Median -0.0002124 -0.002221 -0.0020435
Max 3.7874 5.9634 2.8443
var4: 2966185×1 double
Values:
Min 0
Median 5
Max 5
It appears that you can call the following:
where
t
is your table. I am referencing the answer here.Further documentation on
varfun
is available here as well.