QBUS6840代做、代写Group Project、代做Python、代写Python编程设计 代写Python程序|代写Web开发
2019S1 QBUS6840 Group Project Page 1 of 5
QBUS6840 Assignment 2 – Group Assignment:
Due dates: Friday 24 May 2019
Value: 30%
Rationale
This assignment has been designed to help students develop valuable communication and
collaboration skills and to allow students to apply their predictive analytics skills on a real
world datasets.
Description
The assignment will be done in groups of 5 (or 4 or 6 depending on the total number of
students in the class) without exception. The group can be formed freely or assigned by the
Coordinator. Please get close contact with your members in earlier stage. A group leader will
be automatically assigned by the Canvas system.
Notes
1. The assignment will be done in groups of 5 (or 4 or 6 depending on the total of students
in the class) without exception. The group can be formed freely or assigned by the
Coordinator. Please get close contact with your members in earlier stage. A group
leader for each group shall be automatically assigned on Canvas.
2. The assignment is due at Friday 16:00pm 24 May 2019. The late penalty for the
assignment is 5% of the assigned mark per day, starting after 16:00 pm on the due date.
The closing date, 31 May 2019, 16:00pm is the last date on which an assessment will
be accepted for marking.
3. Your answers shall be provided as a word-processed. Prepare one single report. Do not
have separate report for each question/task. Add your Python code as appendix to the
report. At the same time, we will ask you to upload your python code to your Canvas
folder.
4. Your report should include the Group ID and SIDs of all group members. No names!
You may stay with the report cover sheet provided.
5. You need to provide full explanation and interpretation of any results you obtain.
Output without explanation will receive zero marks.
6. Be warned that plagiarism between individuals is always obvious to the markers of the
assignment and can be easily detected by Turnitin.
7. The data sets for this assignment can be downloaded from Canvas.
8. Presentation of the assignment is part of the assignment. Markers will assign up to 10%
of the mark for clarity of writing and presentation. It is recommended that you should
include your Python code as appendix to your report, however you may insert small
section of your code into the report for better interpretation when necessary. Think
about the best and most structured way to present your work, summarise the procedures
implemented, support your results/findings and prove the originality of your work.
9. Numbers with decimals should be reported to the Second decimal point.2019S1 QBUS6840 Group Project Page 2 of 5
10. The report should be NOT more than 25 pages, with font size no smaller than 11pt,
including everything like text, figure, tables, small sections of inserted codes etc but
excluding the cover pages, appendix containing Python code and the meeting minutes.
A violation of this rule will attract a penalty of 5% marks.
Meeting Minutes
1. Your group is required to submit meeting minutes, which are to be attached to the
report as the second appendix. Your group may use the attached templates for preparing
agendas and meetings minutes.
2. You should document at least 3 meeting minutes for this group assignment, using the
template provided/or a template you choose. Each minutes should at least record the
following information:
a. Meeting dates/time/venue/duration;
b. Key points of the process of discussion such as who said what (key points);
c. Action list and responsible members, task due time etc
d. Review/group judgement on the quality of individually completed/responsible
tasks; The purpose of this is to infer whether a member is doing their share of
jobs
Note: Any unsatisfactory meeting minutes may attract a penalty of up to 15% of
the total marks.
3. In case of a problem within a group we will request minutes of the previous meetings.
We can make an individual adjustment to the group mark if there is sufficient evidence
that a student has done very little. If the student has truly done little, we will award a
mark of 0.
Peer Assessment, Marks and Feedback
1. We may ask for peer assessment from each student. The instruction how to do this will
be released later on.
2. Each group will be awarded a group mark per the marking criteria. In some cases,
individual marks may be applied if there is dispute in a group and the quality or
quantity of contributions made by individuals are significantly different, in which cases
the unit coordinator will seek peer assessments reports from individuals in a group and
meeting minutes.
3. We will allocate 15% marks for competition among the groups. The group with the
highest test score will secure full 15% marks while other groups will secure a mark
according to their test score against the best test score.
4. Feedback will be provided on the marked submission.
Background and Dataset
The S&P/ASX 200 index is used as the benchmark for Australian equity performance. It is a
market-capitalisation weighted and adjusted stock market index, see Wikipedia. ASX 200
index is calculated based on the 200 largest ASX listed stocks. It starts from 31 March 2000
with a value of 3133.3
The ASX200 historical and current data can be downloaded from
https://au.finance.yahoo.com/quote/%5EAXJO?p=^AXJO. The historical data can be
downloaded at three different frequencies of Daily, Weekly and Monthly between any 2019S1 QBUS6840 Group Project Page 3 of 5
specified duration since 31 March 2000. In this project, your group will be asked to analyze
the data at both frequency of daily and monthly. To align with the due date of the project, the
following strategy is recommended:
1. Use 31 March 2000 as the starting date for downloading
2. The end date can be set as a date when your group starts work on the project. You
may explore this dataset and do all the possible tasks for the project.
3. The Project due date is 24 May 2019. You can download the most recent full dataset
on 23 May 2019. You may use this dataset to finalise your best model and make all
the predictions. Even the data on 24 May 2019 may become available before you
submit your report, you shall not use it at all.
4. For the group(s) who may be granted extension due to unforeseen reasons, the
competition forecasts will be the next FIVE days from the granted due date.
The dataset shall contain information of dates (daily or months), open price, highest price,
lowest price, close price and adjusted close price. Your work in this project is to analyze the
time series of close price. A set of Daily and Monthly datasets have been downloaded for
your convenience if you don't wish to download it at early stage. You can get them directly
from Canvas.
Tasks
Please note most tasks are deliberately designed open. This gives more freedom for you to
explore a better solution.
Data Pre-processing: Conduct initial analysis over the entire data. Write python program to
clean up the data, e.g., checking/deleting incomplete information if any, to make sure data is
complete, or normalising the data, etc. It is up to you how to normalise or transform the data
so that the resulting dataset can be well incorporated in training your chosen model(s). You
MUST retain your python program (or code section) used for all the pre-processing work.
Exploratory Time Series: Analyze the entire time series for both daily and monthly data.
You may plot them or do what you can to reveal any patterns. Summarise what you have
revealed or observed. In your report, carefully present your analysis and findings. Any
different patterns between Daily and Monthly time series?
Benchmark Model: Based on what you have found from exploring the time series, consider
using a classical model to build your benchmark model for forecasting. This could be the
moving average, or decomposition method, exponential moving average etc. It is always a
good idea to split the given time series data into a training subset and a validation subset.
Document your findings and justification. This should be done for both Daily and Monthly
time series.
Build Advanced Models: You are requested to build at least TWO advanced models such as
ARIMA, State Space Model, Deep Neural Networks and Recurrent Neural Networks etc.
This is your choice. In building your chosen models, you need to at least optimise models in
terms of e.g. the orders in ARIMA or State Space Model, and/or other parameters as well.
Simply building a model without any consideration of validation and tuning hyperparameter 2019S1 QBUS6840 Group Project Page 4 of 5
does not meet the minimal requirement for this task. Document your findings and
justification. This should be done for both Daily and Monthly time series.
Competent Model and Final Result(s): Finally, according to your work, decide your best
model for both Daily and Monthly time series. For all of them, please make five forecasts
ahead. For the monthly time series, you may report your five forecast in a table in your
report, but we ask you to forecast five daily results (i.e., the forecasts for Monday 27 May to
Friday 31 May 2019) and save your results into a csv file containing two columns, one for the
date (named Dates) and the other column for the predicted values with the second decimal
point. Name your file as GroupXXX_Results_ASX200.csv. where XXX is your group
number in form of e.g., 008 (for Group 8), 085 (for Group 85) and 123 (for Group 123). The
results will be assessed against the actual close prices on the dates in order to decide your
group performance among the entire class (competition!). It is important for you to name
your csv file in the above format, otherwise our program may fail your results.
Note:
1. The score will be based on the mean squared error.
2. The close price on 24 May 2019 may become available, but you shall not use that
information to train you model. In the forecasting stage, for some models, you may
need predict the close price on 24 May 2019, then predict close prices for the next
five days based on the prediction for 24 May 2019. However, the forecast for 24 May
2019 will not be used for assessment in competition.
Presentation
Please submit your project through the electronic system on Canvas
The assignment material to be handed in will consist of a final report that:
i) Takes a research article form in which you shall have a number of sections
such as introduction, methodology, experiment results, findings/interpretation,
and conclusion. All references should be properly cited and take a full
bibliographical format. Here are couple of examples
http://cs229.stanford.edu/proj2015/007_report.pdf
http://cs229.stanford.edu/proj2015/188_report.pdf
http://cs229.stanford.edu/proj2015/031_report.pdf
ii) Details ALL steps and decisions taken by the group regarding requirements
above.
iii) Demonstrates an understanding of the relevant principles of predictive
analytics approaches used.
iv) Clearly and appropriately presents any relevant graphs and tables.
The MAXIMUM page limit is 25 pages, including any computer output, graphs,
tables, etc.2019S1 QBUS6840 Group Project Page 5 of 5
Your group is required to submit meetings minutes. Your group may use the attached
templates for preparing agendas and meetings minutes. You should document at least
3 meetings during the semester. Documentation should be in terms of attendance,
discussion points, actions decided, review etc. You may use your own form or find
something online.
You, as a member of a group, may be also required to submit your peer assessment.
Please use the attached criteria sheet and assessment form for this purpose. You will
be informed of how to use online form when it becomes available.

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图