Question: For example, plot _ noon _ elevations _ over _ year ( - 4 3 . 5 2 5 6 5 ) should display a

For example, plot_noon_elevations_over_year(-43.52565) should display a graph like the one below:
Graph details - get the window dressing right
Your plot should use the following settings:
a linestyle of '-'
a marker of None.
a color of 'orange'
The title of the graph should display the latitude to two decimal places. You should use the following string as a basis for generating the graph title:
Daily noon solar elevations at latitude =-43.53
The x and y axis labels should be 'Day' and 'Noon solar elevation (degrees)' respectively.
The x ticks should be integer values from 0 to 360, inclusive, in steps of 30.
The x tick labels should be the nice date string for each x tick. For example, axes.set_xticklabels(day_strings, rotation=90)
Remember, you must set x ticks before setting the x tick labels.
The extra rotation value will mean the labels are printed vertically (it's optional but your graph will be ugly without it).
To get you axis labels to show fully you should call plt.tight_layout() just before your plt.show()
Alternatively, you can adjust the bottom margin of the graph window by clicking on the button in the view window and sliding/changing the bottom value.
The y ticks should be integer values from -90 to 90, inclusive, in steps of 10.
The y tick labels should be set to be the same as the y tick values.
The grid should be showing on the graph.
 For example, plot_noon_elevations_over_year(-43.52565) should display a graph like the one below:

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!