Student Life and Grade Correlation

Size: px
Start display at page:

Download "Student Life and Grade Correlation"

Transcription

1 CSC /04/17 Professor Mei Lu By David Judilla, Bryce Hairabedian, Justin Mendiguarin - Team 6 Student Life and Grade Correlation Objective Student life is not all one in the same. As students we all have different things going on in our life. Whether a student has a great family relationship, regularly attends class, or even has internet at home, these are all peripheral life circumstances. Our main objective for implementing the Student Life Grade Correlation data mart is to benefit educational entities. By being able to explore the data mart through our web interface, Faculty, Staff, and even students will be able to see if certain life circumstances like family support will generally affect a student's performance. 1

2 Goals Three Goals we would like to achieve with our data mart. 1. Faculty & Staff for gaining better understanding of factors that can affect student performance. 2. Educational entities can gain a general understanding of the student demographic correlating to a certain grade range. 3. Students or educational entities can find grade distribution and correlation to time a student spends outside the classroom. Student Life Grade Correlation can help in the following areas: A. Find the correlation between Grade received and circumstances such as; - Age - Absences - Failures in the Past - Family Relationship - Free Time - Going Out with Friends - Daily Alcohol Consumption - Weekly Alcohol Consumption - Health B. Depending on grade received, what is the most commonly reported statistic for; - Internet Access at home - Attending Nursery School - In romantic relationship - Extra educational support - Sex - Study Time - Travel Time - Age - Absences - Failures in the Past - Family Relationship - Free Time - Going Out with Friends - Daily Alcohol Consumption - Weekly Alcohol Consumption - Health 2

