I have a naive question about plotting csv data with python.
I have a csv file looks like:
SubjID SubjGrp GoRT SSRT StopPoss
1 control 568.56 320.22 0.58
2 control 680.08 314.84 0.54
I want to plotting those data like:

I tried following syntax:
import numpy as np
import matplotlib.pyplot as plt
d1=csv2rec('stop-allrun-2.csv',delimiter='\t', names=['SubjID', 'GoRT','SSRT','StopPoss'])
x=d1['SubjID']
y=['GoRT']
plot(x,y)
then popup the error message:
ValueError: x and y must have same first dimension
Is there anything I can do to improve this script?