Created
June 23, 2023 09:09
-
-
Save zainabnazari/b2c98b44766ccbd49d35380c2a643edd to your computer and use it in GitHub Desktop.
from ppmi
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
%%time | |
dfSave = pd.DataFrame() | |
for i in range(len(bl_files)): | |
print(i) | |
df = pd.read_csv(path1/bl_files.iloc[i][0],skiprows=1,delimiter='\t') | |
dfSave[bl_list[i]] = df.iloc[:,-1:] | |
del df |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment