Login
Remember
Register
Ask a Question
What are differentces between the long and wide format data?
0
votes
asked
Nov 27, 2021
in
Data Analytics
by
DavidAnderson
What are differentces between the long and wide format data?
data-analysis
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 27, 2021
by
DavidAnderson
Long format Data
Wide-Format Data
Here, each row of the data represents the one-time information of a subject. Each subject would have its data in different/ multiple rows.
Here, the repeated responses of a subject are part of separate columns.
The data can be recognized by considering rows as groups.
The data can be recognized by considering columns as groups.
This data format is most commonly used in R analyses and to write into log files after each trial.
This data format is rarely used in R analyses and most commonly used in stats packages for repeated measures ANOVAs.
...