Sale!

CS/INFO 3300; INFO 5100 Homework 6 solved

Original price was: $35.00.Current price is: $30.00. $25.50

Category:

Description

5/5 - (7 votes)

Goals: Practice using d3 to create a line chart
Your work should be in the form of an HTML file called index.html or index.htm with one

element per problem. For this homework we will be using d3.js. In thesection of your file,please import d3 using this tag: Create a zip file containing your HTML file and associated data files (such as erie_fishing.json ormariokart_records.json) and upload it to CMS before the deadline. Submissions that do not includedata files may be penalized. Your submission will be graded using a Python web server run in aparent directory containing your zip file contents along with many other students’ submissions.(e.g. the grader has a folder, ~/hw6_cms, where they start their own web server and unzip yourassignment. If you just zip up index.htm and your data files as we ask, CMS will automatically makea sub-directory for your netID when we download it from the system. This means that your homeworkwould appear at ~/hw6_cms/your_netID/index.htm on the grader’s computer. In their webbrowser, it would show as http://127.0.0.1:8000/your_netID/index.htm in the URL bar.)1. In this problem you have the choice of two different datasets that involve creating a line chart:• erie_fishing.json – A file containing historical fishing yields for different fish species inLake Erie (a nearby Great Lake). Fishing in the lake has shifted from sustainable indigenouspractices to commercial fishing (which led to species extinction) and finally towards anunsteady balance between conservation and commerce. This file will show how yearly fishingamounts (in 1,000s of pounds) vary for several species between the 19th and 20th centuries.• mariokart_records.json – A file containing historical ‘world record’ three lap times for theretro video game Mario Kart 64. As speedrunners continually discover unusual shortcuts andtricks, the time it takes to complete three laps of a race track may dramatically decrease. Thisfile may show those decreases as new records are set between 2007 and 2020.Both datasets have been post-processed to have similar data structures, so you will follow the samedirections regardless of which dataset you choose to process. Please pick one dataset only.A. After a

tag for problem 1, place a square SVG element 800px in height and 400px in width.
In a