3 C. Find the grade distribution depending on a time circumstance value. Such as low amount of free time, how many students get a high score. The data mart will also provide grade distribution for other time factors such as; - Travel Time - Free Time - Time spent out with friends - Study Time Background Information The data comes from the UCI Machine Learning Repository website ( Titled Student Performance Data Set. The data set consists of a survey of high school level students in Portugal. The survey was taken over the course of the 2008 school year from two different schools and two different courses, Mathematics and Language (Portuguese.) There were 395 recorded students for mathematics and 649 student records for Language. Combining to a total of 1044 student records from both schools and both subjects. The survey consists of multiple student life attributes or facts. Facts such as family size, study time, health. Grades were recorded three times over the course of the school year, two progress reports and one final grade. The Student Performance Data Set contains the following attributes; school - student's school (binary: "GP" - Gabriel Pereira or "MS" - Mousinho da Silveira) sex - student's sex (binary: "F" - female or "M" - male) age - student's age (numeric: from 15 to 22) address - student's home address type (binary: "U" - urban or "R" - rural) famsize - family size (binary: "LE3" - less or equal to 3 or "GT3" - greater than 3) Pstatus - parent's cohabitation status (binary: "T" - living together or "A" - apart) Medu - mother's education (numeric: 0 - none, 1 - primary education (4th grade), 2 5th to 9th grade, 3 secondary education or 4 higher education) Fedu - father's education (numeric: 0 - none, 1 - primary education (4th grade), 2 5th to 9th grade, 3 secondary education or 4 higher education) Mjob - mother's job (nominal: "teacher", "health" care related, civil "services" (e.g. administrative or police), "at_home" or "other") Fjob - father's job (nominal: "teacher", "health" care related, civil "services" (e.g. administrative or police), "at_home" or "other") reason - reason to choose this school (nominal: close to "home", school "reputation", "course" preference or "other") guardian - student's guardian (nominal: "mother", "father" or "other") traveltime - home to school travel time (numeric: 1 - <15 min., 2-15 to 30 min., 3-30 min. to 1 hour, or 4 - >1 hour) 3

4 studytime - weekly study time (numeric: 1 - <2 hours, 2-2 to 5 hours, 3-5 to 10 hours, or 4 - >10 hours) failures - number of past class failures (numeric: n if 1<=n<3, else 4) schoolsup - extra educational support (binary: yes or no) famsup - family educational support (binary: yes or no) paid - extra paid classes within the course subject (Math or Portuguese) (binary: yes or no) activities - extra-curricular activities (binary: yes or no) nursery - attended nursery school (binary: yes or no) higher - wants to take higher education (binary: yes or no) internet - Internet access at home (binary: yes or no) romantic - with a romantic relationship (binary: yes or no) famrel - quality of family relationships (numeric: from 1 - very bad to 5 - excellent) freetime - free time after school (numeric: from 1 - very low to 5 - very high) goout - going out with friends (numeric: from 1 - very low to 5 - very high) Dalc - workday alcohol consumption (numeric: from 1 - very low to 5 - very high) Walc - weekend alcohol consumption (numeric: from 1 - very low to 5 - very high) health - current health status (numeric: from 1 - very bad to 5 - very good) absences - number of school absences (numeric: from 0 to 93) Grade recordings; 31 G1 - first period grade (numeric: from 0 to 20) 31 G2 - second period grade (numeric: from 0 to 20) 32 G3 - final grade (numeric: from 0 to 20, output target) 4

5 Design An overview of our design for the data warehouse & data mart consists of merging, cleaning, reducing, and transforming the data before final design of the star schema. 5

6 Data Preprocessing The data did not require extensive cleaning as the data was already parsed into two separate CSV files. The cleaning included merging both of the flat student record files with a full join in R-Studio. The full join was used because all the same columns and facts were recorded in both sets. The initial data sets did not have an ID field so a column was added and placed firsts as the Student ID. Data reduction focused on removing unnecessary facts from the student records. The two facts removed from the data set were reason and school. We felt the attribute reason (reason for choosing to attend this school) and the attribute school (school attended) was not valuable to our goals of the data mart or data mining. Transforming the data was done on two levels. The initial level included relabeling all the binary survey facts. Facts such as Internet at Home got mapped from yes s & no s to 0 s & 1 s. The other level of data transformation took place on the client data mart web application. In this setting we map the students Portuguese grading scale (0-20) to a grading scale most are familiar with (percentage grades.) We also map their grades results to display meaningful information to how well the student performed (from Excellent to Poor) making it relatable to all audiences. 6

7 Final Star Schema Design The final star schema resulted in 1 fact table and 4 dimensional tables shown below. Student Fact table contains the basic information relating to the student and all grades recorded. Home Life dimensional table includes any facts dealing with life at home; mother and father s education, parents marital status, students guardian, family size, address is rural or urban, internet at home, mother and father s occupation, daily and weekly alcohol consumption. Relationships dimensional table contains any facts relating to human relationships; family relationship, family support, romantic relationship. Educational dimensional table includes all facts relating to education in the student's life, excluding grades; failures in the past, absences, paid classes, tutoring, wants to attend college. Time dimensional table contains time related factors in student life; time to travel to school, study time, free time, and how much the student goes out. 7

8 Data Mart Web Application Data Mart Implementation Client Side: The datamart client is built with the Model View Controller web app. The website is a single page that serves the user from multiple API calls to server. AngularJS framework was used to call the backend server API for easy JSON resolution. HTML5, CSS, and Bootstrap were used to make the UI user and mobile friendly. Google Charts API was used for visualization on the web app, displaying rich and dynamic charts. Server Side: Currently called a RESTful service in industry the its sole purpose is to query our SQLite database and send back a JSON object depending on which endpoint you query. The server was written in python using flask (micro web framework) running locally. So when demoed the server was running on a local host ( <api endpoint>) when demoed. The client side website/web-app calls the server with three main api endpoints; /getgradefromcol? (@param column column value) : Returns the final grade distribution dependent upon user selected column name and value /gradestocol?(@param column) : returns a JSON object with array all the averages of a given column for all grades /gradeavgstats? (@param grade) : returns JSON object with array of most common value for each column for a selected grade If a valid argument is passed the server will query the SQLite database and return the results in form of a JSON object. The object is then parsed on the client side for displaying the chart or table depending upon user input. Data Mart Use The data mart web app is divided into three sections. The three sections were created with these goals in mind; 1. Faculty & Staff for gaining better understanding of factors that can affect student performance. 2. Educational entities can gain a general understanding of the student demographic correlating to a certain grade range. 3. Students or educational entities can find grade distribution and correlation to time a student spends outside the classroom. 1. The first section, Line Graph, is meant to show correlation between distributed students grade averages and a certain fact of relationship, time, education, or home life. 8

9 a. Select the the certain tuple you would like to see from the drop down menu then select Submit. b. Select Submit, a line graph will be shown with the particular fact fluctuation as the grade percentage increases. 2. The next section down on the data mart web app is the most common attribute table. This table will show the most commonly recorded value for all the attributes in the survey for a certain grade range. a. Choose the grade range you would like to see from the drop down menu. b. Select Submit to see all facts results of the most commonly recorded value. 3. The third section is aimed towards exploring time factors and how it may affect a student s performance by showing a final grade distribution dependent upon a time factor and a high-low range. a. First select a time factor attribute you would like to see the grade distribution for. b. Second select a range (4 = High to 1 = Low) of the time attribute you have selected. i. The value of the range is relative to the student. For example if a student rated Free Time as a 4 this would be the highest, so the student has a lot of free time. c. Select Submit to see the distribution of grades on the donut chart. Data Mining Introduction For the data mining portion of the project we aimed to answer one question, "Can we predict a student's grade", given the other columns in our dataset. The columns of the dataset contained information highly coupled to a student's performance in school (e.g. age, absences, final grade, etc.). The dataset contained 1044 rows of information. We decided on using an 80/20 threshold process, where 836 Rows (80%) were used for the training set and 208 rows (20%) were used for the test set. The primary tool used for data mining was R Studio and a machine learning algorithm called Random Forest. Machine Learning Algorithm - Random Forest To do predictions, the Random Forest machine learning algorithm was used. Random Forest was appealing to the problem at hand because it was able to handle both regression and classification problems where at the early stages of the project, it was unknown which type of question (regression or classification) the experiment would be solving. Random Forest is also very similar to some of the decision tree algorithms that were learned in class, but the main difference being that Random Forest is an ensemble learning 9

10 algorithm, where it creates a defined number of decision trees and uses the mean or mode of all the trees to create a prediction model. Advantages: Above average accuracy rate Resistant, but not immune, to overfitting Doesn't require crossover validation Each decision tree created gets a new bootstrap sample which removes the need for crossover validation. Disadvantages: Model creation takes a notable amount of time Creating a Random Forest of 2000 decision trees took 30 seconds, which could be an issue if wanted to use Random Forest in live production predictions Outputted result isn't easily interpreted, like a simple decision tree would. Variable Importance Another advantage of using Random Forest was that it can provided the importance of each column/variable in the dataset. %IncMSE is the amount of influence a variable has on the accuracy of the model. So from the graphs shown above, it can be inferred that when failures are used in the decision tree the accuracy of the model increases by about 60%. Variables that have very little influence on the grade predictions can also be seen, like after school activities and family relationship quality. 10

11 Grade Prediction - Regression For the regression problem of predicting a student's final grade ("G3", see above), a numerical value from Two sets of variables were used for the predictions. One set with all columns, but G3, And another set containing all columns, but G1, G2, and G3. 11

12 Sample of Results Data Frame During this portion of the analysis, an assumption was made where a correct prediction was when the difference between the predicted and actual grade was less than or equal to 2. With those assumptions, an accuracy of 74.4% was found when predicting without a student's previous grades, and a 95.3% accuracy with the student's previous grades. Plotting the actual grades against the predicted grades shows that without previous grades the predictions have a larger amount of deviation as compared to when the student's previous grades are used, which is clearly linear and has less deviation 12

13 Grade Prediction - Classification The biggest glaring issue for the regression predictions, was that there was an assumption was made that a predicted grade within 2 points of its actual was a correct prediction. The only problem here being that 2 points is a whole letter grade in Portugal (2/20 =.1), which could be the difference between a passing and failing grade. The solution for this problem was to turn the regression problem into a classification problem, where a new column, `pass`, was created in the data frame, expressing whether or not a student passed the class (True or False). The Random Forest formula was then altered to predict for the new column, `pass`. 13

14 Without Previous Grades Conclusion As previously stated, through the experiment classification and regressional predictions were made using two sets of columns as independent variables (With and without the student's previous grades). 14

15 Regression without Regression with previous grades % accuracy previous grades % accuracy Classification without previous grades % accuracy Classification with previous grades % accuracy Both experiments resulted with above average accuracies. Predicting a student's grade using previous grades resulted in ~10-20% higher accuracies, compared to without previous grades. What can be taken away from this is that in future studies/predictions of student grades, one of the most important survey questions to ask would be for a student's previous grades in a similar subject. Improvements to this experiment could be made by having a student's previous grades from a different class/subject. The previous grades used in this experiment were essentially progress report grades from the course taken. It would be interesting to see how well grades from a history course can predict grade for a math course. Data Mining Notes: References from P. Cortez and A. Silva (See reference #4) were used to validate design choices for the data mining portion of this project. Cortez and Silva made similar decisions for their analysis in that they chose multiple sets of variables for their model (i.e. with and without previous grades), but chose to be more granular in their variable sets, in that they made 3 variable sets, where each had all other variables but then only G1, G2, and G3, respectively. They also changed their regression problem into a classification problem just as we did, but for a different reason, where we changed our problem because we made assumptions that we thought could lead to erroneous results. Learning Experience such as experiments and readings Working with R. A very different language than I have encountered before R is such a statistical driven language. Use of this tool in the future would be beneficial for some of my more mathematical application. Visualizing data. Use of different API s for charts and graphs. Creating efficient Star Schemas 15

16 References 1. Student Performance Data Set 2. Portuguese Grading Scale High School and College 3. R Package - Dplyr - Easy Merging 4. P. Cortez and A. Silva. Using Data Mining to Predict Secondary School Student Performance. In A. Brito and J. Teixeira Eds., Proceedings of 5th FUture BUsiness TEChnology Conference (FUBUTEC 2008) pp. 5-12, Porto, Portugal, April, 2008, EUROSIS, ISBN "Titanic: Getting Started With R - Part 5: Random Forests." Trevor Stephens. N.p., 18 Jan Web. 15 May Bagging vs Boosting vs Stacking in Machine Learning chine-learning 7. Association Rule Mining 8. " Data Mining: Practical Machine Learning Tools and Techniques with Java Implementations " by Ian H. Witten, Eibe Frank, and Mark A. Hall, 3rd edition, Morgan Kaufmann "The Data Warehouse Toolkit: The Complete Guide to Dimensional Modeling" by Ralph Kimball and Magy Ross, Wiley; 2nd edition "Data Mining: Introductory and Advanced Topics" by Margaret Dunham, Prentice Hall

17 Appendix (optional) containing a set of supporting material such as examples, sample demo sessions, and any information that reflects your effort regarding the project. Sample Cleaning in R-Studio Below both flat files read into tables mathstud and portstud together they contain all records within the student performance data set. Dplyr library was used for easy joining. Each student record was then given an ID as the primary key and will be foreign key once dimensional tables are created. ID was put as first column for easy reading. Sample Transformation in R-Studio Below is some of the data transformation. Change labels from Yes, No to 0, 1. Sample data mart query for time factors Server side sample query shown below for the donut graph on the data mart web-app. Pulled from server.py line

18 Below cur is the cursor that is executing the SQLite query. {0} is mapped to the first parameter column name and {1} is mapped to the second column value. cur.execute(""" SELECT G3 FROM Student, Time WHERE {0} = {1} & Student.id = Time.id """.format(colname, colvalue)) 18

Python Machine Learning

Python Machine Learning Python Machine Learning Unlock deeper insights into machine learning with this vital guide to cuttingedge predictive analytics Sebastian Raschka [ PUBLISHING 1 open source I community experience distilled

More information

CS Machine Learning

CS Machine Learning CS 478 - Machine Learning Projects Data Representation Basic testing and evaluation schemes CS 478 Data and Testing 1 Programming Issues l Program in any platform you want l Realize that you will be doing

More information

Learning From the Past with Experiment Databases

Learning From the Past with Experiment Databases Learning From the Past with Experiment Databases Joaquin Vanschoren 1, Bernhard Pfahringer 2, and Geoff Holmes 2 1 Computer Science Dept., K.U.Leuven, Leuven, Belgium 2 Computer Science Dept., University

More information

On-Line Data Analytics

On-Line Data Analytics International Journal of Computer Applications in Engineering Sciences [VOL I, ISSUE III, SEPTEMBER 2011] [ISSN: 2231-4946] On-Line Data Analytics Yugandhar Vemulapalli #, Devarapalli Raghu *, Raja Jacob

More information

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence

Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence Business Analytics and Information Tech COURSE NUMBER: 33:136:494 COURSE TITLE: Data Mining and Business Intelligence COURSE DESCRIPTION This course presents computing tools and concepts for all stages

More information

Assignment 1: Predicting Amazon Review Ratings

Assignment 1: Predicting Amazon Review Ratings Assignment 1: Predicting Amazon Review Ratings 1 Dataset Analysis Richard Park r2park@acsmail.ucsd.edu February 23, 2015 The dataset selected for this assignment comes from the set of Amazon reviews for

More information

Twitter Sentiment Classification on Sanders Data using Hybrid Approach

Twitter Sentiment Classification on Sanders Data using Hybrid Approach IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 17, Issue 4, Ver. I (July Aug. 2015), PP 118-123 www.iosrjournals.org Twitter Sentiment Classification on Sanders

More information

TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE. Pierre Foy

TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE. Pierre Foy TIMSS ADVANCED 2015 USER GUIDE FOR THE INTERNATIONAL DATABASE Pierre Foy TIMSS Advanced 2015 orks User Guide for the International Database Pierre Foy Contributors: Victoria A.S. Centurino, Kerry E. Cotter,

More information

Android App Development for Beginners

Android App Development for Beginners Description Android App Development for Beginners DEVELOP ANDROID APPLICATIONS Learning basics skills and all you need to know to make successful Android Apps. This course is designed for students who

More information

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X

The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, / X The 9 th International Scientific Conference elearning and software for Education Bucharest, April 25-26, 2013 10.12753/2066-026X-13-154 DATA MINING SOLUTIONS FOR DETERMINING STUDENT'S PROFILE Adela BÂRA,

More information

Rule Learning With Negation: Issues Regarding Effectiveness

Rule Learning With Negation: Issues Regarding Effectiveness Rule Learning With Negation: Issues Regarding Effectiveness S. Chua, F. Coenen, G. Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX Liverpool, United

More information

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition

Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Introduction to Ensemble Learning Featuring Successes in the Netflix Prize Competition Todd Holloway Two Lecture Series for B551 November 20 & 27, 2007 Indiana University Outline Introduction Bias and

More information

OFFICE SUPPORT SPECIALIST Technical Diploma

OFFICE SUPPORT SPECIALIST Technical Diploma OFFICE SUPPORT SPECIALIST Technical Diploma Program Code: 31-106-8 our graduates INDEMAND 2017/2018 mstc.edu administrative professional career pathway OFFICE SUPPORT SPECIALIST CUSTOMER RELATIONSHIP PROFESSIONAL

More information

Your School and You. Guide for Administrators

Your School and You. Guide for Administrators Your School and You Guide for Administrators Table of Content SCHOOLSPEAK CONCEPTS AND BUILDING BLOCKS... 1 SchoolSpeak Building Blocks... 3 ACCOUNT... 4 ADMIN... 5 MANAGING SCHOOLSPEAK ACCOUNT ADMINISTRATORS...

More information

Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design

Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Session 2B From understanding perspectives to informing public policy the potential and challenges for Q findings to inform survey design Paper #3 Five Q-to-survey approaches: did they work? Job van Exel

More information

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur

Module 12. Machine Learning. Version 2 CSE IIT, Kharagpur Module 12 Machine Learning 12.1 Instructional Objective The students should understand the concept of learning systems Students should learn about different aspects of a learning system Students should

More information

Mining Association Rules in Student s Assessment Data

Mining Association Rules in Student s Assessment Data www.ijcsi.org 211 Mining Association Rules in Student s Assessment Data Dr. Varun Kumar 1, Anupama Chadha 2 1 Department of Computer Science and Engineering, MVN University Palwal, Haryana, India 2 Anupama

More information

IS FINANCIAL LITERACY IMPROVED BY PARTICIPATING IN A STOCK MARKET GAME?

IS FINANCIAL LITERACY IMPROVED BY PARTICIPATING IN A STOCK MARKET GAME? 21 JOURNAL FOR ECONOMIC EDUCATORS, 10(1), SUMMER 2010 IS FINANCIAL LITERACY IMPROVED BY PARTICIPATING IN A STOCK MARKET GAME? Cynthia Harter and John F.R. Harter 1 Abstract This study investigates the

More information

November 17, 2017 ARIZONA STATE UNIVERSITY. ADDENDUM 3 RFP Digital Integrated Enrollment Support for Students

November 17, 2017 ARIZONA STATE UNIVERSITY. ADDENDUM 3 RFP Digital Integrated Enrollment Support for Students November 17, 2017 ARIZONA STATE UNIVERSITY ADDENDUM 3 RFP 331801 Digital Integrated Enrollment Support for Students Please note the following answers to questions that were asked prior to the deadline

More information

Impact of Cluster Validity Measures on Performance of Hybrid Models Based on K-means and Decision Trees

Impact of Cluster Validity Measures on Performance of Hybrid Models Based on K-means and Decision Trees Impact of Cluster Validity Measures on Performance of Hybrid Models Based on K-means and Decision Trees Mariusz Łapczy ski 1 and Bartłomiej Jefma ski 2 1 The Chair of Market Analysis and Marketing Research,

More information

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler

Machine Learning and Data Mining. Ensembles of Learners. Prof. Alexander Ihler Machine Learning and Data Mining Ensembles of Learners Prof. Alexander Ihler Ensemble methods Why learn one classifier when you can learn many? Ensemble: combine many predictors (Weighted) combina

More information

GACE Computer Science Assessment Test at a Glance

GACE Computer Science Assessment Test at a Glance GACE Computer Science Assessment Test at a Glance Updated May 2017 See the GACE Computer Science Assessment Study Companion for practice questions and preparation resources. Assessment Name Computer Science

More information

MINUTE TO WIN IT: NAMING THE PRESIDENTS OF THE UNITED STATES

MINUTE TO WIN IT: NAMING THE PRESIDENTS OF THE UNITED STATES MINUTE TO WIN IT: NAMING THE PRESIDENTS OF THE UNITED STATES THE PRESIDENTS OF THE UNITED STATES Project: Focus on the Presidents of the United States Objective: See how many Presidents of the United States

More information

Rule Learning with Negation: Issues Regarding Effectiveness

Rule Learning with Negation: Issues Regarding Effectiveness Rule Learning with Negation: Issues Regarding Effectiveness Stephanie Chua, Frans Coenen, and Grant Malcolm University of Liverpool Department of Computer Science, Ashton Building, Ashton Street, L69 3BX

More information

Experiment Databases: Towards an Improved Experimental Methodology in Machine Learning

Experiment Databases: Towards an Improved Experimental Methodology in Machine Learning Experiment Databases: Towards an Improved Experimental Methodology in Machine Learning Hendrik Blockeel and Joaquin Vanschoren Computer Science Dept., K.U.Leuven, Celestijnenlaan 200A, 3001 Leuven, Belgium

More information

Lecture 1: Machine Learning Basics

Lecture 1: Machine Learning Basics 1/69 Lecture 1: Machine Learning Basics Ali Harakeh University of Waterloo WAVE Lab ali.harakeh@uwaterloo.ca May 1, 2017 2/69 Overview 1 Learning Algorithms 2 Capacity, Overfitting, and Underfitting 3

More information

NCEO Technical Report 27

NCEO Technical Report 27 Home About Publications Special Topics Presentations State Policies Accommodations Bibliography Teleconferences Tools Related Sites Interpreting Trends in the Performance of Special Education Students

More information

(Sub)Gradient Descent

(Sub)Gradient Descent (Sub)Gradient Descent CMSC 422 MARINE CARPUAT marine@cs.umd.edu Figures credit: Piyush Rai Logistics Midterm is on Thursday 3/24 during class time closed book/internet/etc, one page of notes. will include

More information

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes

Stacks Teacher notes. Activity description. Suitability. Time. AMP resources. Equipment. Key mathematical language. Key processes Stacks Teacher notes Activity description (Interactive not shown on this sheet.) Pupils start by exploring the patterns generated by moving counters between two stacks according to a fixed rule, doubling

More information

AQUA: An Ontology-Driven Question Answering System

AQUA: An Ontology-Driven Question Answering System AQUA: An Ontology-Driven Question Answering System Maria Vargas-Vera, Enrico Motta and John Domingue Knowledge Media Institute (KMI) The Open University, Walton Hall, Milton Keynes, MK7 6AA, United Kingdom.

More information

STA 225: Introductory Statistics (CT)

STA 225: Introductory Statistics (CT) Marshall University College of Science Mathematics Department STA 225: Introductory Statistics (CT) Course catalog description A critical thinking course in applied statistical reasoning covering basic

More information

VOCATIONAL QUALIFICATION IN YOUTH AND LEISURE INSTRUCTION 2009

VOCATIONAL QUALIFICATION IN YOUTH AND LEISURE INSTRUCTION 2009 Requirements for Vocational Qualifications VOCATIONAL QUALIFICATION IN YOUTH AND LEISURE INSTRUCTION 2009 Regulation 17/011/2009 Publications 2013:4 Publications 2013:4 Requirements for Vocational Qualifications

More information

Research computing Results

Research computing Results About Online Surveys Support Contact Us Online Surveys Develop, launch and analyse Web-based surveys My Surveys Create Survey My Details Account Details Account Users You are here: Research computing Results

More information

Unit 7 Data analysis and design

Unit 7 Data analysis and design 2016 Suite Cambridge TECHNICALS LEVEL 3 IT Unit 7 Data analysis and design A/507/5007 Guided learning hours: 60 Version 2 - revised May 2016 *changes indicated by black vertical line ocr.org.uk/it LEVEL

More information

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS

OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS OPTIMIZATINON OF TRAINING SETS FOR HEBBIAN-LEARNING- BASED CLASSIFIERS Václav Kocian, Eva Volná, Michal Janošek, Martin Kotyrba University of Ostrava Department of Informatics and Computers Dvořákova 7,

More information

Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming

Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming Data Mining VI 205 Rule discovery in Web-based educational systems using Grammar-Based Genetic Programming C. Romero, S. Ventura, C. Hervás & P. González Universidad de Córdoba, Campus Universitario de

More information

Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering

Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering Spring 2014 SYLLABUS Michigan State University STT 430: Probability and Statistics for Engineering Time and Place: MW 3:00-4:20pm, A126 Wells Hall Instructor: Dr. Marianne Huebner Office: A-432 Wells Hall

More information

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview

Algebra 1, Quarter 3, Unit 3.1. Line of Best Fit. Overview Algebra 1, Quarter 3, Unit 3.1 Line of Best Fit Overview Number of instructional days 6 (1 day assessment) (1 day = 45 minutes) Content to be learned Analyze scatter plots and construct the line of best

More information

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape

Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Lip reading: Japanese vowel recognition by tracking temporal changes of lip shape Koshi Odagiri 1, and Yoichi Muraoka 1 1 Graduate School of Fundamental/Computer Science and Engineering, Waseda University,

More information

Measurement & Analysis in the Real World

Measurement & Analysis in the Real World Measurement & Analysis in the Real World Tools for Cleaning Messy Data Will Hayes SEI Robert Stoddard SEI Rhonda Brown SEI Software Solutions Conference 2015 November 16 18, 2015 Copyright 2015 Carnegie

More information

Shared Portable Moodle Taking online learning offline to support disadvantaged students

Shared Portable Moodle Taking online learning offline to support disadvantaged students Shared Portable Moodle Taking online learning offline to support disadvantaged students Stephen Grono, School of Education University of New England, Armidale sgrono2@une.edu.au @calvinbal Shared Portable

More information

CS 446: Machine Learning

CS 446: Machine Learning CS 446: Machine Learning Introduction to LBJava: a Learning Based Programming Language Writing classifiers Christos Christodoulopoulos Parisa Kordjamshidi Motivation 2 Motivation You still have not learnt

More information

ScienceDirect. A Framework for Clustering Cardiac Patient s Records Using Unsupervised Learning Techniques

ScienceDirect. A Framework for Clustering Cardiac Patient s Records Using Unsupervised Learning Techniques Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 98 (2016 ) 368 373 The 6th International Conference on Current and Future Trends of Information and Communication Technologies

More information

SASKATCHEWAN MINISTRY OF ADVANCED EDUCATION

SASKATCHEWAN MINISTRY OF ADVANCED EDUCATION SASKATCHEWAN MINISTRY OF ADVANCED EDUCATION Report March 2017 Report compiled by Insightrix Research Inc. 1 3223 Millar Ave. Saskatoon, Saskatchewan T: 1-866-888-5640 F: 1-306-384-5655 Table of Contents

More information

Detecting English-French Cognates Using Orthographic Edit Distance

Detecting English-French Cognates Using Orthographic Edit Distance Detecting English-French Cognates Using Orthographic Edit Distance Qiongkai Xu 1,2, Albert Chen 1, Chang i 1 1 The Australian National University, College of Engineering and Computer Science 2 National

More information

Ryerson University Sociology SOC 483: Advanced Research and Statistics

Ryerson University Sociology SOC 483: Advanced Research and Statistics Ryerson University Sociology SOC 483: Advanced Research and Statistics Prerequisites: SOC 481 Instructor: Paul S. Moore E-mail: psmoore@ryerson.ca Office: Sociology Department Jorgenson JOR 306 Phone:

More information

Course Content Concepts

Course Content Concepts CS 1371 SYLLABUS, Fall, 2017 Revised 8/6/17 Computing for Engineers Course Content Concepts The students will be expected to be familiar with the following concepts, either by writing code to solve problems,

More information

2 nd grade Task 5 Half and Half

2 nd grade Task 5 Half and Half 2 nd grade Task 5 Half and Half Student Task Core Idea Number Properties Core Idea 4 Geometry and Measurement Draw and represent halves of geometric shapes. Describe how to know when a shape will show

More information

A Case Study: News Classification Based on Term Frequency

A Case Study: News Classification Based on Term Frequency A Case Study: News Classification Based on Term Frequency Petr Kroha Faculty of Computer Science University of Technology 09107 Chemnitz Germany kroha@informatik.tu-chemnitz.de Ricardo Baeza-Yates Center

More information

Theory of Probability

Theory of Probability Theory of Probability Class code MATH-UA 9233-001 Instructor Details Prof. David Larman Room 806,25 Gordon Street (UCL Mathematics Department). Class Details Fall 2013 Thursdays 1:30-4-30 Location to be

More information

An OO Framework for building Intelligence and Learning properties in Software Agents

An OO Framework for building Intelligence and Learning properties in Software Agents An OO Framework for building Intelligence and Learning properties in Software Agents José A. R. P. Sardinha, Ruy L. Milidiú, Carlos J. P. Lucena, Patrick Paranhos Abstract Software agents are defined as

More information

Australia s tertiary education sector

Australia s tertiary education sector Australia s tertiary education sector TOM KARMEL NHI NGUYEN NATIONAL CENTRE FOR VOCATIONAL EDUCATION RESEARCH Paper presented to the Centre for the Economics of Education and Training 7 th National Conference

More information

Instructor: Mario D. Garrett, Ph.D. Phone: Office: Hepner Hall (HH) 100

Instructor: Mario D. Garrett, Ph.D.   Phone: Office: Hepner Hall (HH) 100 San Diego State University School of Social Work 610 COMPUTER APPLICATIONS FOR SOCIAL WORK PRACTICE Statistical Package for the Social Sciences Office: Hepner Hall (HH) 100 Instructor: Mario D. Garrett,

More information

Using Calculators for Students in Grades 9-12: Geometry. Re-published with permission from American Institutes for Research

Using Calculators for Students in Grades 9-12: Geometry. Re-published with permission from American Institutes for Research Using Calculators for Students in Grades 9-12: Geometry Re-published with permission from American Institutes for Research Using Calculators for Students in Grades 9-12: Geometry By: Center for Implementing

More information

Web as Corpus. Corpus Linguistics. Web as Corpus 1 / 1. Corpus Linguistics. Web as Corpus. web.pl 3 / 1. Sketch Engine. Corpus Linguistics

Web as Corpus. Corpus Linguistics. Web as Corpus 1 / 1. Corpus Linguistics. Web as Corpus. web.pl 3 / 1. Sketch Engine. Corpus Linguistics (L615) Markus Dickinson Department of Linguistics, Indiana University Spring 2013 The web provides new opportunities for gathering data Viable source of disposable corpora, built ad hoc for specific purposes

More information

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design. Name: Partner(s): Lab #1 The Scientific Method Due 6/25 Objective The lab is designed to remind you how to work with scientific data (including dealing with uncertainty) and to review experimental design.

More information

Welcome to. ECML/PKDD 2004 Community meeting

Welcome to. ECML/PKDD 2004 Community meeting Welcome to ECML/PKDD 2004 Community meeting A brief report from the program chairs Jean-Francois Boulicaut, INSA-Lyon, France Floriana Esposito, University of Bari, Italy Fosca Giannotti, ISTI-CNR, Pisa,

More information

EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016

EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016 EDCI 699 Statistics: Content, Process, Application COURSE SYLLABUS: SPRING 2016 Instructor: Dr. Katy Denson, Ph.D. Office Hours: Because I live in Albuquerque, New Mexico, I won t have office hours. But

More information

Evaluation of a College Freshman Diversity Research Program

Evaluation of a College Freshman Diversity Research Program Evaluation of a College Freshman Diversity Research Program Sarah Garner University of Washington, Seattle, Washington 98195 Michael J. Tremmel University of Washington, Seattle, Washington 98195 Sarah

More information

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF

ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Read Online and Download Ebook ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY DOWNLOAD EBOOK : ADVANCED MACHINE LEARNING WITH PYTHON BY JOHN HEARTY PDF Click link bellow and free register to download

More information

CSL465/603 - Machine Learning

CSL465/603 - Machine Learning CSL465/603 - Machine Learning Fall 2016 Narayanan C Krishnan ckn@iitrpr.ac.in Introduction CSL465/603 - Machine Learning 1 Administrative Trivia Course Structure 3-0-2 Lecture Timings Monday 9.55-10.45am

More information

A Neural Network GUI Tested on Text-To-Phoneme Mapping

A Neural Network GUI Tested on Text-To-Phoneme Mapping A Neural Network GUI Tested on Text-To-Phoneme Mapping MAARTEN TROMPPER Universiteit Utrecht m.f.a.trompper@students.uu.nl Abstract Text-to-phoneme (T2P) mapping is a necessary step in any speech synthesis

More information

Strategy and Design of ICT Services

Strategy and Design of ICT Services Strategy and Design of IT Services T eaching P lan Telecommunications Engineering Strategy and Design of ICT Services Teaching guide Activity Plan Academic year: 2011/12 Term: 3 Project Name: Strategy

More information

Computerized Adaptive Psychological Testing A Personalisation Perspective

Computerized Adaptive Psychological Testing A Personalisation Perspective Psychology and the internet: An European Perspective Computerized Adaptive Psychological Testing A Personalisation Perspective Mykola Pechenizkiy mpechen@cc.jyu.fi Introduction Mixed Model of IRT and ES

More information

(Includes a Detailed Analysis of Responses to Overall Satisfaction and Quality of Academic Advising Items) By Steve Chatman

(Includes a Detailed Analysis of Responses to Overall Satisfaction and Quality of Academic Advising Items) By Steve Chatman Report #202-1/01 Using Item Correlation With Global Satisfaction Within Academic Division to Reduce Questionnaire Length and to Raise the Value of Results An Analysis of Results from the 1996 UC Survey

More information

Indian Statistical Institute Indian Institute of Technology Kharagpur Indian Institute of Management Calcutta

Indian Statistical Institute Indian Institute of Technology Kharagpur Indian Institute of Management Calcutta Indian Statistical Institute Indian Institute of Technology Kharagpur Indian Institute of Management Calcutta Post Graduate Diploma in Business Analytics (PGDBA) Application Form for Personal Interview

More information

Introduction to Causal Inference. Problem Set 1. Required Problems

Introduction to Causal Inference. Problem Set 1. Required Problems Introduction to Causal Inference Problem Set 1 Professor: Teppei Yamamoto Due Friday, July 15 (at beginning of class) Only the required problems are due on the above date. The optional problems will not

More information

Axiom 2013 Team Description Paper

Axiom 2013 Team Description Paper Axiom 2013 Team Description Paper Mohammad Ghazanfari, S Omid Shirkhorshidi, Farbod Samsamipour, Hossein Rahmatizadeh Zagheli, Mohammad Mahdavi, Payam Mohajeri, S Abbas Alamolhoda Robotics Scientific Association

More information

Ministry of Education, Republic of Palau Executive Summary

Ministry of Education, Republic of Palau Executive Summary Ministry of Education, Republic of Palau Executive Summary Student Consultant, Jasmine Han Community Partner, Edwel Ongrung I. Background Information The Ministry of Education is one of the eight ministries

More information

WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT

WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT WE GAVE A LAWYER BASIC MATH SKILLS, AND YOU WON T BELIEVE WHAT HAPPENED NEXT PRACTICAL APPLICATIONS OF RANDOM SAMPLING IN ediscovery By Matthew Verga, J.D. INTRODUCTION Anyone who spends ample time working

More information

Learning Microsoft Office Excel

Learning Microsoft Office Excel A Correlation and Narrative Brief of Learning Microsoft Office Excel 2010 2012 To the Tennessee for Tennessee for TEXTBOOK NARRATIVE FOR THE STATE OF TENNESEE Student Edition with CD-ROM (ISBN: 9780135112106)

More information

Laboratorio di Intelligenza Artificiale e Robotica

Laboratorio di Intelligenza Artificiale e Robotica Laboratorio di Intelligenza Artificiale e Robotica A.A. 2008-2009 Outline 2 Machine Learning Unsupervised Learning Supervised Learning Reinforcement Learning Genetic Algorithms Genetics-Based Machine Learning

More information

Modeling function word errors in DNN-HMM based LVCSR systems

Modeling function word errors in DNN-HMM based LVCSR systems Modeling function word errors in DNN-HMM based LVCSR systems Melvin Jose Johnson Premkumar, Ankur Bapna and Sree Avinash Parchuri Department of Computer Science Department of Electrical Engineering Stanford

More information

Radius STEM Readiness TM

Radius STEM Readiness TM Curriculum Guide Radius STEM Readiness TM While today s teens are surrounded by technology, we face a stark and imminent shortage of graduates pursuing careers in Science, Technology, Engineering, and

More information

IVY TECH COMMUNITY COLLEGE

IVY TECH COMMUNITY COLLEGE EXIT LOAN PROCESSING FEBRUARY 2009 EXIT INTERVIEW REQUIREMENTS PROCESS (RRREXIT) The purpose of the exit interview process is to identify those students that require federal loan exit counseling. If the

More information

Report on organizing the ROSE survey in France

Report on organizing the ROSE survey in France Report on organizing the ROSE survey in France Florence Le Hebel, florence.le-hebel@ens-lsh.fr, University of Lyon, March 2008 1. ROSE team The French ROSE team consists of Dr Florence Le Hebel (Associate

More information

EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall Semester 2014 August 25 October 12, 2014 Fully Online Course

EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall Semester 2014 August 25 October 12, 2014 Fully Online Course GEORGE MASON UNIVERSITY COLLEGE OF EDUCATION AND HUMAN DEVELOPMENT GRADUATE SCHOOL OF EDUCATION INSTRUCTIONAL DESIGN AND TECHNOLOGY PROGRAM EDIT 576 DL1 (2 credits) Mobile Learning and Applications Fall

More information

National Survey of Student Engagement Spring University of Kansas. Executive Summary

National Survey of Student Engagement Spring University of Kansas. Executive Summary National Survey of Student Engagement Spring 2010 University of Kansas Executive Summary Overview One thousand six hundred and twenty-one (1,621) students from the University of Kansas completed the web-based

More information

Guide to Teaching Computer Science

Guide to Teaching Computer Science Guide to Teaching Computer Science Orit Hazzan Tami Lapidot Noa Ragonis Guide to Teaching Computer Science An Activity-Based Approach Dr. Orit Hazzan Associate Professor Technion - Israel Institute of

More information

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System

QuickStroke: An Incremental On-line Chinese Handwriting Recognition System QuickStroke: An Incremental On-line Chinese Handwriting Recognition System Nada P. Matić John C. Platt Λ Tony Wang y Synaptics, Inc. 2381 Bering Drive San Jose, CA 95131, USA Abstract This paper presents

More information

Rental Property Management: An Android Application

Rental Property Management: An Android Application Rental Property Management: An Android Application GRADUATE PROJECT Submitted to the Faculty of The School of Engineering & Computing Sciences Texas A&M University-Corpus Christi Corpus Christi, TX In

More information

4.0 CAPACITY AND UTILIZATION

4.0 CAPACITY AND UTILIZATION 4.0 CAPACITY AND UTILIZATION The capacity of a school building is driven by four main factors: (1) the physical size of the instructional spaces, (2) the class size limits, (3) the schedule of uses, and

More information

12- A whirlwind tour of statistics

12- A whirlwind tour of statistics CyLab HT 05-436 / 05-836 / 08-534 / 08-734 / 19-534 / 19-734 Usable Privacy and Security TP :// C DU February 22, 2016 y & Secu rivac rity P le ratory bo La Lujo Bauer, Nicolas Christin, and Abby Marsh

More information

Individual Differences & Item Effects: How to test them, & how to test them well

Individual Differences & Item Effects: How to test them, & how to test them well Individual Differences & Item Effects: How to test them, & how to test them well Individual Differences & Item Effects Properties of subjects Cognitive abilities (WM task scores, inhibition) Gender Age

More information

Apps4VA at JMU. Student Projects Featuring VLDS Data. Dr. Chris Mayfield. Department of Computer Science James Madison University

Apps4VA at JMU. Student Projects Featuring VLDS Data. Dr. Chris Mayfield. Department of Computer Science James Madison University Apps4VA at JMU Student Projects Featuring VLDS Data Dr. Chris Mayfield Department of Computer Science James Madison University VLDS Insights June 30, 2015 One minute version 250 students from JMU Computer

More information

DegreeWorks Advisor Reference Guide

DegreeWorks Advisor Reference Guide DegreeWorks Advisor Reference Guide Table of Contents 1. DegreeWorks Basics... 2 Overview... 2 Application Features... 3 Getting Started... 4 DegreeWorks Basics FAQs... 10 2. What-If Audits... 12 Overview...

More information

Evaluation of Teach For America:

Evaluation of Teach For America: EA15-536-2 Evaluation of Teach For America: 2014-2015 Department of Evaluation and Assessment Mike Miles Superintendent of Schools This page is intentionally left blank. ii Evaluation of Teach For America:

More information

SCT Banner Student Fee Assessment Training Workbook October 2005 Release 7.2

SCT Banner Student Fee Assessment Training Workbook October 2005 Release 7.2 SCT HIGHER EDUCATION SCT Banner Student Fee Assessment Training Workbook October 2005 Release 7.2 Confidential Business Information --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

More information

Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade

Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade Math-U-See Correlation with the Common Core State Standards for Mathematical Content for Third Grade The third grade standards primarily address multiplication and division, which are covered in Math-U-See

More information

Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam

Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam Accessing Higher Education in Developing Countries: panel data analysis from India, Peru and Vietnam Alan Sanchez (GRADE) y Abhijeet Singh (UCL) 12 de Agosto, 2017 Introduction Higher education in developing

More information

Computer Science (CS)

Computer Science (CS) Computer Science (CS) 1 Computer Science (CS) CS 1100. Computer Science and Its Applications. 4 Hours. Introduces students to the field of computer science and the patterns of thinking that enable them

More information

Intel-powered Classmate PC. SMART Response* Training Foils. Version 2.0

Intel-powered Classmate PC. SMART Response* Training Foils. Version 2.0 Intel-powered Classmate PC Training Foils Version 2.0 1 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE,

More information

On-the-Fly Customization of Automated Essay Scoring

On-the-Fly Customization of Automated Essay Scoring Research Report On-the-Fly Customization of Automated Essay Scoring Yigal Attali Research & Development December 2007 RR-07-42 On-the-Fly Customization of Automated Essay Scoring Yigal Attali ETS, Princeton,

More information

Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining

Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining Dave Donnellan, School of Computer Applications Dublin City University Dublin 9 Ireland daviddonnellan@eircom.net Claus Pahl

More information

Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining

Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining Evaluation of Usage Patterns for Web-based Educational Systems using Web Mining Dave Donnellan, School of Computer Applications Dublin City University Dublin 9 Ireland daviddonnellan@eircom.net Claus Pahl

More information

SCHOLARSHIP/BURSARY APPLICATION FORM

SCHOLARSHIP/BURSARY APPLICATION FORM 1 THE UNIVERSITY OF THE WEST INDIES ST. AUGUSTINE SCHOLARSHIP/BURSARY APPLICATION FORM Please complete legibly and in duplicate. Only registered FULL-TIME students OR students going into FULL-TIME study

More information

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011

Montana Content Standards for Mathematics Grade 3. Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Montana Content Standards for Mathematics Grade 3 Montana Content Standards for Mathematical Practices and Mathematics Content Adopted November 2011 Contents Standards for Mathematical Practice: Grade

More information

STT 231 Test 1. Fill in the Letter of Your Choice to Each Question in the Scantron. Each question is worth 2 point.

STT 231 Test 1. Fill in the Letter of Your Choice to Each Question in the Scantron. Each question is worth 2 point. STT 231 Test 1 Fill in the Letter of Your Choice to Each Question in the Scantron. Each question is worth 2 point. 1. A professor has kept records on grades that students have earned in his class. If he

More information

Kenya: Age distribution and school attendance of girls aged 9-13 years. UNESCO Institute for Statistics. 20 December 2012

Kenya: Age distribution and school attendance of girls aged 9-13 years. UNESCO Institute for Statistics. 20 December 2012 1. Introduction Kenya: Age distribution and school attendance of girls aged 9-13 years UNESCO Institute for Statistics 2 December 212 This document provides an overview of the pattern of school attendance

More information

Probability and Statistics Curriculum Pacing Guide

Probability and Statistics Curriculum Pacing Guide Unit 1 Terms PS.SPMJ.3 PS.SPMJ.5 Plan and conduct a survey to answer a statistical question. Recognize how the plan addresses sampling technique, randomization, measurement of experimental error and methods

More information