Skip to content
Snippets Groups Projects
Select Git revision
  • e6540cb0d4e69a41590dc8226e4f058459ea6fe7
  • main default protected
2 results

data_import.py

Blame
  • readMCD.py 197 B
    def readMCD(mcd) :
      col2index = {}
      index2col = {}
    
      curId = 0
    
      for col in mcd.split(' ') :
        col2index[col] = curId
        index2col[curId] = col
        curId += 1
    
      return col2index, index2col