CSE 6040 - 7.3 - Basic tidying transformations: melting & casting - Code Flashcards
1
Q
When Values appear as columns what can you do to tidy up the table?
A
Peform the Melting operation.
2
Q
What are the two steps to perform the melting operation on a table?
A
To melt the table, you need to do the following.
- Extract the column values into a new variable.
- Convert the values associated with the column values into a new variable as well.
3
Q
If an observation is split across multiple rows what method can we use to tidy the table?
A
We can use the Casting method.