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

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

FIT5147代寫、代做css/Java編程語言
FIT5147代寫、代做css/Java編程語言

時間:2024-10-07  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



Monash University
FIT51** Data Exploration and Visualisation Semester 2, 2024
Programming Exercise 3: D3 (5%) Programming Exercise 3: D3
Please carefully review all the requirements below to ensure you have a good understanding of what is required for your assessment.
1. Instructions&Brief
2. AssessmentResources 3. AssessmentCriteria
4. HowtoSubmit
5. LatePenalty
1. Instructions & Brief
In this assignment, you are required to demonstrate the ability to complete the source code of an interactive visualisation built using D3.
Relevant learning outcomes for FIT51**:
6. Implement interactive data visualisations using R and other tools
The final visualisation:
The expected final visualisation is about the topic of Melbourne’s Development Activity Monitor, similar to PE1 and PE2. The outcome is a web page containing two complementary visual elements. The first is a tree diagram showing groups of completed developments split by top 3 floor space uses: office, retail and education, branching into suburbs (inferred by the clue_small_area in this data). A second connected visual component shows a timeline displaying the trend of development every year for ten years from 2014-2023. These two visual elements are presented side-by-side and connect through interactive components. There is also a legend to describe the colour and text narration to help describe insights gained from the visualisation.
The template.
You will be given an incomplete file of source code for the final visualisation. Your task is to complete the code by following the provided instructions. We refer to this incomplete source code as the template. You are expected to not remove any aspect of this template.
 
 The template is a single HTML document. All references to external libraries, datasets, CSS, and the layout are already provided in the template. The webpage uses a side-bar layout. The left side-bar contains basic information about the visualisation, some data insights and information relating to the data source. The main canvas on the right is where the visualisation is placed. The HTML elements of tooltips are also provided in the template.
 To help you better understand the template structure, comprehensive comments are provided in the HTML elements as well as the javascript. Most of the javascript codes required to finish the visualisations are provided in the template, and are accompanied by descriptions. Most of the descriptions are represented as the #region and #endregion block of comments in the code.
There are two dataset files used in this project: 1. PE3_developments_hierarchy.json.
This data set is used to create the tree diagram structure and labels. 2. PE3_development_data.csv.
This dataset contains the following 5 columns: clue_small_area (name of the suburb), year_completed (year development completed), completed_developments (number of developments completed), floor_type (type of floor space: Office, Retail, Education), area (count of area in m2)
Detailed tasks:
You will only need to complete the javascript parts. These parts are indicated by a comment line: “ADD YOUR CODE HERE FOLLOWING THE INSTRUCTION” and a short indication of instruction and reference to Task #. There are 6 tasks that you need to complete. These tasks are based on the criteria described in Section 4: Assessment Criteria. The following is the list of these tasks, divided into two stages

 Stage 1: Complete the network diagram and timeline visualisations (Tasks **4)
The tree diagram should have three layers:
developments → (top three) floor space type → suburb name
The timeline shows total count of m2 of completed development per year (for each floor space type per suburb).
   #Task 1: Add nodes to the network diagram
● Take the node variable specified in the code and use it to create a symbol representing each node in the tree diagram.
● The symbol should be an appropriate design choice.
 #Task 2: Label the nodes
In this:
● Take the node variable specified above and use it to create a suitable label;
● The label should be placed in a suitable location, so that it is associated with the
node and that the label is readable and the tree diagram is visible (i.e. limited
overlap).
● Set the class attribute of the label to "label".
 #Task 3: Create the timeline bars
● The timeline bars are horizontal lines, or rectangles, with the same length and thickness. There should be 10 in a row representing the 10 years from 2014-2023. Create the 10 timeline bars.
Hint: to create and position the timeline bars, you can append lines (or rectangles) with a stroke width of about 10px. Use the y position of the respective suburb node, and the x position of respective year for y and x positions of each line respectively. The length of each line should span the distance between the vertical dashed lines that separate the years. You might need to make some adjustments by adding offsets for optimal alignment.
 #Task 4: Encode the total area in m2 (per suburb and year) using colour in the timeline bars
