data scales and markup language Flashcards

1
Q

Nominal

A

– Categorical
– Least sophisticated
– Values differ by label or name
– Example: marital status

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Ordinal

A

– Categorical
– Reflect labels or names, but can be ranked
– Cannot interpret the difference between the ranked values
– Example: reviews from 1 star (poor) to 5 stars (outstanding)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Interval

A

– Numerical
– Categorize and rank, differences are meaningful
– Zero value is arbitrary and does not reflect absence of characteristic
– Ratios are not meaningful
– Example: temperature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Ratio (numerical)

A

– Numerical
– Most sophisticated
– A true zero point, reflects absence of characteristic
– Ratios are meaningful
– Example: profits

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

XML (example of what it looks like)

A

< Data >

<Person>
< Name>Rich</Name>
<Telephone>419-528-915</Telephone>
<Salary>160000</Salary>
</Person>

<Person>
<Name>Benjamin</Name>
< Telephone>203-991-608</Telephone>
< Salary >93000</Salary>
</Person>

</ Data>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

HTML (example of what it looks like)

A

< table>
<tr>
< th>Name</th>
< th>Telephone</th>
<th> Salary</th>
</tr>
<tr>
< td>Benjamin</td>
< td>203- 991-3608</td>
< td>93000</td>
</tr>
</ table>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Java (example of what it looks like)

A

{
“Person”: [
{
“Name”: “Rich”
“Telephone”: *419-528-0915”
“Salary”: “160000”
} ,
{
“Name”: “Benjamin”
“Telephone”: “203-991-3608”,
“Salary”: “93000”
}
]
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly