Hi Team,
I am using the below command in Jupyter notebook to retrieve an particular hour report. But, it always provides me with full day report as output. Any idea what I am missing?
report = suite.report\
.element("evarXX")\
.metric("visitors")\
.range('2020-08-26T17:00:00','2020-08-26T17:59:59')\
.granularity('hour')\
.run()
I am expecting an output, only for the 17th hour. But it returns me the whole day data. Any guidance appreciated.