Informatics Practices

If the linestyle argument is missing along with markerstyle-string in a plot(), a scatter type chart get created.

PyPlot

3 Likes

Answer

True

Reason — When both the linestyle argument and the marker argument (markerstyle-string) are not specified in the plot() function, the resulting chart can resemble a scatter plot. In this case, the points will be plotted without connected lines, similar to how a scatter plot displays data points.

Answered By

2 Likes


Related Questions