Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
big-data/main.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13 lines (9 sloc)
487 Bytes
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
import src.data as data_class | |
import time | |
def main(): | |
data = data_class.Data('files/combined-data.nc') # Instantiates data class passing dataset as attribute | |
data.create_data_arrays() # Creates necessary data arrays | |
data.parallel_process() # Runs the bootstrap method that performs all calculations | |
if __name__ == '__main__': | |
main() # Runs main function created above | |
print('Exiting successfully...') |