How to view datatype of an object

Hello,

How can I view the data type of an object?

I referred this link already.

For ex: I execute the below command

t1 = hl.variant_qc(mt2)

I understand it might be matrixTable but can’t I find it using a command?

hl.dtype(t1)

This throws error though. May I know whats the right way to find the datatype?

We currently don’t expose the type of a full matrix table, but you can see the types printed using t1.describe(). You can also grab the dtypes from each component:

t1.entry.dtype
t1.row.dtype
t1.col.dtype
t1.globals.dtype