Data Science

From Wiki - Scioly.org
Jump to navigation Jump to search

Data Science is a Division C trial event held in Texas for the 2020 and 2021 seasons. It was founded by User:dkarkada, a member of ATX Science Olympiad. It is centered around statistics, programming knowledge, and basic machine learning concepts.

The Event

The event takes the form of a written test portion and a coding challenge portion. Competitors must bring writing utensils, but computers will be provided. The written test will cover Python syntax and statistics, as well as feature extraction. The coding challenge portion will take the form of a Jupyter Notebook with pre-existing code.

Python Syntax

Python does not require a user to declare variable types. Instead, when one wishes to use a variable, one simply needs to put down the variable name and either leave it alone or assign it a value. If-else statements and loops require a colon after the main statement. In order to create a class, one says class (enter class name here). So if someone wanted to make the Object class, someone could say class Object. Creating a method in a class uses def (so if someone wanted to make the findArea class someone could say def findArea)

Scoring

The written test is weighted more heavily, being 60% of the final score. The coding challenges are 40% of the final score and will be graded based on both correctness and using organized code.