plot(x,sin(x),'r','.') command nt showing dotted line
Dotted line in graph not reflected
Python-3.4.3 Embellishing-a-plot 04-05 min 30-40 sec
Answers:
Try this example
plot(x, sin(x), color='red', linewidth=1, linestyle=':')
try this
plot(x,sin(x),'.r')