Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Period_prior_to_index function #35

Open
wants to merge 25 commits into
base: dev
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
debugging
  • Loading branch information
Jay-sanjay committed Jun 8, 2024
commit a3e1c10799c6869d9efa77c4b0b151fdb56dc1a3
7 changes: 6 additions & 1 deletion test/Data-Preprocessing/preprocessing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@ using Test

@test test_drug_exposure_start_date == result.drug_exposure_start_date[1:4]
@test test_drug_exposure_ids == result.drug_exposure_id[1:4]


MakeTables(sqlite_conn, :sqlite, "main")
test_cohort_ids = [1.0, 1.0, 1.0, 1.0]
# test_df2 = DataFrame(cohort_definition_id = test_cohort_definition_id, cohort_id = test_cohort_ids)
df = Dummy2(test_cohort_ids, sqlite_conn)
first(df, 5)
end


Expand Down
Loading