data mining supplemental resources on class website

19
Data Mining Supplemental Resources on Class Website

Upload: erick-gallagher

Post on 04-Jan-2016

213 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Data Mining Supplemental Resources on Class Website

Data MiningSupplemental Resources on Class

Website

Page 2: Data Mining Supplemental Resources on Class Website

Concept Map

Data Mining

Big Data

Implementation

Isolate Assumption

s

Design: Accurac

y

3-D Reference

s

Sum, Average, Min, Max,

Count, RandBetween

Paste Special

Mixed Cell Reference

s

Page 3: Data Mining Supplemental Resources on Class Website

Objectives

▪Explain the Accuracy principle of Spreadsheet Design

▪Demonstrate Excel features that support basic data mining.

Page 4: Data Mining Supplemental Resources on Class Website

▪Formula ▪ created by you▪= A1 + A10

▪Function ▪keyword defined by Microsoft▪=SUM(A1:D1)▪Functions are more flexible than formulas

Formula vs. Function

Page 5: Data Mining Supplemental Resources on Class Website

Different Results

=B3+B4+B5+B6

=SUM(C3:C6)

If you delete Row 5=SUM(C3:C5)

Page 6: Data Mining Supplemental Resources on Class Website

▪SUM

▪AVERAGE

▪MIN and MAX

▪COUNT

Common Functions

Page 7: Data Mining Supplemental Resources on Class Website

Cell Address Reference Changes when Copied

A1 Relative Vertically or Horizontally

$A$1 Absolute Never

$A1 Mixed Vertically

A$1 Mixed Horizontally

Relative, Absolute & Mixed Cell References

Page 8: Data Mining Supplemental Resources on Class Website

Vertical Copy

Page 9: Data Mining Supplemental Resources on Class Website

Vertical vs. Horizontal Copy

Page 10: Data Mining Supplemental Resources on Class Website

▪ Is the formula entered going to be copied?

▪ If so, which direction?

▪ If it’s copied vertically, do you want the row references to change? If it’s copied horizontally, do you want the column references to change?

▪Do you want such a change to take place?

Cell Reference Decisions

Page 11: Data Mining Supplemental Resources on Class Website

Cell Reference Decisions

CopyFormula?

Vertical orHorizontal?

ChangeRows?

ChangeColumns?

Yes

No Stop

HorizontalVertical

YesYes

Stop

No

Enter $ beforecolumn letters

that shouldnot change

No

Enter $ beforerow numbers that shouldnot change

Start

http://www.lacoste.pamplin.vt.edu/web1504/resources/video/ss.html

Page 12: Data Mining Supplemental Resources on Class Website

1. Will you copy this function?

2. If so, which direction: vertical or horizontal?

3. If you copy vertically, Excel will automatically change all relative row references. Do you want those row references to change?

Cell Reference Example #1

=SUM(B2:D2)

Page 13: Data Mining Supplemental Resources on Class Website

Cell Reference Example #2

▪Which calculation needs a mixed cell reference?

▪Where should the $ go?

Page 14: Data Mining Supplemental Resources on Class Website

▪Know the order of operations.

▪Select the correct function or construct the correct formula. (Choose a function over a formula.)

▪ Isolate assumptions.

▪Check relative and absolute cell references.

▪Double-check all calculations.

Spreadsheet Design: Accuracy

Page 15: Data Mining Supplemental Resources on Class Website

▪Store numbers in cells

▪Write equations to point to cells containing numbers

Isolate Assumptions

Page 16: Data Mining Supplemental Resources on Class Website

Isolate Assumption Example

Assumption

=E2+3 is incorrect=E2+H2 is correct

Page 17: Data Mining Supplemental Resources on Class Website

Generate Data with RANDBETWEEN

▪= RANDBETWEEN(low, high)

Page 18: Data Mining Supplemental Resources on Class Website

Paste Special - Values

http://www.lacoste.pamplin.vt.edu/web1504/resources/video/ss.html

MAC: Edit Menu, Paste Special

Page 19: Data Mining Supplemental Resources on Class Website

3-D Reference

▪Cell reference that refers to a cell on a different worksheet

▪Function is on Sheet 1▪Summing cell A1 on Sheets 2 thru 13

=SUM(‘Sheet 2:Sheet 13’!A1)