Data: the tsv file
This is what the Tsv data looks like, how do I use pandas to remove all the information but the words and the tags? for example only keeps : Keep the part I circled
Data: the tsv file
This is what the Tsv data looks like, how do I use pandas to remove all the information but the words and the tags? for example only keeps : Keep the part I circled
Your post does not respect the rules of StackOverflow. Please take a while to read:
But the answer is (probably):
df = pd.read_csv('test.tsv', comment='#', header=None, sep='\t')