Skip to content

Commit 6dd379a

Browse files
authored
order id in smaller bounds (#260)
1 parent 35374ac commit 6dd379a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cluster_experiments/washover.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def random_timestamp(start_time, end_time):
163163
164164
def generate_data(start_time, end_time, treatment):
165165
data = {
166-
'order_id': np.random.randint(10**9, 10**10, size=num_rows),
166+
'order_id': np.random.randint(10**3, 10**4, size=num_rows),
167167
'city_code': 'VAL',
168168
'activation_time_local': [random_timestamp(start_time, end_time) for _ in range(num_rows)],
169169
'bin_start_time_local': start_time,

0 commit comments

Comments
 (0)