CIS 6930 Spring 24

Logo

This is the web page for Data Engineering at the University of Florida.

View the Project on GitHub ufdatastudio/cis6930sp24

CIS 6930, Spring 2024 Assignment 3

End Pipeline

Introduction

In this assignment, you will create an interactive interface over the data you collected in assignment 2. This is the one of the later stages in the data pipeline. We want to display we the data to end users and also provide a method of feedback. The interface you will develop has the following aims.

  1. Create an interace to show show statistics over the collected data.
  2. Receive feedback to update the models used to generate the data.

Project description

In assignment 2, you obtained several data points from the Norman Police website. In this project, your goal is to visualize the data that you obtained.

Submission

README.md

The README file name should be uppercase with an .md extension. You should write your name in it, an example of how to run it, and a list of any web or external resources that you used for help. The README file should also contain a list of any bugs or assumptions made while writing the program. Note that you should not be copying code from any website not provided by the instructor. You should include directions on how to install and use the code. You should describe any known bugs and cite any sources or people you used for help. Be sure to include any assumptions you make for your solution.

COLLABORATORS file

This file should contain a comma-separated list describing who you worked with and a small text description describing the nature of the collaboration. This information should be listed in three fields as in the example is below:

Katherine Johnson, kj@nasa.gov, Helped me understand calculations
Dorothy Vaughan, doro@dod.gov, Helped me with multiplexed time management

Assignment Descriptions

Your code structure should be in a directory with something similar to the following format:

cis6930sp24-assignment3/
├── COLLABORATORS
├── LICENSE
├── README
├── Pipfile
├── src
│   └── ...
├── docs/
├── assignment2.py
├── setup.cfg
├── setup.py
└── tests/
└── video

Grading

Grades will be assessed according to the following distribution:

Resources


Back to Assignment List