Unit 5: Computing and Data Analysis

Results for Unit 5: Computing and Data Analysis

GIS mapping website

http://www.esri.com/software/arcgis/arcgisonline This website allows teahers to learn about GIS mapping and how to use the online storymapping software.  I am sure this is a Unit 5 topic, but since we do not complete all units in Utah, I woul ...

Resource - edmondragon - 5 Aug 2014 - 15:15 - 0 comments

How We've Been Visualising Big Data Over The Centuries

A look back (way back) through the history of big data visualization... http://motherboard.vice.com/read/how-weve-been-visualising-big-data-over-the-centuries   Jeff Not Featured ...

Resource - jsolin - 25 Feb 2014 - 09:45 - 0 comments

Tell Your Students: You Can Find True Love With Algorithms and Big Data

In this Wired article , we learn the story of mathematician Chris McKinlay who hacked OKCupid, an online dating site, to find the girl of his dreams while working on his doctoral dissertation on large-scale data processing. McKinlay’s romantic life wa ...

Blog Post - Lauren Amos - 11 Mar 2015 - 11:21 - 1 comment

Selection Sort Algorithm

Here are a few videos that I created last school year while teaching selection sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The video shows us working through the algorithm using tiles. There is also two workshe ...

Resource - CrystalFurman - 10 Jan 2014 - 23:09 - 0 comments

Selection Sort Algorithm

selectionsortwithtiles.docx Worksheet to use with the tiles Unsorted Pointer find min (max) pointer int minPos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 23:09

Selection Sort Algorithm

void selectionSort() { int smallestIndex = 0; // loop from 0 to one before last item for (int i = 0; i < a.length-1; i++) { // set smallest index to the one at i ... the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 i=1 i=2 ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Selection Sort Algorithm

File attachment - CrystalFurman - 10 Jan 2014 - 23:08

Insertion Sorting Resources

Here are a few videos that I created last school year while teaching insertion sorting. The worksheet is from Barbara Ericson, and the tiles idea is not mine. :)  The first video shows a trace through the selection sort algorithm. The worksheet we ar ...

Resource - CrystalFurman - 10 Jan 2014 - 23:02 - 0 comments

Insertion Sorting Resources

insertionsortwithtiles.docx worksheet for using tiles Sorted Pointer pos -1 int pos int temp ...application/vnd.openxmlformats-officedocument.wordprocessingml.document icon application/vnd.openxmlformats-officedocument.wordprocessingml.document attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 23:01

Insertion Sorting Resources

int temp = 0; int pos = 0; // loop from second element on for (int i = 1; i ... pos = i; // shift right any larger elements while (0 < pos && temp ... are the values in the array after each time the outer loop finishes? Initial state -3 8 25 6 15 2 i=0 ...application/msword icon application/msword attached to: Insertion Sorting Resources

File attachment - CrystalFurman - 10 Jan 2014 - 22:59

Discussion of Data Day 30: Presentation Of Final Projects - PUBLIC

Discuss your experiences teaching the Data Day 30: Presentation Of Final Project lesson plan here. This discussion in public and visible to anyone who visits the site. To join a discussion private to just ECS teachers or your own group, choose the approp ...

Discussion - mperry - 27 Dec 2013 - 23:06 - 0 comments

Syndicate content