Tripti has created a chart . She wants to improve the appearance of her chart by changing the background colour of its plot area. Which option will you suggest to do so ?
Answers
Answered by
1
Answer:
MATLAB | Python 3 | R maybe
Explanation:
MATLAB color (blue)
R
we can define the color using col.
plot(x, sin(x),
main="The Sine Function",
ylab="sin(x)",
type="l",
col="blue")
Python 3
import matplotlib.pyplot as plt
plt.plot([1,2,3,4,5,6])
plt.ylabel('numbers')
plt.show()
plt.plot([1,2,3,4,5,6], color='red')
Similar questions