subject
Computers and Technology, 19.07.2021 21:10 Edithh

In this problem, we're giving you a file containing some real data from #the Marta (Atlanta's subway system) database. Each line of the file is #a record of a single ride at a specific Marta station. Riders enter and #exit the subway system by tapping a Breeze Card against a gate at a #specific station. # #You can see a preview of what the file will look like in #marta_sample. csv in the dropdown in the top left. Note, however, that #the real dataset is massive: over 200,000 individual rides are recorded. #So, you're going to be dealing with some pretty big data! # #Each line of the file contains six items, separated by commas: # # - the transit day, in MM/DD/ format. # - the transit time, in HH:MM:SS format. # - the device ID, an identifer of the gate at which the rider entered. # - the station ID, a numeric identifier the station. # - the use type, whether the rider was entering, exiting, etc. # - a serial number, the unique identifier of the rider's Breeze Card. # #Your goal is to use this file to answer three questions: # # - What is the average number of Breeze Card taps per station? # - What is the station ID of the station whose traffic is the closest # to that average? # - What station has the least overall amount of traffic? # #Note that you will answer these questions in the fill-in-the-blank #problems below, _not_ in this coding exercise. So, you don't have to #programmatically find the station ID closest to the average: you could #just print all the stations and their averages, then visually check #which is closest to the average. # #To get you started, we've gone ahead and opened the file: marta_file = open('../resource/lib/public/marta_ 01-18-2016.csv', 'r') #You may add whatever code you want from here on to answer those three #questions. # #HINT: although there are six items on each line of the file, you only #need one of them: station ID. If you use split(",") to split up each #line, station ID will be at index 3 on the list. # #

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 13:30
Qr or codes let any piece of print host a link to online information.
Answers: 3
question
Computers and Technology, 22.06.2019 04:30
How can you know if the person or organization providing the information has the credentials and knowledge to speak on this topic? one clue is the type of web site it is--the domain name ".org" tells you that this site is run by a nonprofit organization.
Answers: 2
question
Computers and Technology, 22.06.2019 21:30
After you clean an engine with hot water spray, it seems to stall; when it doesn't stall, it's idling noisily. technician a says to check for loose bolts on the flex plate near the torque converter. technician b says to wipe down the spark plug wires and the distributor cap. who is correct? a. technician a b. both technicians a and b c. technician b
Answers: 1
question
Computers and Technology, 24.06.2019 00:40
Use a software program or a graphing utility with matrix capabilities to solve the system of linear equations using an inverse matrix. x1 + 2x2 − x3 + 3x4 − x5 = 6 x1 − 3x2 + x3 + 2x4 − x5 = −6 2x1 + x2 + x3 − 3x4 + x5 = 3 x1 − x2 + 2x3 + x4 − x5 = −3 2x1 + x2 − x3 + 2x4 + x5 = 5
Answers: 3
You know the right answer?
In this problem, we're giving you a file containing some real data from #the Marta (Atlanta's subway...
Questions
question
Mathematics, 24.10.2020 04:30
question
Mathematics, 24.10.2020 04:30
question
Mathematics, 24.10.2020 04:30
question
Mathematics, 24.10.2020 04:30
Questions on the website: 13722363