Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Different types for Fundamental

How can I differentiate between the Fundamentals with datetime properties, float and object.
When I look at the type I get something like this class'zipline. pipeline . data.dataset. BoundColumn'
how do I access the datetime64 from Fundamentals.fixed_maturities_trading_asof_date::datetime64[ns]


for column in Fundamentals.columns:  
                    #print(column)  
    start=1+start  
    next = str(column)  
    #print(type(column))  
    print(column)  

    if start>100:  
        break  
                #print('{}:{},').format(next,column)

    Blank=Fundamentals.cash_return.latest

3 responses

for anyone interested

column.dtype()

If one enters

help(Fundamentals)

in a notebook cell, it will list all the available factors and classifiers. It also displays the data type of each.

THank you Dan