Coder Social home page Coder Social logo

lab1's Introduction

Lab 1: Working with a Tour de France DataSet

... could be a tour de force.

  • This is the first lab activity and is intended to help you get acquainted with several Java features rather quickly.
  • You can work in pairs or alone for this activity. Pick a lab partner of your choice to work with.
  • You should submit your work by Monday, September 21, 9:00 a.m. Instructions for submitting your work will be announced along with instructions on submitting MP0.
  • Lab work submissions will be lightly reviewed and graded. For each lab task that you submit, you may offset deficiencies in specific machine problems. Submitting a correct implementation for Lab 1 may help you offset up to 0.5% (of the 3%) of marks lost in either MP0 or MP1 (not both). MP0 and MP1 each contribute 3% towards your final raw score.

For this lab activity, you will have to write a small amount of code but you should spend time reading the provided code to understand what you should write (which should, hopefully, be relatively straightforward) and also to understand how certain operations can be implemented in Java. Reading and learning from examples is one of the fastest ways to understand a new programming language. And do not hesitate in making changes and understanding what the impact of those changes is.

You will work with a real dataset that represents that contains information about the average speeds of different bicyclists (bikers?) in the Tour de France. The data was gathered from the 2005 to 2012 editions of the Tour de France. All this data is stored in a simple text file (tdf.txt) in a comma-separated-values (CSV) format. If you look at the dataset, you will see four columns in each line. Each column is separated by a comma. The first column represents the competition year. The second column represents the average speed for a bicyclist, and the third and fourth columns represent the last name and first name, respectively, of the bicyclists.

We want to compute:

  • The improvement from one edition of the Tour de France to the next for each bicyclist and then display that best improvement for each bicyclist. As an example, suppose Lance Armstrong improved his speed by 0.5 km/hr from 2005 to 2006, and then by 0.75 km/hr from 2006 to 2007, then his best improvement from these two data points is 0.75 km/hr. (I did make this example up because Lance Armstrong’s last Tour de France was in 2005. And no one really wants to talk about Lance…)
  • The median of all average speeds at the Tour de France between 2005 and 2012.
  • The median of medians: Compute the median speed for each bicyclist and then compute the median from among these medians.

The provided code should compile and run, except that it does not compute any of the required data. That is your task.

What the provided code does do is to:

  • Read data from the dataset;
  • Create an object per bicyclist (the associated class is Biker) where the bicyclist’s name and average speeds in the editions of the Tour de France they participated in are stored;
  • Invoke the incomplete method to get the best improvement for each bicyclist and display this data (initially all 0s).

What does the Biker class look like (see Biker.java)? It contains Strings for storing the bicyclist’s name and then it contains a Map that represents the pair <year, average speed>. For each bicyclist, given a year of participation, we can retrieve the bicyclist’s average speed in that year. A map is a data type that helps facilitate this form of storage.

The list of all bicyclists (see the variable allBikers in TdFMain.java) is also a map. This map helps us retrieve a bicyclist’s Biker object give the bicyclist’s full name. This map essentially stores the pair <full name, Biker object>. We can use this map to iterate over all the bicyclists that we have data for.

Read the provided source code carefully. You are explicitly told where you should write your own code. Do not change the program structure or the data types. You will be writing simple procedural code and you can learn from looking at the given implementation of other methods.

To better understand the Java features that are used, you may want to read/view the following:

Think about what an interface is. You will likely encounter this term in the readings/videos. We will discuss interfaces in more detail later.

===

Advice

  • Attend your lab section.
  • It is inefficient to expect to learn many language features before writing code. Dive right in! Eclipse can be your friend; in particular: use the code completion feature to see what options you have.
  • Use the Java documentation on the Sun/Oracle website. Learn to read it.
  • Ask for help early — but not too early!

lab1's People

Contributors

cpen221org avatar gsathish avatar shirleyx2000 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.