Only the colour of the bar will encode the total number of developed m2 completed per space type, per suburb per year. Do not hard code the total m2 count in your code.
● Choose a colour scheme and scale that is appropriate for the encoded variable, and enables you to differentiate the patterns in the timeline explained in the text description on the left side-bar.
● Add or modify the legend for the colour scale and any other visual variables you might add to match how you have encoded them.
Hint: do change the colour scheme from the default to a suitable scheme for this type of data. Try to find a scale range that is appropriate for the range of data.
   Stage 2: Adding interaction to connect the visualisations and ensure the data is communicated (Tasks 5-6)
The completed visualisation should have tooltips and highlighting on mouse hover over the timelines and nodes.
   #Task 5: Show the tooltip on mouse hover, when:
1) on the timeline bars:
● Show and hide the tooltip when the mouse pointer is on or leaving the bar;
● The tooltip should show relevant attributes associated with the bar being hovered,
including: Year, Suburb, Floor Space Type, and Total Area in m2.
 
    2) on the tree nodes:
● Show and hide the tooltip when the mouse pointer is on or leaving the node.
● For the leaf nodes: the tooltip should show the Suburb and Total Number of
developments
● For the non-leaf nodes: the tooltip should show the number of child nodes when
hovered over.
 #Task 6: Highlight the timeline bar and nodes when the mouse is hovering over the svg object
1) For the tree nodes:
● When the mouse pointer is hovering on a node, highlight the node. For instance, this could be using a different colour fill, outline, or both.
2) For the timeline bars:
● Highlight the timeline bar for the relevant year in the timeline on hover-over. For
instance, this highlight could be using a thicker outline. Note: this highlight should
not change the fill colour as the fill is related to the data we are examining. 3) For both:
● Finally, when the mouse pointer exits, the colour and thickness of the bars and nodes must always return back to the original / default style.
 Remember, you are only asked to complete the tasks above. We provided hints of the starting points for a task or a combination of the tasks with this comment: “ADD YOUR CODE HERE FOLLOWING THE INSTRUCTION”.
General Help Notes:
● The template uses D3 v7. This is important when referencing online resources which may use older versions of D3.
● You are allowed to make changes to the template, such as to add your own CSS rules, and adjust fonts and styling. However, any issues which arise from this (e.g., network graph or timeline no longer working, poor visual changes to the visualisation) may result in marks being deducted, even if not part of the given task.
● The datasets are stored on an online repository and are referenced via URL in the template (suffixed with “...DataPath”). You must NOT change these paths, nor should you download and use a local copy in your submission.
● Your code will be run through similarity detection software during the marking process. Be sure to acknowledge any reference sources in your code comments to avoid breaching academic integrity.
● Generative Artificial Intelligence (Generative AI) software or systems cannot be used for any part of this assessment task, including (but not limited to) generating written or visual components of your submitted work.
Continued Design Improvements (not needed for your PE3 submission):
A further improvement to the visualisation could include: highlighting links and connecting the visualisation components to more explicitly connect the tree diagram and timeline. The designer could for instance highlight the connecting links upon node hover over and emphasise the timeline bars for that tree branch (suburb) by deemphasising the other data objects using figure ground theory.

 3. Assessment Resources
