mohnishi commited on
Commit
284bdde
·
verified ·
1 Parent(s): 96a1b45

Upload read_summary.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. read_summary.py +4 -0
read_summary.py CHANGED
@@ -88,6 +88,10 @@ def main(options):
88
 
89
  print(df.count())
90
 
 
 
 
 
91
 
92
  if __name__ == '__main__':
93
 
 
88
 
89
  print(df.count())
90
 
91
+ df_filtered = df[df['kc[W/mK]'] > df['kp[W/mK]']]
92
+ print(df_filtered[['kc[W/mK]', 'kp[W/mK]']])
93
+
94
+
95
 
96
  if __name__ == '__main__':
97