国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

BEE1038代做、代寫Python設(shè)計程序

時間:2024-03-21  來源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯



Assignment [100 marks, weight: 30%]
BEE1038: Introduction to Data Science in Economics
Assignment Deadline: Thursday 28th March at 15:00 (GMT)
In this assignment, you will demonstrate your understanding and mastery of programming in
Python using data science tools.
What you will have learnt by the end of Week 6/7 should cover almost everything you will need,
and what you learnt is already enough to start working on some problems. If you are stuck then
read through the notebooks again. If you are still unsure, then have a look online. Google and
Stack OverFlow are your friends!
The grade of this assignment contributes 30% towards your overall grade in the course. The
following aspects need to be shown:
● Basic Python code and functions
● Manipulation and calculations on NumPy arrays and Pandas data frame
● Preparing and preprocessing data.
● Doing a basic plot, and changing plot markers, colors, etc.
● Improving and extending analysis.
● Ability to elaborate on your approach and explain your rationale when completing the
assignment.
Your submission will be a compressed file (.zip) containing the following files:
1. A copy of your Python script named your_name_solution.ipynb (done in Jupyter
Notebook). For example, my notebook file will be named cecilia_chen_solution.ipynb.
2. Same copy printed as a PDF, your_name_solution_code.pdf. Take a look at this link for
instruction on exporting Jupyter Notebok as PDF.
3. Three .png images of your final plots: one that replicates the plot in Problem 4 (p4.png),
one that replicates the plots in Problem 5 (H) (p5h.png), and those that show any
additional analysis in Problem 6 (p6a.png, etc.).
You must explain your approach and rationale using the markdown and/or comments in code.
Any block code or results without appropriate explanation will be panelized. Your scripts must
be sufficient to reproduce your answers to all questions and plots. You are responsible for
making sure that your Jupyter Notebook file will open without errors. Submissions that do not
open may receive a zero.
Collaboration & Misconduct: You are encouraged to think about this assignment in groups or ask
each other for help. If you do, you should do the following: 1) write your own code (no code
copying from others), 2) Report the names of all people that you worked with in your submission,
3) if you received help from someone, write that explicitly, 4) plagiarism of code or writeup will
not be tolerated; do not copy blocks of code in your answers, and 5) do not post your solutions
online (even after the release of your marks). For those who want to evidence your experience
to recruiters, make sure you share a private link to your project/work (or undiscoverable link). If
we can find your answers online anytime until September this year, you will be reported for
misconduct.
The University takes poor academic practice and academic misconduct very seriously and expects
all students to behave in a manner which upholds the principles of academic honesty. Please
make sure you familiarize yourself with the general guidelines and rules from this link1 and this
link2
.
Problem 1 [15 marks]
Write a function that accepts a number n as an input, and it returns n rows that look like the
following pattern. Run your function for n = 21 (the output below is for n=12 and n = 21).
1 http://as.exeter.ac.uk/academic-policy-standards/tqa-manual/aph/managingacademicmisconduct/
2
https://vle.exeter.ac.uk/pluginfile.php/1794/course/section/2**99/A%20Guide%20to%20Citing%2C%20Referencing
%20and%20Avoiding%20Plagiarism%20V.2.0%202014.pdf
 Output when n = 12 output when n = 21
