Informatics Practices
Choose the correct statement to print the label in the line chart.
- pl.xlabel("some values")
- pl.xlable("some values")
- pl.plotlabel("some values")
- None of these
PyPlot
3 Likes
Answer
pl.xlabel("some values")
Reason — In matplotlib, pl.xlabel("some values") is used to set the label for the x-axis of a plot.
Answered By
3 Likes
Related Questions
What will be returned by the given query?
select round(23456.1234, -2) ;- 23456.00
- 23400
- 23500
- 23456.1200
Which one of the following functions is used to find the smallest value from the given data in MySQL?
- MIN()
- MINIMUM()
- SMALL()
- SMALLEST()
Which clause is used in query to place the condition on groups in MySQL?
- WHERE
- HAVING
- GROUP BY
- Both (i) & (ii)
Which of the following codes will display the total number of rows in the DataFrame stud?
- print (len(stud.axes[0]))
- print (stud.len(0) )
- print (stud.len [axes=0] )
- print (len (stud.axes[row] )