-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extraction of Connectivity Search PathCount table (#4)
* initial problem solving * linting * updates for linting and functionality * Update get_table.ipynb * Update README.md
- Loading branch information
Showing
10 changed files
with
817 additions
and
23 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
11 changes: 11 additions & 0 deletions
11
src/connectivity_search_PathCount_table/create_table.public.dj_hetmech_app_pathcount.sql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
CREATE TABLE public.dj_hetmech_app_pathcount ( | ||
id integer NOT NULL, | ||
path_count integer NOT NULL, | ||
dwpc double precision NOT NULL, | ||
p_value double precision, | ||
metapath_id character varying(20) NOT NULL, | ||
source_id integer NOT NULL, | ||
target_id integer NOT NULL, | ||
dgp_id integer NOT NULL, | ||
CONSTRAINT dj_hetmech_app_pathcount_path_count_check CHECK ((path_count >= 0)) | ||
); |
Oops, something went wrong.