Problem 2 [15 marks]
Solve all the following questions.
A. Write a function that you will call min_distance() that takes as input a list of integers and
returns the minimum (absolute) difference between any two numbers in that list.
For example, min_distance([5,9,1,3]) should return 2
While, min_distance([3,4,1,1]) should return 0
B. Using the min_distance() function you have created, create another function
max_min_distance() that takes a list of lists of integers as an input, and it returns the
maximum value among all the minimum distance values calculated on the inner-lists
(output of min_distance() for each inner-list).
For example, max_min_distance([[5,9,1,3],[3,4,1,1]]) should return 2
C. Demonstrate that your max_min_distance() function works well on the following input:
[[5,2,1,6],[10,0,4],[9,18,1],[100,100,27,9,18],[28,30]]
D. Set the NumPy random seed to 99 (Use the random generator method:
numpy.random.default_rng(seed)). Generate a **dimensional NumPy array of size 1000
consisting of random integers between 0 and 3000 (both included). Reshape this array
into a 2-dimensional array of 50 rows (i.e., 50x20). Test your function on this input.
E. Use the %timeit function to calculate the time for your max_min_distance() algorithm to
run on the input from D.
Problem 3 [20 marks]
A. Set the NumPy random seed to 120.
B. Create a 3x20x5 array (3 depths, 20 rows, 5 columns) of random integers between
-20 and 100 (both included) and print it.
C. For this part, consider the first depth of the array (i.e., first dimension is 0). Print the
number of elements that are strictly more than 60 in each column (of the first depth).
D. For this part, consider the third depth of the array (i.e., first dimension is 2). Print the
number of rows (of the third depth) that contain any positive values.
Problem 4 [20 marks]
In this problem, you need to reproduce the plot shown below, as accurately as possible, from
scratch. First, you will need to generate your x-axis data, and calculate the two series of your yaxis data using the simple functions shown in the legend.
Problem 5 [20 marks]
In this problem, you will use a dataset called harrypotter_dataset. Please follow the instructions
below for your data analysis.
A. Load the harrypotter_dataset.csv file in your notebook, and print the dataset. Print the
number of rows.
B. Print the column headings of the data set.
C. You will notice that column headings have an unnecessary leading space (e.g., “ Book
index”. Write a code to remove the leading space from every column name in the dataset,
replace the space between the column name with _, and convert all the column headings
to lower case. Save changes to your data frame. Re-run code in B to make sure it is solved
now. For example, the original column name is “ Book index”. It should be “book_index”
at the end.
D. Create a new column: ‘runtime_in_hours’ using the column ‘Runtime (in minutes)’. The
new column should have floating numbers (e.g., 150 minutes à 2.5 hours).
E. Create a new column: ‘is_same_date_uk_us’: boolean (True : “UK Movie release date” is
the same as “US Movie release date”, False : otherwise)
F. Calculate the following:
a. Suppose you chose to read one chapter from one of the books at random. What
is the probability that this chapter belongs to Book number 7? (hint: write a code
that divides the number of chapters in Book number 7 by the total number of
chapters)
b. Suppose you chose to watch one minute of one of the movies at random. What is
the probability that it belongs to one of the following movies 1st, 3rd, 5th, or 7th ?
c. What is the percentage of the movies that were released on the same date in both
the UK and the US?
G. Create a new data frame, df_nineties, which contains data (all columns) for books
released before 2000 i.e., ‘Book release year’ is strictly smaller than 2000.
H. Reproduce the following plot: you will get marks for reproducing the plot as accurately as
possible, taking into consideration the steps undertaken to reach the final figure.
Problem 6 [10 marks]
For this problem, use the same data from Problem 5 to perform compelling extra analysis.
Perhaps make use of the other columns in the harrypotter_dataset data set. You will get marks
if you find a compelling and interesting visualisation (one plot is enough, but you may produce
as many as you want if they are all tied into one main idea). Make sure you provide textual
description and/or analysis of the plot. You can also collect additional data to compliment your
analyses. For instance, you can add new columns to the dataset such as a cast list. Please be sure
to write down the source of your additional data collected.
請加QQ:99515681  郵箱:99515681@qq.com   WX:codehelp 

掃一掃在手機(jī)打開當(dāng)前頁
  • 上一篇:越南投資簽證年限(如何申請越南投資簽證)
  • 下一篇:ENGG1330代做、Python程序設(shè)計代寫
  • 無相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手,多多出評軟件徽y1698861
    超全面的拼多多電商運(yùn)營技巧,多多開團(tuán)助手
    CAE有限元仿真分析團(tuán)隊,2026仿真代做咨詢服務(wù)平臺
    CAE有限元仿真分析團(tuán)隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 豆包網(wǎng)頁版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产日产精品一区二区三区四区 | 欧美激情乱人伦| 亚洲一区三区电影在线观看| 婷婷久久青草热一区二区| 国产免费久久av| 久久久久久国产三级电影| 欧美激情一级二级| 免费看又黄又无码的网站| 久久免费国产视频| 欧美精品少妇videofree| 精品免费一区二区三区蜜桃| 不卡一卡2卡3卡4卡精品在| 日韩视频精品在线| 日韩精品手机在线观看| 99热在线播放| 国产成人免费电影| 欧美日韩一区在线播放| 91观看网站| 婷婷亚洲婷婷综合色香五月| 国产日韩一区二区三区| 久久精品2019中文字幕| 人妻有码中文字幕| 久久综合久久网| 亚洲人精品午夜射精日韩| www.com毛片| 欧美日韩成人在线播放| 欧美尤物一区| 久久精品国产2020观看福利| 欧美一级日本a级v片| 国产传媒一区二区三区| 亚洲色婷婷久久精品av蜜桃| 国产乱码一区| 亚洲午夜精品福利| 国产精品最新在线观看| 麻豆成人在线看| 国产精品一区久久久| 欧美精品免费看| 国产日韩专区在线| 久久成人一区二区| 国内精品视频一区| 国产精品久久久久久久久久东京| 一区二区三区四区免费视频| 国产日韩第一页| 精品久久久久久中文字幕动漫| 国产欧美高清在线| 欧美日本黄视频| 国产一区福利视频| 综合久久国产| 91久久久久久久久久| 亚洲国产精品123| 久久久久久久一区二区三区| 日韩一二区视频| 久久精品xxx| 蜜桃免费区二区三区| 国产精品对白一区二区三区| 国产日韩欧美二区| 精品国产一二三四区| 国产精品一区二区免费| 色播五月综合| 久久久久久久久久久一区| 欧美在线亚洲一区| 欧美精品成人在线| 91精品国产综合久久香蕉的用户体验| 一区二区不卡在线视频 午夜欧美不卡' | 欧美精品在线视频观看| 国内视频一区二区| 欧美精品在线观看| 成人免费视频97| 色之综合天天综合色天天棕色| 久久精品国产视频| 国产日韩在线精品av| 亚洲第一综合| 日韩综合视频在线观看| 国产一区国产精品| 亚洲爆乳无码专区| 久久好看免费视频| 国产女大学生av| 亚洲高清精品中出| 国产精品网站视频| 国产日韩在线精品av| 亚洲 自拍 另类小说综合图区| 国产成人97精品免费看片| 激情小视频网站| 日本一区二区三区免费观看| 国产精品丝袜一区二区三区| 99国产精品久久久久老师| 欧美专区日韩视频| 欧美日韩福利在线观看| 国产成人一区二区| 精品视频免费在线播放| 午夜肉伦伦影院| 九色91国产| 高清视频在线观看一区| 日韩精品一区在线视频| 亚洲综合在线中文字幕| 久久久噜噜噜www成人网| 国内精品**久久毛片app| 日韩在线视频在线观看| 国产精品久久精品视| 亚洲成人第一| 欧美日韩成人黄色| 日韩在线播放一区| 久久久女女女女999久久| 国模精品系列视频| 欧美一级视频免费在线观看| 中文字幕一区二区三区四区五区人 | 国产精品视频中文字幕91| caoporn国产精品免费公开| 欧美成人第一区| 亚洲乱码国产一区三区| 国产精品电影在线观看| 久久久久久久久久久久久久久久av| 国产欧美亚洲视频| 欧美视频在线观看视频| 日本一区二区三区四区高清视频| 欧美精品日韩www.p站| 97精品国产97久久久久久春色 | 欧美wwwxxxx| 国产精品人成电影| 国产福利片一区二区| 国产精品香蕉国产| 国产日韩精品视频| 欧美激情专区| 日本久久91av| 亚洲欧洲国产日韩精品| 精品久久久久久亚洲| 国产精品久久久久久久久久久不卡| 久精品国产欧美| 国产黄视频在线| 久久久久久一区| 久久久视频在线| 韩国日本不卡在线| 免费看国产一级片| 欧美视频免费播放| 虎白女粉嫩尤物福利视频| 欧美中文字幕在线观看视频| 亚洲va久久久噜噜噜久久狠狠| 懂色av粉嫩av蜜臀av| 久久久久久国产精品| 国产精品日韩欧美一区二区| 国产精品免费一区二区三区观看| 久久精品日产第一区二区三区精品版 | 国产精品乱码一区二区三区| 久久精品无码中文字幕| 久久久影院一区二区三区| www.日本在线视频| 不卡视频一区二区| 国产富婆一区二区三区| 国产黄色激情视频| 国产成人在线小视频| www.午夜精品| 久久精品中文字幕一区| 久久精品国产亚洲7777| 久久精品国产2020观看福利| 日韩视频欧美视频| 久久久91精品国产| 国产精品三级久久久久久电影| 久久精品国产亚洲7777| 国产精品视频自拍| 精品国产乱码久久久久久久软件 | 亚洲va欧美va在线观看| 亚洲国产精品影视| 一区二区三区在线视频111| 亚洲一区二区三区在线免费观看| 亚洲自拍欧美另类| 日韩亚洲欧美精品| 欧美图片激情小说| 激情一区二区三区| 欧美高清性xxxxhdvideosex| 免费看欧美黑人毛片| 精品一区二区日本| 国产美女久久久| 国产精品333| 日韩专区中文字幕| 久久av红桃一区二区小说| 日韩一区不卡| 欧美在线激情网| 热门国产精品亚洲第一区在线 | 尤物国产精品| 品久久久久久久久久96高清| 精品欧美一区二区精品久久| 激情网站五月天| 99久久久精品免费观看国产| 久久久亚洲综合网站| 国产精品九九九| 中文字幕一区二区三区四区五区六区 | 久久久精品一区二区| 在线视频福利一区| 色乱码一区二区三在线看| 日韩免费av片在线观看| 国产女人水真多18毛片18精品| 91精品国产自产在线| 国产精品免费一区二区三区 | 日韩五码在线观看| 蜜桃久久影院| 91老司机精品视频| 麻豆国产va免费精品高清在线| 亚洲一区二区三区sesese| 少妇人妻无码专区视频| 国产欧美日韩中文字幕在线|