Plot.plot({
x:{domain:[0,10]},
y:{domain:[0,1]},
marks:[
Plot.ruleX([0]),
Plot.ruleY([0]),
Plot.dot(Xblue,{x:Xblue,y:Yblue,fill:"blue",r:5}),
Plot.dot(Xred,{x:Xred,y:Yred,fill:"red",r:5}),
Plot.line([[threshold,0],[threshold,1]],{strokeDasharray:"5,5"}),
Plot.line(x,{x:x,y:y,stroke:'red'}),
Plot.line([[0,.5],[10,.5]],{strokeDasharray:"5,5"}),
Plot.dot(X,{x:X,y:Yhat,fill:'green',r:5})
]
})