Describe the five basic data types discussed in the lectures.
Describe the dataset types discussed in the lecture.
In which three ways can items be grouped?
Lists: a group of objects with a specified order.
Clusters: Grouping based on attribute similarity.
Sets: An unordered group of items
In which two ways can attribute types be categorized?
Name three ways in which ordered data can be ordered.
Other examples:
- Mountain heigh is sequential when measured from sea level, while an elevation dataset might be diverging, where the middle point is sea level. It often comes down to how data is measured.
What type of attribute is an ID of an item?
Categorical, it does not have a meaningful order and it is discrete.
What type of attribute is a a date, like an order date?
Quantitative. Don’t ask me why, this is in the slides, but it is good to keep in mind. Probably because dates are time, time is continuous and time can be added and subtracted. E.g. if you use the UNIX way of defining time or dates, you can use it to perform arithmetic. Though, this is my own interpretation.
A UNIX timestamp is a numerical representation of the number of seconds that have elapsed since January 1, 1970, at 00:00:00 UTC. It is often used to represent a point in time in a computer system.
Which two types of dataset availability were discussed in the lectures for the use in visualizations?
Static (Offline): You have a single file and it is visualized in one go
Dynamic (Online): Data trickles in during a vis session. Values can be updated, added or removed over time