● The template is provided in the assessment page on Moodle. The data is embedded in the template, no separate data file is needed.
4. Assessment Criteria
The following outlines the criteria which you will be assessed against.
● Ability to create simple static visualisations using D3 [3%]
o Demonstrated ability to create basic SVG elements using D3 [1%]
o Demonstrated ability to link data to visual properties [1%]
o Demonstrated ability to choose appropriate visual variables to encode
data [1%]
● Ability to create interactive visualisations using D3 [2%]
o Demonstrated ability to create an interactive visualisation in D3: tooltip
[1%]
o Demonstrated ability to create an interactive visualisation in D3:
highlight on mouse over [1%]
Please note that marks will be deducted if the provided template is not used, or if your submission uses modified and/or local copies of the datasets. Remember that you are allowed to improve on the template with improved aesthetics (e.g., CSS) and more advanced interactions and/or layouts if you wish, but this is not required for full marks.
5. How to Submit
The code for the final interactive visualisation should be submitted through Moodle. Ensure that all necessary files for the visualisation are included. The code’s components (i.e., HTML, CSS, JS) can either be in the same file or separated into individual files. Data files should not be included as these are accessed via the URLs provided in the template.
Submit a zip file containing all files required to run your work. Name the zip file in this format: [STUDENT ID]_[FIRST NAME]_[LAST NAME].zip
6. Late penalty
Following Monash late penalty policy. Late submissions will receive 5% deduction per day late. After 7 days, the assignment will not be graded or receive feedback.



 
請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp















 

