-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeBook.markdown_github
More file actions
1037 lines (805 loc) · 39.8 KB
/
Copy pathCodeBook.markdown_github
File metadata and controls
1037 lines (805 loc) · 39.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
CodeBook.md
================
Brian Gulbis
10/2/2016
Project Description
-------------------
The goal of this project is to create a script which will tidy-up data from the Human Activity Recognition database containing the recordings of 30 subjects performing activities of daily living while carrying a waist-mounted smartphone with embedded inertial sensors. The script is saved in the file run\_analysis.R and outputs a text file with the tidy data named tidy\_data.txt.
Study design and data processing
--------------------------------
### Collection of the raw data
The original data was obtained from a group of 30 volunteers between 19 and 48 years old. Each person performed six activities (walking, walking upstairs, walking downstairs, sitting, standing, and laying) while wearing a smartphone (the Samsung Galaxy S II) on the waist. The data was captured using its embedded accelerometer and gyroscope.
The sensor signals (accelerometer and gyroscope) were pre-processed by applying noise filters and then sampled in fixed-width sliding windows of 2.56 sec and 50% overlap (128 readings/window). The sensor acceleration signal, which has gravitational and body motion components, was separated using a Butterworth low-pass filter into body acceleration and gravity. The gravitational force is assumed to have only low frequency components, therefore a filter with 0.3 Hz cutoff frequency was used. From each window, a vector of features was obtained by calculating variables from the time and frequency domain.
A more detailed description of the study design and data collection can be found at <http://archive.ics.uci.edu/ml/datasets/Human*Activity*Recognition*Using*Smartphones>
The data for this project was obtained from <https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip>
### Notes on the original (raw) data
For each record in the dataset, the following is provided: \* Triaxial (x-, y-, and z-axis) acceleration from the accelerometer and the estimated body acceleration. \* Triaxial (x-, y-, and z-axis) angular velocity from the gyroscope. \* A 561-feature vector with time and frequency domain variables. \* The activity label. \* An identifier of the subject who carried out the experiment.
The dataset is divided into two sets, train and test. The training data was generated by 70% of the volunteers and the test data came from the remaining 30% of the volunteers.
Within both the train and test data sets are three files: \* X\_test.txt: Each row contains a measurement. The label for each measurement is contained in the features.txt file. \* y\_test.txt: Each row identifies the activity being performed while taking the measurement, ranging from 1 to 6. The number corresponds to an activity label contained in the activity\_labels.txt file. \* subject\_test.txt: Each row identifies the subject who performed the activity ranging from 1 to 30.
Creating the tidy datafile
--------------------------
### Guide to create the tidy data file
The following steps should be taken to create the tidy data file:
1. Download the data from <https://d396qusza40orc.cloudfront.net/getdata%2Fprojectfiles%2FUCI%20HAR%20Dataset.zip>
2. Unzip the file and extract into a folder called "UCI HAR Dataset" within the working directory of the run\_analysis.R script.
3. In R, open the file run\_analysis.R and source the script. This will clean the data and create the tidy dataset.
### Cleaning of the data
The following steps are taken to clean the data a create the tidy data set: 1. The training and the test data sets are merged to create one data set. 1. For each measurement, the mean and standard deviation measures are extracted. 1. The activities are renamed with descriptive activity names. 1. The data set columns are labeled with descriptive variable names. 1. A tidy data set is created with the average of each variable for each activity and each subject.
For more information, please see [README.md](https://github.com/bgulbis/AccelerometerProject/blob/master/README.md)
Description of the variables in the tidy\_data.txt file
-------------------------------------------------------
The data set contained in the tidy\_data.txt file uses a wide form of tidy data which contains 180 observations of 68 variables. The variables contain the average of each measurement from the original data which was a mean or standard deviation, grouped by activity and subject.
The variables in the data set are:
1. person
2. activity
3. time-body-accelerometer-mean-x-axis
4. time-body-accelerometer-mean-y-axis
5. time-body-accelerometer-mean-z-axis
6. time-body-accelerometer-standdev-x-axis
7. time-body-accelerometer-standdev-y-axis
8. time-body-accelerometer-standdev-z-axis
9. time-gravity-accelerometer-mean-x-axis
10. time-gravity-accelerometer-mean-y-axis
11. time-gravity-accelerometer-mean-z-axis
12. time-gravity-accelerometer-standdev-x-axis
13. time-gravity-accelerometer-standdev-y-axis
14. time-gravity-accelerometer-standdev-z-axis
15. time-body-accelerometer-jerk-mean-x-axis
16. time-body-accelerometer-jerk-mean-y-axis
17. time-body-accelerometer-jerk-mean-z-axis
18. time-body-accelerometer-jerk-standdev-x-axis
19. time-body-accelerometer-jerk-standdev-y-axis
20. time-body-accelerometer-jerk-standdev-z-axis
21. time-body-gyroscope-mean-x-axis
22. time-body-gyroscope-mean-y-axis
23. time-body-gyroscope-mean-z-axis
24. time-body-gyroscope-standdev-x-axis
25. time-body-gyroscope-standdev-y-axis
26. time-body-gyroscope-standdev-z-axis
27. time-body-gyroscope-jerk-mean-x-axis
28. time-body-gyroscope-jerk-mean-y-axis
29. time-body-gyroscope-jerk-mean-z-axis
30. time-body-gyroscope-jerk-standdev-x-axis
31. time-body-gyroscope-jerk-standdev-y-axis
32. time-body-gyroscope-jerk-standdev-z-axis
33. time-body-accelerometer-magnitude-mean
34. time-body-accelerometer-magnitude-standdev
35. time-gravity-accelerometer-magnitude-mean
36. time-gravity-accelerometer-magnitude-standdev
37. time-body-accelerometer-jerk-magnitude-mean
38. time-body-accelerometer-jerk-magnitude-standdev
39. time-body-gyroscope-magnitude-mean
40. time-body-gyroscope-magnitude-standdev
41. time-body-gyroscope-jerk-magnitude-mean
42. time-body-gyroscope-jerk-magnitude-standdev
43. frequency-body-accelerometer-mean-x-axis
44. frequency-body-accelerometer-mean-y-axis
45. frequency-body-accelerometer-mean-z-axis
46. frequency-body-accelerometer-standdev-x-axis
47. frequency-body-accelerometer-standdev-y-axis
48. frequency-body-accelerometer-standdev-z-axis
49. frequency-body-accelerometer-jerk-mean-x-axis
50. frequency-body-accelerometer-jerk-mean-y-axis
51. frequency-body-accelerometer-jerk-mean-z-axis
52. frequency-body-accelerometer-jerk-standdev-x-axis
53. frequency-body-accelerometer-jerk-standdev-y-axis
54. frequency-body-accelerometer-jerk-standdev-z-axis
55. frequency-body-gyroscope-mean-x-axis
56. frequency-body-gyroscope-mean-y-axis
57. frequency-body-gyroscope-mean-z-axis
58. frequency-body-gyroscope-standdev-x-axis
59. frequency-body-gyroscope-standdev-y-axis
60. frequency-body-gyroscope-standdev-z-axis
61. frequency-body-accelerometer-magnitude-mean
62. frequency-body-accelerometer-magnitude-standdev
63. frequency-body-accelerometer-jerk-magnitude-mean
64. frequency-body-accelerometer-jerk-magnitude-standdev
65. frequency-body-gyroscope-magnitude-mean
66. frequency-body-gyroscope-magnitude-standdev
67. frequency-body-gyroscope-jerk-magnitude-mean
68. frequency-body-gyroscope-jerk-magnitude-standdev
### Variable 1: person
This variable contains the subject identification number.
- Class: Factor
- Levels: 30 (1 to 30)
### Variable 2: activity
This variable contains the description of the activity.
- Class: Factor
- Levels: 6
1. walking
2. walking\_upstairs
3. walking\_downstairs
4. sitting
5. standing
6. laying
### Variable 3: time-body-accelerometer-mean-x-axis
This variable contains the average of the mean time domain signal from the accelerometer for the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: x-axis
### Variable 4: time-body-accelerometer-mean-y-axis
This variable contains the average of the mean time domain signal from the accelerometer for the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: y-axis
### Variable 5: time-body-accelerometer-mean-z-axis
This variable contains the average of the mean time domain signal from the accelerometer for the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: z-axis
### Variable 6: time-body-accelerometer-standdev-x-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: x-axis
### Variable 7: time-body-accelerometer-standdev-y-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: y-axis
### Variable 8: time-body-accelerometer-standdev-z-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: z-axis
### Variable 9: time-gravity-accelerometer-mean-x-axis
This variable contains the average of the mean of the time domain signal from the accelerometer for the gravity acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: mean
- Axis: x-axis
### Variable 10: time-gravity-accelerometer-mean-y-axis
This variable contains the average of the mean of the time domain signal from the accelerometer for the gravity acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: mean
- Axis: y-axis
### Variable 11: time-gravity-accelerometer-mean-z-axis
This variable contains the average of the mean of the time domain signal from the accelerometer for the gravity acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: mean
- Axis: z-axis
### Variable 12: time-gravity-accelerometer-standdev-x-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the gravity acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: x-axis
### Variable 13: time-gravity-accelerometer-standdev-y-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the gravity acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: y-axis
### Variable 14: time-gravity-accelerometer-standdev-z-axis
This variable contains the average of the standard deviation of the time domain signal from the accelerometer for the gravity acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: z-axis
### Variable 15: time-body-accelerometer-jerk-mean-x-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: x-axis
### Variable 16: time-body-accelerometer-jerk-mean-y-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: y-axis
### Variable 17: time-body-accelerometer-jerk-mean-z-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: z-axis
### Variable 18: time-body-accelerometer-jerk-standdev-x-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: x-axis
### Variable 19: time-body-accelerometer-jerk-standdev-y-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: y-axis
### Variable 20: time-body-accelerometer-jerk-standdev-z-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: z-axis
### Variable 21: time-body-gyroscope-mean-x-axis
This variable contains the average of the mean time domain signal from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: x-axis
### Variable 22: time-body-gyroscope-mean-y-axis
This variable contains the average of the mean time domain signal from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: y-axis
### Variable 23: time-body-gyroscope-mean-z-axis
This variable contains the average of the mean time domain signal from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: z-axis
### Variable 24: time-body-gyroscope-standdev-x-axis
This variable contains the average of the standard deviation time domain signal from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: x-axis
### Variable 25: time-body-gyroscope-standdev-y-axis
This variable contains the average of the standard deviation time domain signal from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: y-axis
### Variable 26: time-body-gyroscope-standdev-z-axis
This variable contains the average of the standard deviation time domain signal from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: z-axis
### Variable 27: time-body-gyroscope-jerk-mean-x-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: mean
- Axis: x-axis
### Variable 28: time-body-gyroscope-jerk-mean-y-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: mean
- Axis: y-axis
### Variable 29: time-body-gyroscope-jerk-mean-z-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: mean
- Axis: z-axis
### Variable 30: time-body-gyroscope-jerk-standdev-x-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: x-axis
### Variable 31: time-body-gyroscope-jerk-standdev-y-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: y-axis
### Variable 32: time-body-gyroscope-jerk-standdev-z-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: z-axis
### Variable 33: time-body-accelerometer-magnitude-mean
This variable contains the average of the mean of the magnitude signal (calculated using the Euclidean norm) for the time domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: mean
### Variable 34: time-body-accelerometer-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude signal (calculated using the Euclidean norm) for the time domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 35: time-gravity-accelerometer-magnitude-mean
This variable contains the average of the mean of the magnitude signal (calculated using the Euclidean norm) for the time domain from the accelerometer using the gravity acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: mean
### Variable 36: time-gravity-accelerometer-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude signal (calculated using the Euclidean norm) for the time domain from the accelerometer using the gravity acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: gravity
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 37: time-body-accelerometer-jerk-magnitude-mean
This variable contains the average of the mean of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: mean
### Variable 38: time-body-accelerometer-jerk-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 39: time-body-gyroscope-magnitude-mean
This variable contains the average of the mean of the magnitude signal (calculated using the Euclidean norm) for the time domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal calculation: magnitude
- Calculation: mean
### Variable 40: time-body-gyroscope-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude signal (calculated using the Euclidean norm) for the time domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 41: time-body-gyroscope-jerk-magnitude-mean
This variable contains the average of the mean of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: mean
### Variable 42: time-body-gyroscope-jerk-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the time domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: seconds
- Description of Naming Schema:
- Signal domain: time
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 43: frequency-body-accelerometer-mean-x-axis
This variable contains the average of the mean frequency domain signal from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: x-axis
### Variable 44: frequency-body-accelerometer-mean-y-axis
This variable contains the average of the mean frequency domain signal from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: y-axis
### Variable 45: frequency-body-accelerometer-mean-z-axis
This variable contains the average of the mean frequency domain signal from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: mean
- Axis: z-axis
### Variable 46: frequency-body-accelerometer-standdev-x-axis
This variable contains the average of the standard deviation frequency domain signal from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: x-axis
### Variable 47: frequency-body-accelerometer-standdev-y-axis
This variable contains the average of the standard deviation frequency domain signal from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: y-axis
### Variable 48: frequency-body-accelerometer-standdev-z-axis
This variable contains the average of the standard deviation frequency domain signal from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Calculation: standard deviation
- Axis: z-axis
### Variable 49: frequency-body-accelerometer-jerk-mean-x-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: x-axis
### Variable 50: frequency-body-accelerometer-jerk-mean-y-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: y-axis
### Variable 51: frequency-body-accelerometer-jerk-mean-z-axis
This variable contains the average of the mean of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: mean
- Axis: z-axis
### Variable 52: frequency-body-accelerometer-jerk-standdev-x-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: x-axis
### Variable 53: frequency-body-accelerometer-jerk-standdev-y-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: y-axis
### Variable 54: frequency-body-accelerometer-jerk-standdev-z-axis
This variable contains the average of the standard deviation of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Calculation: standard deviation
- Axis: z-axis
### Variable 55: frequency-body-gyroscope-mean-x-axis
This variable contains the average of the mean frequency domain signal from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: x-axis
### Variable 56: frequency-body-gyroscope-mean-y-axis
This variable contains the average of the mean frequency domain signal from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: y-axis
### Variable 57: frequency-body-gyroscope-mean-z-axis
This variable contains the average of the mean frequency domain signal from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: mean
- Axis: z-axis
### Variable 58: frequency-body-gyroscope-standdev-x-axis
This variable contains the average of the standard deviation frequency domain signal from the gyroscope using the body acceleration signal along the x-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: x-axis
### Variable 59: frequency-body-gyroscope-standdev-y-axis
This variable contains the average of the standard deviation frequency domain signal from the gyroscope using the body acceleration signal along the y-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: y-axis
### Variable 60: frequency-body-gyroscope-standdev-z-axis
This variable contains the average of the standard deviation frequency domain signal from the gyroscope using the body acceleration signal along the z-axis.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Calculation: standard deviation
- Axis: z-axis
### Variable 61: frequency-body-accelerometer-magnitude-mean
This variable contains the average of the mean of the magnitude signal (calculated using the Euclidean norm) for the frequency domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: mean
### Variable 62: frequency-body-accelerometer-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude signal (calculated using the Euclidean norm) for the frequency domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 63: frequency-body-accelerometer-jerk-magnitude-mean
This variable contains the average of the mean of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: mean
### Variable 64: frequency-body-accelerometer-jerk-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude (calculated using the Euclidean norm) of the Jerk signal (derived from the body linear acceleration and angular velocity) for the frequency domain from the accelerometer using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: accelerometer
- Signal derivation: jerk
- Signal calculation: magnitude
- Calculation: standard deviation
### Variable 65: frequency-body-gyroscope-magnitude-mean
This variable contains the average of the mean of the magnitude signal (calculated using the Euclidean norm) for the frequency domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal calculation: magnitude
- Calculation: mean
### Variable 66: frequency-body-gyroscope-magnitude-standdev
This variable contains the average of the standard deviation of the magnitude signal (calculated using the Euclidean norm) for the frequency domain from the gyroscope using the body acceleration signal.
- Class: numeric
- Unit of Measure: Hz
- Description of Naming Schema:
- Signal domain: frequency
- Sensor acceleration signal: body
- Sensor signal: gyroscope
- Signal calculation: magnitude
- Calculation: standard deviation