Hi,

In Pytest you want to ensure that the composed DF has the correct return.

Example

    df2 = house_df. \
        select( \
        F.date_format('datetaken', 'yyyy').cast("Integer").alias('YEAR') \
        , 'REGIONNAME' \
        ,
round(F.avg('averageprice').over(wSpecY)).alias('AVGPRICEPERYEAR') \
        ,
round(F.avg('flatprice').over(wSpecY)).alias('AVGFLATPRICEPERYEAR') \
        ,
round(F.avg('TerracedPrice').over(wSpecY)).alias('AVGTERRACEDPRICEPERYEAR')
\
        ,
round(F.avg('SemiDetachedPrice').over(wSpecY)).alias('AVGSDPRICEPRICEPERYEAR')
\
        ,
round(F.avg('DetachedPrice').over(wSpecY)).alias('AVGDETACHEDPRICEPERYEAR')).
\
        distinct().orderBy('datetaken', asending=True)

Will that be enough to run just this command

  assert not []

I believe that may be flawed because any error will be assumed to be NOT
NULL?

Thanks



LinkedIn * 
https://www.linkedin.com/profile/view?id=AAEAAAAWh2gBxianrbJd6zP6AcPCCdOABUrV8Pw
<https://www.linkedin.com/profile/view?id=AAEAAAAWh2gBxianrbJd6zP6AcPCCdOABUrV8Pw>*





*Disclaimer:* Use it at your own risk. Any and all responsibility for any
loss, damage or destruction of data or any other property which may arise
from relying on this email's technical content is explicitly disclaimed.
The author will in no case be liable for any monetary damages arising from
such loss, damage or destruction.

Reply via email to