KnowledgeBoat Logo
|

Informatics Practices

Assertion. Both scatter() and plot() functions of PyPlot can create scatter charts.

Reason. The plot() function can create line charts as well as scatter charts.

  1. Both A and R are true and R is the correct explanation of A.
  2. Both A and R are true but R is not the correct explanation of A.
  3. A is true but R is false.
  4. A is false but R is true.

PyPlot

2 Likes

Answer

Both A and R are true and R is the correct explanation of A.

Explanation
Both the scatter() and plot() functions in Pyplot can create scatter charts. The plot() function in Pyplot can create both line charts and scatter charts. When specifying marker styles without providing a linestyle argument, the plot() function will create a scatter chart.

Answered By

3 Likes


Related Questions