99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

BEE1038代做、代寫Python設計程序

時間:2024-03-21  來源:合肥網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 

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

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    急尋熱仿真分析?代做熱仿真服務+熱設計優化
    出評 開團工具
    出評 開團工具
    挖掘機濾芯提升發動機性能
    挖掘機濾芯提升發動機性能
    海信羅馬假日洗衣機亮相AWE  復古美學與現代科技完美結合
    海信羅馬假日洗衣機亮相AWE 復古美學與現代
    合肥機場巴士4號線
    合肥機場巴士4號線
    合肥機場巴士3號線
    合肥機場巴士3號線
    合肥機場巴士2號線
    合肥機場巴士2號線
    合肥機場巴士1號線
    合肥機場巴士1號線
  • 短信驗證碼 豆包 幣安下載 AI生圖 目錄網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          国产综合av| 久久精品人人做人人综合| 欧美日韩国产限制| 亚洲在线视频网站| 国产亚洲欧美日韩精品| 老司机精品导航| 亚洲精品123区| 国产精品网站在线观看| 亚洲一区二区三区四区五区午夜 | 影音先锋成人资源站| 牛牛影视久久网| 亚洲欧美综合另类中字| 伊人蜜桃色噜噜激情综合| 欧美日韩午夜在线| 久久理论片午夜琪琪电影网| 亚洲福利久久| 国产精品va在线| 免费在线看成人av| 午夜精品网站| 一区二区久久久久| 在线欧美日韩精品| 国产深夜精品| 欧美日韩综合久久| 午夜欧美大片免费观看| 亚洲片在线观看| 国外成人在线视频| 国产精品网站视频| 欧美日韩精品一区二区天天拍小说 | 国产精品美女久久福利网站| 久久综合成人精品亚洲另类欧美| 亚洲综合激情| 亚洲精选91| 亚洲激情国产精品| 亚洲第一久久影院| 一区在线影院| 国产精品一区二区欧美| 国产精品九九久久久久久久| 欧美精品久久天天躁 | 国产精品美女午夜av| 欧美极品一区| 久久精品欧美| 久久国产精品久久久久久| 亚洲一区二区高清| 亚洲欧美日韩在线高清直播| 亚洲一区二区久久| 亚洲一区二区三区高清不卡| 9久re热视频在线精品| 亚洲人人精品| 一本久久综合| 一区二区三区你懂的| 99国产精品国产精品久久| 亚洲精品一区二区三区不| 亚洲精品欧洲精品| …久久精品99久久香蕉国产 | 国产精品女主播一区二区三区| 欧美色道久久88综合亚洲精品| 欧美色图五月天| 国产精品看片你懂得| 欧美韩日一区二区三区| 欧美日韩高清免费| 国产精品ⅴa在线观看h| 国产精品一区二区三区久久| 国产精品久久久久av免费| 国产精品国产三级国产aⅴ入口 | 在线日韩中文| 一区二区免费看| 亚洲综合色激情五月| 久久精品99| 免费欧美日韩| 欧美色综合天天久久综合精品| 国产精品一级久久久| 欧美人成在线| 国产精品自在欧美一区| 国产综合自拍| 日韩一区二区免费看| 亚洲综合99| 久久成人在线| 欧美区在线播放| 国产亚洲一区二区在线观看 | 亚洲国产成人在线播放| 亚洲国产免费看| 亚洲欧美自拍偷拍| 欧美肥婆在线| 国产一区导航| 亚洲性夜色噜噜噜7777| 亚洲午夜精品在线| 美女成人午夜| 国产欧美一区二区精品仙草咪| 91久久精品日日躁夜夜躁欧美| 国产一区二区三区在线观看免费视频| 亚洲经典三级| 久久精品视频在线免费观看| 欧美精品一区二区高清在线观看| 国产精品久久久久国产精品日日| 精品99视频| 久久99伊人| 国产日本欧美视频| 亚洲人精品午夜在线观看| 久久精品国产一区二区三| 欧美日韩成人一区二区三区| 激情一区二区三区| 亚洲一区二区在线观看视频| 欧美韩日亚洲| 欲香欲色天天天综合和网| 亚洲男人的天堂在线观看| 欧美电影免费观看网站| 亚洲第一视频网站| 亚洲午夜视频在线观看| 国产精品美女久久久| 久久久久se| 亚洲人成精品久久久久| 欧美日韩免费看| 亚洲欧美日本国产有色| 一区二区三区自拍| 欧美激情片在线观看| 在线亚洲一区| 国产一区观看| 欧美二区在线播放| 在线一区亚洲| 一区二区三区自拍| 欧美视频福利| 久久久久这里只有精品| 亚洲裸体在线观看| 国产欧美在线视频| 欧美电影在线播放| 午夜视频一区在线观看| 亚洲国产成人91精品| 国产精品国产a| 欧美成人国产一区二区| 亚洲综合电影| 亚洲黄一区二区| 国产亚洲高清视频| 欧美日韩国产综合视频在线观看中文 | 国产嫩草影院久久久久| 欧美freesex交免费视频| 亚洲主播在线播放| 亚洲国产毛片完整版| 国产麻豆精品久久一二三| 男女精品网站| 久久福利视频导航| 99成人在线| 亚洲国产精品尤物yw在线观看 | 亚洲在线一区| 最近看过的日韩成人| 国产欧美一区二区精品仙草咪| 欧美高清视频| 久久久亚洲精品一区二区三区| 亚洲一本视频| 一级日韩一区在线观看| 亚洲成人自拍视频| 国模吧视频一区| 国产美女精品视频| 欧美午夜电影完整版| 欧美激情视频一区二区三区在线播放| 欧美一区三区二区在线观看| 亚洲无限av看| 一区二区三区四区五区在线 | 亚洲乱亚洲高清| 亚洲高清视频的网址| 国产一区二区剧情av在线| 国产女人18毛片水18精品| 国产精品久久久久久亚洲调教| 欧美日韩不卡一区| 欧美日韩国产色视频| 欧美精品观看| 欧美男人的天堂| 欧美日韩久久不卡| 欧美小视频在线观看| 国产精品久久久一本精品| 国产精品久久午夜| 国产欧美一二三区| 国产一本一道久久香蕉| 黄色亚洲免费| 亚洲激情视频在线播放| 亚洲精品美女在线观看| 日韩视频精品| 亚洲一区二区三区激情| 亚洲欧美日韩中文播放| 性欧美18~19sex高清播放| 欧美一区二区三区精品| 久久视频一区| 欧美jizz19性欧美| 欧美日韩一二三区| 国产精品色网| 在线精品在线| 一区二区三区四区精品| 亚洲欧美国产视频| 久久久水蜜桃| 欧美日本高清一区| 国产精品一级| 亚洲人成毛片在线播放女女| 一区二区三区四区在线| 久久久久国产一区二区三区| 欧美精品精品一区| 国产欧美日韩亚州综合| 亚洲韩国精品一区| 亚洲欧美国产精品桃花| 理论片一区二区在线| 欧美日韩精品| 在线播放日韩|