Browse Source

업데이트 'README.md'

Hio-Been Han 2 years ago
parent
commit
320c82dd44
1 changed files with 4 additions and 3 deletions
  1. 4 3
      README.md

+ 4 - 3
README.md

@@ -100,8 +100,9 @@ After downloading dataset, you can import EEG dataset using the function load_da
 # File loading demo
 
 """ Important notice: Change these directories to fit your local environment """
-bids_path = 'D:/SciData_Bowon_Sleep/data_BIDS_0812/'
-save_directory = 'D:/output_ipynb/'; if not os.path.isdir( save_directory ): os.mkdir( save_directory )
+bids_path = YOUR_OWN_PATH_1 # Ex: 'D:/eeg_files/data_BIDS/'
+save_directory = YOUR_OWN_PATH_2 # Ex: 'D:/eeg_files/figures/'
+if not os.path.isdir( save_directory ): os.mkdir( save_directory )
 figure_directory =  '%s/figures/'%save_directory; if not os.path.isdir( figure_directory ): os.mkdir( figure_directory )
 figure_dpi = 300
 
@@ -611,7 +612,7 @@ class bi_interp2:
 """ (2) Function for Topography plot """
 from matplotlib import cm
 from pandas import read_csv
-montage_file = 'D:/SciData_Bowon_Sleep/montage.csv'
+montage_file = bids_path+'montage.csv'
 from mpl_toolkits.mplot3d import Axes3D
 
 def get_boundary():