This file contains hidden or 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
# From TXT files, we are going to create a full combined data | |
# If the file does not exist, we create the file in write mode (w) | |
if not os.path.isfile(r'kaggle/working/fullcombined_data.csv'): | |
# Process start time | |
start = datetime.now() | |
# Path and files that is going to be combined to a full file | |
files = [r'kaggle/input/netflix-prize-data/combined_data_1.txt', | |
r'kaggle/input/netflix-prize-data/combined_data_2.txt', | |
r'kaggle/input/netflix-prize-data/combined_data_3.txt', |