Skip to content

Commit b2650b3

Browse files
committed
test(outputl/recent_us/1k): ran through all 1k trials
files used can be found in miscellaneous/1k_random_trials_from_trials_nct_numbers.csv. metrics for run present in python notebook found at output/metrics/metrics_analysis_updated.ipynb using the latest clinical_trial_Calls file
1 parent 9a19c17 commit b2650b3

File tree

2,009 files changed

+2540606
-66
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,009 files changed

+2540606
-66
lines changed

miscellaneous/1k_random_from_us_trials_nct_numbers.csv

Lines changed: 1001 additions & 0 deletions
Large diffs are not rendered by default.

miscellaneous/randomTrials.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import pandas as pd
2+
3+
# Read the CSV file
4+
df = pd.read_csv("us_trials_nct_numbers.csv")
5+
6+
# Sample 1000 random rows
7+
sampled_df = df.sample(n=1000, random_state=1)
8+
9+
# Save to new CSV
10+
sampled_df.to_csv("1k_random_from_us_trials_nct_numbers.csv", index=False)

0 commit comments

Comments
 (0)