Sid Shetty
07/24/2023, 2:13 PMdatajoely
07/24/2023, 2:28 PMPartitionedDataSet
Sid Shetty
07/24/2023, 2:30 PMdatajoely
07/25/2023, 12:12 PMrange(1,1000000000000)
you get a generator, i.e. a variable that if you call list(range(1,1000000000000))
you will actually get python to return you get Python to generate all numbers between 1 and an Trillion. This is exactly how we do the PartitionedDataSet i.e. only load the data when the user needs it.Sid Shetty
07/25/2023, 12:21 PMdatajoely
07/25/2023, 12:22 PM