Skip to content
Prev 378079 / 398502 Next

Mailinglist

Hi

Thank you for your help and suggestions!
I have tried a few things and ask help from lots of people online!

My problem is that I am not able to share the database! I tried to recreate
one but I wasn't successful.
So I found a way to analyze each subject individually, but I do not know
how to perform the same steps for all of the subjects at once.
But I just wanted to share what I did, since you tried to help me!

This is what I did.

I stored all the column names in a vector named "Names"

names=c("participants","id","participantid","key","probetype","time","timespecific","value","valuespecified","valuedetailed","period","periodspecified")



colnames(gmoji_passivedata)=names



I used this code to find the number of participants in the dataset



length(unique(gmoji_passivedata$participants))

The number of participants is 44



I used this code to find the unique ID for every participant



library(plyr)