-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from breimanntools/ranking
Ranking
- Loading branch information
Showing
3 changed files
with
90 additions
and
74 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,3 @@ | ||
""" | ||
This is a script for data integration (Clarissa Rienecker) | ||
""" | ||
import time | ||
import pandas as pd | ||
import numpy as np | ||
|
||
|
||
# Settings | ||
pd.set_option('expand_frame_repr', False) # Single line print for pd.Dataframe | ||
|
||
|
||
# I Helper Functions | ||
|
||
|
||
# II Main Functions | ||
|
||
|
||
# III Test/Caller Functions | ||
|
||
|
||
# IV Main | ||
def main(): | ||
t0 = time.time() | ||
|
||
t1 = time.time() | ||
print("Time:", t1 - t0) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |