Concept Map - Lesson 1
Data structures.
graph LR;
B[data estructures] -->|a single data| C[variables];
B -->|multiple data| D[vector];
B -->|multidimentional vector| E[matrix];
C -->|same type| F[atomic vector];
D -->|same length| G[data.frame];
Concept Map - Lesson 2
Data structures
graph LR;
A[tibble] -->|a type of| B[data.frame];
A -->|has| C[columns];
A -->|has| D[rows];
C -->|must be the same| E[type of data];
E -->|cuantitative| F[double, integer];
E -->|cualitative| G[logical, character];
Concept Map - Lesson 3
Function to see data set structure
graph LR;
A[function] -->|show data structure| B[type name of data];
A -->|show data structure| C[view];
A -->|show data structure| D[glimpse];
A -->|show data structure| D[kable];