By andrew
I’m doing an analysis and one of the objects I’m working on is a multidimensional array called “attitude.” I took a quick look:
> dim(attitude) [1] 30 7
Huh? It’s not supposed to be 30 x 7. Whassup? I search through my scripts for a “attitude” but all I find is the three-dimensional array. Where did this 2-way array come from? I take a look:
> attitude
rating complaints privileges learning raises critical advance
1 43 51 30 39 61 92 45
2 63 64 51 54 63 73 47
3 71 70 68 69 76 86 48
4 61 63 45 47 54 84 35
5 81 78 56 ...read moreSource:: r-bloggers.com