look like you are passing a string instead of a variable
data = pd.read_table('ligand_file', skiprows=7)should be data = pd.read_table(ligand_file, skiprows=7) -- You received this message because you are subscribed to the Google Groups "spyder" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/spyderlib/00e84b24-c224-4080-8aaa-9c491a6e4a31%40googlegroups.com.
