this may be simple but . .
this may be simple but . .
I am trying to filter out all data from the "self" level of my nominal data. But I keep failing.. can anyone help. many thanks
Re: this may be simple but . .
here's a post on filters
https://blog.jamovi.org/2018/04/25/jamovi-filters.html
cheers
https://blog.jamovi.org/2018/04/25/jamovi-filters.html
cheers
Re: this may be simple but . .
brother, thanks and I read that. But in proof that I code like a dyslexic cat, I still cannot figure it: see image
- Attachments
-
- Screenshot 2023-02-09 at 18.56.02.png (123.43 KiB) Viewed 1980 times
Re: this may be simple but . .
You'll probably find that the issue stems from you trying to filter out "self" and not "Self"....
Mind you, I've never been a fan of 'text-based' variables - they tend to create more issues than they solve.
If you replace the names with integers (so that Self = 1 etc...), then using ParticipantType !=1 as a filter will work....
Mind you, I've never been a fan of 'text-based' variables - they tend to create more issues than they solve.
If you replace the names with integers (so that Self = 1 etc...), then using ParticipantType !=1 as a filter will work....
Re: this may be simple but . .
ParticipantType != self
filters out all rows where the value in the ParticipantType column is equal to the value in the self column ... and jamovi is helpfully pointing out that there is no self column in your data set.
if you want to only include rows where the value in the ParticipantType column is equal to 'Self' you need to wrap it in quotes, and ensure the capitalization is correct. i.e.
ParticipantType != "Self"
(i'll also add that i'm quite comfortable using text based variables)
filters out all rows where the value in the ParticipantType column is equal to the value in the self column ... and jamovi is helpfully pointing out that there is no self column in your data set.
if you want to only include rows where the value in the ParticipantType column is equal to 'Self' you need to wrap it in quotes, and ensure the capitalization is correct. i.e.
ParticipantType != "Self"
(i'll also add that i'm quite comfortable using text based variables)
Re: this may be simple but . .
Thanks team. I have reset my 'stupid' filter, and now can make progress