联系方式

  • QQ:99515681
  • 邮箱:99515681@qq.com
  • 工作时间:8:00-23:00
  • 微信:codinghelp

您当前位置:首页 >> Python编程Python编程

日期:2021-03-02 11:12

Using your preferred code editor (e.g. VSCode), in a Python script called "CR2.py", write code to answer the following problem.


Problem

Write a function plot_columns() which takes 4 input arguments:

?a string "fig_type", which is one of the two values: "single" or "subplots",

?a 2D Numpy array "x" with ??r rows and ??c columns, where ??,??>0r,c>0 and ??≤10c≤10,

?a 2D Numpy array "y" with ??r rows and ??c columns, where ??,??>0r,c>0 and ??≤10c≤10,

?a list "plot_type" of length ??c, whose elements are strings taking one of the two values: "line" or "scatter".

Your function should create a figure, and in it produce and show a plot of each column of "x" and "y", with the x-coordinates stored in a given column of "x" corresponding to the y-coordinates stored in the same column of "y". This means that you will produce ??c plots in total -- one per pair of columns in "x" and "y".

The input argument "fig_type" determines how to draw the plots:

?if "fig_type" is "single", you should produce one set of axes, draw all the plots together in the same axes, and differentiate them e.g. by line or marker colour or style.

?if "fig_type" is "subplots", you should produce ??c different sets of axes (in the same figure), so that each plot is drawn in a different subplot. Choose how to set up your subplots so that all plots are sufficiently large and readable.

The ??ith string in the list "plot_type" determines whether the ??ith plot should be a line plot (line connecting the points) or a scatter plot (individual markers only for each point, no lines between points).

Your function shouldn't return anything, just display the plot. All plots should be clearly and appropriately labelled (you can use the label e.g. "Plot i" to label the ??ith plot).

You can assume that the input arguments will always be of the form outlined above, i.e. you don't need to check, for instance, that "plot_type" has the correct length -- you can assume that it always will. (That being said, if you do want to check input arguments, you won't be penalised for doing so.)

Here are a couple of examples:

?If x and y are Numpy arrays with 2 columns each, plot_columns("single", x, y, ["line", "scatter"]) should produce 2 overlapping plots, in the same axes; the first plot should be a line plot, the second plot should be a scatter plot. (You can label them "Plot 1" and "Plot 2".)

?If x and y are Numpy arrays with 4 columns each, plot_columns("subplots", x, y, ["scatter", "scatter", "line", "scatter"]) should produce 4 plots, each in a different subplot. The first, second, and fourth plots should be scatter plots, the third plot should be a line plot.

Then, after the function definition, write a few tests to check that your function is working. For this task, the expected result should be relatively self-evident. You could use Numpy's "random" module to generate randomised data for your plots, you could evaluate different functions and plot them, etc. Try to think of a few fairly trivial examples which make it very quick to see whether your function works or not.


You should include your test code in the script CR2.py, after the function definition. Comment out all your tests but one, so that the assessors can look at your plots one at a time (and not be bombarded by 10 different figure windows appearing at once!).


版权所有:留学生编程辅导网 2020 All Rights Reserved 联系方式:QQ:99515681 微信:codinghelp 电子信箱:99515681@qq.com
免责声明:本站部分内容从网络整理而来,只供参考!如有版权问题可联系本站删除。 站长地图

python代写
微信客服:codinghelp