The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
Many research areas use accelerometers to study people’s activities including sleep, sedentary behaviour, and physical activity. Actigraph is one of the most common research grade accelerometers. Actigraph accelerometers include ActiLife is a closed-source software, which generates activity counts. There is considerable research validating and developing algorithms for human activity using Actilife counts. Unfortunately, Actilife counts are proprietary and difficult to implement if researchers use different accelerometer brands. Recently, Brond et al. developed a code in MATLAB, which can convert raw accelerometer data to Actilife counts. Their work can help researchers use different accelerometers and calculate Actilife counts, MATLAB is a commercial program. Unlike MATLAB, R is open-source, and also R is very popular among health and activity researchers. The package activityCounts allow users to convert the accelerometer data to Actilife counts.
Please see NEWS.md for a differences between the current CRAN release (0.1.2) and the development version (0.2.0). The current development version will be submitted to CRAN shortly.
You can install the version 0.1.2 of activityCounts from CRAN with:
install.packages("activityCounts")
You can install the development version 0.2.0 from GitHub with:
#install.packages("devtools")
::install_github("walkabillylab/activityCounts") devtools
Your dataset should contain at least three columns. Typically the first column is the raw accelerometer data for the x-axis and the second and the third columns are raw accelerometer data for the y and z-axes, respectively. There is sample dataset available with this package, which you can check the sample data format. To see the sample dataset run:
library(activityCounts)
View(sampleXYZ)
To calculate counts for your data, use the counts()
function. Here is an example of using the counts() function. We use the
included sampleXYZ dataset and then call the counts()
function. The sampling frequency of our data is 100Hz, so we need to
pass this value when calling the function counts:
<- counts(data = sampleXYZ, hertz = 100) calculated_output
The default value for hertz()
function is 30. The user
should be aware of the data sampling frequency and pass the correct
value to hertz()
. If the data frequency is less than 30 Hz,
first resample your data and increase the frequency to more than 30 Hz
and then calculate the counts.
activityCounts is flexible, and it can handle different data formats.
However, to use the function, you need to provide x, y, and z raw data.
The rest of the arguments are optional. The package assumes x, y, and z
raw data are stored in the first, second, and the third columns,
respectively. If the order is different use the x_axis
,
y_axis
, and z_axis
functions to indicated each
column of your input has which one the axes. You should use the
hertz
argument to pass the sampling frequency. The default
value for sampling frequency is 30 Hz. If your data contains a column of
the time of the measurements, you can use time_column
argument to indicate your desired column, otherwise, use the
start_time
argument to designate the starting time of your
analysis.
If none of these methods are used to indicate the start
time, the current time is considered as the start time.
In this example code, the first column has the time stamp for the data. The second column has the x-axis data, the third column has the y-axis data, and the fourth column has the z-axis data. Therefore, assuming the sampling frequency is 100 Hz, we call the function like this:
<- counts(data = your_raw_data, hertz = 100, x_axis = 2, y_axis = 3, z_axis = 4) calculated_output
The default values for x_axis, y_axis, and z_axis are one, two, and three respectively. So if you don’t specify them, the function assumes the first column is for the x-axis, the second for the y-axis and the third is for the z-axis.
In the following example, starting time is given:
<- "2017-08-22 12:30:10"
my_start_time <- counts(data = sampleXYZ, hertz = 100, start_time = my_start_time) my_counts
To verify the accuracy of the calculated counts for this particular
dataset, you can compare them with the provided
sampleCounts
dataset. It contains counts calculated by
ActiLife software and the counts()
function.
summary(sampleCounts)
To see the package help page run:
?activityCounts
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.