Yuan Gao

Results 2 comments of Yuan Gao

> I’m not sure how you got your std flag to be c11, but it should be c++11. The error indicates that a very old language compatibility is being used...

I solved the problem by the following codes: ``` df.loc[:,('Enrichment','New')]= [0]*len(df) for i in range(len(df)): new_list = ast.literal_eval(df['Enrichment']["TargetGenes"][i]) df.loc[:,('Enrichment','New')][i] = new_list df[('Enrichment','TargetGenes')] = df[('Enrichment','New')].copy() ```