掃一掃在手機打開當前頁
  • 上一篇:MA2552代做、代寫matlab設計程序
  • 下一篇:代做00301J 、Java設計編程代寫
  • 無相關信息
    合肥生活資訊

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

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

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

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    欧美激情一区二区三区在线视频| 亚洲视频在线观看日本a| 色婷婷久久av| 最新av网址在线观看| 日韩国产精品毛片| 国产欧美久久一区二区| 日韩在线观看你懂的| 亚洲一区 在线播放| 韩国三级日本三级少妇99| 国产福利一区视频| 九色自拍视频在线观看| 国产精品情侣自拍| 亚洲综合在线小说| 国产日韩精品综合网站| 国产成人三级视频| 三年中国中文在线观看免费播放| 国产日韩欧美大片| 国产精品久久亚洲| 免费在线观看的毛片| 国产suv精品一区二区三区88区| 国产精品久久久久久久久久久久午夜片| 午夜免费日韩视频| 成人久久18免费网站漫画| 国产精品久久久久久久久久 | 丝袜亚洲欧美日韩综合| 亚洲一区精品视频| 国产日韩欧美大片| www日韩欧美| 日韩偷拍一区二区| 操人视频欧美| 久久资源亚洲| 久久av资源网站| 免费黄色福利视频| 久久精品国产亚洲精品2020| 日韩免费高清在线观看| 久久草视频在线看| 日本欧美一二三区| 超碰免费在线公开| 亚洲欧美日韩不卡一区二区三区| 国产精品一久久香蕉国产线看观看 | 亚洲精品国产suv一区88| 黄色大片中文字幕| 国产精品美女主播在线观看纯欲| 欧美交换配乱吟粗大25p| 久久久精品国产一区二区| 日韩福利一区二区三区| 国产精品97在线| 亚洲国产一区二区在线| 99精品国产一区二区| 亚洲精品免费在线看| 91成人国产在线观看| 午夜精品久久久久久久白皮肤| 91av免费看| 日韩精品一区二区三区四区五区| www.欧美精品一二三区| 国内精品视频免费| 精品自拍视频在线观看| 国产资源在线免费观看| 精品国产一区二区三区日日嗨 | 国产欧美精品在线| 久久91精品国产91久久跳| 国产精品香蕉国产| 亚洲精品一区国产精品| 国产l精品国产亚洲区久久| 日韩精品成人一区二区在线观看| 日韩一区二区av| 国产亚洲欧美一区二区三区| 日韩xxxx视频| 国产成人无码av在线播放dvd | 色综合视频一区中文字幕| 国产欧美欧洲在线观看| 亚洲精品日韩av| 国产成人精品一区二区在线| 国产一区二区三区小说| 亚洲一区二区免费| 日韩一区二区av| 国产欧美日韩精品专区| 午夜精品一区二区三区在线播放| 久久国产手机看片| 黄频视频在线观看| 伊人网在线免费| 国产xxxxx在线观看| 国产自产女人91一区在线观看| 欧美极品在线视频| 久久综合一区二区三区| 男女猛烈激情xx00免费视频| 一区精品在线| 国产成人精品视频在线观看| 国产欧美精品xxxx另类| 日韩免费在线视频| 欧美日韩ab片| 久久av高潮av| 日韩av综合在线观看| 国产免费内射又粗又爽密桃视频| 欧美激情国产精品| 中文一区一区三区免费| 91久久精品久久国产性色也91| 懂色av一区二区三区四区五区| 久久久无码中文字幕久...| 欧美午夜精品久久久久免费视| 精品蜜桃一区二区三区| 久久黄色免费看| 国产美女精品在线观看| 日本wwww视频| 一区二区精品国产| 国产精品视频xxx| 国产免费一区| 欧美亚洲视频一区| 天天干天天操天天干天天操| 国产精品久久电影观看| 国产第一区电影| 国产精品一区二区你懂得| 欧美日韩一区综合| 亚洲一区二区自拍| 国产精品久久久久久av福利软件| 久久人人九九| 欧美一级黑人aaaaaaa做受| 欧美激情中文字幕乱码免费| 日韩中文在线中文网三级| 91久久国产综合久久91精品网站| 国产日韩欧美91| 国外色69视频在线观看| 欧美专区在线观看| 欧美一级片免费观看| 亚洲色婷婷久久精品av蜜桃| 欧美精品在线第一页| 国产成人精品免费视频 | 国产精品免费一区二区三区观看| 久热免费在线观看| 国产精品制服诱惑| 国产又黄又猛视频| 欧美乱偷一区二区三区在线| 无码内射中文字幕岛国片 | 免费在线观看亚洲视频| 日本国产高清不卡| 亚洲a在线播放| 亚洲一区二区三区久久| 一区二区精品免费视频| 麻豆中文字幕在线观看| 黄色91av| 国产麻豆电影在线观看 | 高清视频欧美一级| 91精品国产高清自在线| 久久国产精品久久| 久久久精品日本| 国产精品乱码视频| 精品国产一区二区三| 中文字幕日韩精品久久| 亚洲日本欧美在线| 日本精品视频网站| 欧美黄网在线观看| 国产在线一区二区三区四区| 国产情人节一区| 99re在线视频上| www.欧美免费| 色综合久久精品亚洲国产| 亚洲国产精品久久久久久女王| 日本精品免费观看| 精品一区二区视频| 91免费福利视频| 久久久国产精品免费| 国产99久久精品一区二区| 欧美一级视频免费看| 女女同性女同一区二区三区按摩| 国产精品永久入口久久久| 久久九九视频| 久久久av免费| 亚洲一卡二卡三卡| 欧洲熟妇精品视频| 国产美女精品在线观看| 国产l精品国产亚洲区久久| 国产精品吹潮在线观看| 亚洲日本无吗高清不卡| 欧美日韩在线播放一区二区| 国产精品夜夜夜一区二区三区尤| 久久噜噜噜精品国产亚洲综合| 国产精品十八以下禁看| 亚洲欧美日韩综合一区| 黄色一级片av| 91精品综合视频| 国产精品欧美日韩| 一区二区视频在线观看| 欧美在线观看网址综合| 成人久久久久久久| 国产精品久久一区| 日韩av电影免费在线| 国产日产欧美a一级在线| 久久精品国产美女| 最新av在线免费观看| 欧美亚洲色图视频| 久久久亚洲欧洲日产国码aⅴ| 国产精品户外野外| 日韩资源av在线| 国产精品一线二线三线| 国产精品免费视频久久久 | 霍思燕三级露全乳照| 久久无码高潮喷水| 欧美激情a∨在线视频播放| 欧美一区视频在线| 国产精品av网站|