Last active
January 12, 2021 03:30
-
-
Save chrisschopp/5aa04b87f38eec9a69e659f4436c4111 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| step_list = [ | |
| { | |
| "step_name": "STEP A", | |
| "process_time": sample_from_gamma_distribution(shape=4, scale=1.0), | |
| }, | |
| { | |
| "step_name": "STEP B", | |
| "process_time": sample_from_gamma_distribution(shape=4, scale=0.5), | |
| }, | |
| { | |
| "step_name": "STEP C", | |
| "process_time": sample_from_gamma_distribution(shape=4, scale=2.0), | |
| }, | |
| { | |
| "step_name": "STEP D", | |
| "process_time": sample_from_gamma_distribution(shape=4, scale=0.7), | |
| }, | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment