descriptive statistics

0.0(0)
Studied by 16 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/4

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 7:21 PM on 1/22/24
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

5 Terms

1
New cards

Counting: how to find the number of elements of a list in Excel

The function that counts the number of numbers in a range of cells is represented as =count( A1:A9 ) or =count( A:A )

where A1 is the start and A9 is the end. obviously, there’s 9 elements in between them.

2
New cards

Summation: how to find the total sum of elements of a list in Excel

The function that calculates the sum of a list of numbers in a range of cells is represented as =sum( A1:A9 ) or =sum( A:A )

adds A1 + A2 + A3 + A4 + A5 + A6 + A7 + A8 + A9

3
New cards

Sum of squares: how to find the sum of the squares of each element of a list in Excel

The function that calculates the sum of the squares of a list of numbers in a range of cells is represented as =sumsq( A1:A9 ) or =sumsq( A:A )

adds A1² + A2² + A3² + A4² + A5² + A6² + A7² + A8² + A9²

this is useful for variation: sum of (each element²)

<p>The function that calculates the sum of the squares of a list of numbers in a range of cells is represented as =sumsq( A1:A9 ) or =sumsq( A:A )</p><p></p><p>adds A1² + A2² + A3² + A4² + A5² + A6² + A7² + A8² + A9²<br><br>this is useful for variation:  sum of (each element²)</p>
4
New cards

Cross summation: how to find the sum of (product between lists) in Excel

The function that calculates the sum of the products of corresponding values in two lists is represented as =sumproduct(A1:A9,B1:B9)

elements in [A1 to A9] is multiplied with elements in [B1 to B9] and then added up

this is useful for (find out what this is useful for: to do list!!1)

<p>The function that calculates the sum of the products of corresponding values in two lists is represented as =sumproduct(A1:A9,B1:B9)</p><p></p><p>elements in [A1 to A9] is multiplied with elements in [B1 to B9] and then added up </p><p></p><p>this is useful for (find out what this is useful for: to do list!!1)<br></p>
5
New cards
<p>what does this symbol represent?</p>

what does this symbol represent?

this symbol represents mean

also known as the average (how much is it in total divided by how many elements there are)