Skip to content

Draft: Resolve "Create column sleeping and clean data"

Elza Shakirova requested to merge 20-create-column-sleeping-and-clean-data into main

Need to change the function "hour" to Generate data every 15 minutes instead of 30

def hour(s): if s % 1 != 0: s = str(s - 0.5)[:-2] if (len(str(s))) == 1: s = '0' + str(s) return str(s) + ':15' if len(str(s)) == 1: return '0' + str(s) + ':00' return str(s) + ':00'

Merge request reports