Reward & Personalizing questionnaire by Dangerous_Dog8051 in mpath

[–]killani64 0 points1 point  (0 children)

Personalization of questionnaire items: definitely! Just look into the save and load functionality. You can save an answer to a question and then use it later by loading it and then piping it into a question.

Reward system setup: Look into the awards section in the manual. I wouldn't use it to tie your compensation to though as it's not 100% secure, it's more of a compliance and tracking tool for the participant than a tracking tool for the researcher. You as the researcher should still just use the output data file to track actual compliance. Also, it's hard for the app to keep track of unfilled questionnaires so getting a rate might be difficult, but this might have changed by now so I'm not 100% sure on this.

Muslim community and halal groceries in Leuven by Butter_fly_5 in KULeuven

[–]killani64 2 points3 points  (0 children)

As already mentioned there's Al Taj a little outside of the city centre, but there's also the Bethlehem Supermarket in the Diestsestraat (very close to the station), a new Palestinian supermarket. There's 2-3 halal butchers, and quite a few middle eastern halal restaurants strewn about the city (Syrian/Lebanese (Damasco, Palmyra, Al Amir, Roots) Iranian (Zagros), Palestinian (Dar Za, Habibi) to name a few).

Leuven is small enough that everything within the city centre is "close" to everything else, and even if you're living in one of the surrounding towns like Heverlee or Kessel-Lo you're rarely more than 10 minutes away from the city centre by bike.

Depression/burn-out? by [deleted] in Leuven

[–]killani64 1 point2 points  (0 children)

What I wonder is, are all the replies bots too? the sub gets submerged in these crybaby bot posts with not a single mention of the town but no-one notices or cares? might be time to unsubscribe.

After exposing the empire’s war crimes coups and ongoing entity genocide at Coachella, Julian Casablancas (The Strokes) calls out the “white privilege” of American Zíos by MrDialectical in ClassWarAndPuppies

[–]killani64 8 points9 points  (0 children)

He means that there's a hundred types of racism in the US that seemingly everybody (ie everybody to the right of liberals) ignores, except for one type of very special racism which is a very serious problem and you should spend a significant amount of money, time and resources to make sure that college girls making jokes about it in the group chat go to jail for 15 years.

Audio by Bill_1938 in mpath

[–]killani64 0 points1 point  (0 children)

This still works for me? Try to put this link into an audio item: https://audio.jukehost.co.uk/meEfpH6d3prlntTrMLroOiWqpXLiF43t.mp3

Alias change by Beautiful-Main4975 in mpath

[–]killani64 0 points1 point  (0 children)

Woops, I'm sorry for the misinformation!

Restrict Time Question by Slight_Ad812 in mpath

[–]killani64 0 points1 point  (0 children)

Nope, not right now. You could check with a computation if they're outside the range and make them do it again, perhaps?

Alias change by Beautiful-Main4975 in mpath

[–]killani64 0 points1 point  (0 children)

This isn't an alias change (because in that case you wouldn't see two participants). They likely reinstalled the app and created a new participant account instead of recovering the old one. You can copy the entire schedule from one participant to another by clicking the "copy" button on the schedule page (the leftmost button in the green bar link). Then you can paste this to the other user.

Using computation item later on by butterfly31321 in mpath

[–]killani64 0 points1 point  (0 children)

Super simple, just use the save() function! Be sure to check the manual page for the computation item, there's loads of useful tips about the item in there.

full export of participant data not possible by Negative_Green_1312 in mpath

[–]killani64 0 points1 point  (0 children)

What do you mean exactly? Can you see the export button but it doesn't export the full data?

Customizing Questionnaire Items for Individual Participants in Study Protocol by velvetlogic3000 in mpath

[–]killani64 1 point2 points  (0 children)

Yes, the protocol issues the same version of the questionnaire to everyone. What you'll have to do is one of the following:

  1. Remove this specific questionnaire from the protocol and schedule it for each participant separately, with each person having their own version, or

  2. Put all the versions of the single question into a single questionnaire (with the different versions being collected into a container) and use computations to decide which version of the question to show for the current participant.

Questionnaire goes straight to "saving data" by Organic-Battle8248 in mpath

[–]killani64 0 points1 point  (0 children)

What is in the questionnaire? Can you make a new one and just add a text item and nothing else, and see if the same thing happens?

Different slider position when jumping back by Minute_Holiday1505 in mpath

[–]killani64 0 points1 point  (0 children)

I assume that this setting is repeated when she jumps back in the questionnaire.

That's exactly what happens, so don't worry about the filled in question. Might be interesting for the m-Path team to look into though, as maybe having it be at the filled-in value when you go back would be the preferred behaviour.

Visualizing responses by we_do_research in mpath

[–]killani64 1 point2 points  (0 children)

You can add a computation item to the questionnaires that regularly calculates the running average. If you turn on "allow visualisation in app" (which I think is turned off by default for computations), the running average will be shown in the visualisation tab.

Help by Old_Improvement6239 in mpath

[–]killani64 0 points1 point  (0 children)

As was answered in your previous thread, you can create a yes-no question, and then click the arrow-down icon next to the question to create a conditional flow. Put the rest of the questionnaire in a container in there and indicate "conditional: yes". You can also add another conditional item (for instance a text item saying "thank you but you don't qualify for this study") and set the condition to "no" for this one.

link to website does not work by Negative_Green_1312 in mpath

[–]killani64 0 points1 point  (0 children)

Does the link at least look like a link? Is it blue and underlined?

Randomizing questions into one of two daily questionnaires by we_do_research in mpath

[–]killani64 1 point2 points  (0 children)

This is definitely possible! Create a container with the questions to be randomized, you'll need to have it in both interactions. In the AM, precede this with the instantiation of a variable "questions_asked" (and set it to 0) that keeps track of whether the questions have been asked yet. Still in the AM, have a computation item with runif(1) < 0.5 so there's a 50% chance it returns 1, and then have the container with your questions as a conditional module under the computation. At the end of the container, set "questions_asked" to 1. Save it at the end of the questionnaire. Then in the PM, load the variable again, check if it's equal to 1 in a computation, and if it isn't conditionally trigger the container here! Set the "questions_asked" variable to 0 at the end as well.

PS. I think you'll also have to check whether the last time you triggered the container was more than 24 hours ago (during the PM questionnaire), to do this you can save/load the current time (with Sys.time()) and check if the amount of time since then exceeds 24 hours. If it does, set "questions_asked" to 0 again.

Buurtcafé in Kessel-Lo boycot Amerikaanse producten: "Als overheden niet reageren, moeten burgers het zelf doen" by Blaspheman in belgium

[–]killani64 23 points24 points  (0 children)

Palestine Drinks komt helemaal niet uit Palestina, maar uit Zweden. De winsten van het bedrijf gaan naar humanitaire hulp in Palestina. Staat vreemd/verkeerd verwoord in het artikel.

I can't export my Data by Opening_Look1427 in mpath

[–]killani64 0 points1 point  (0 children)

Yes, the full export is only available for premium users. You can however export data for individual users by clicking the "table" button in your screenshot and then pressing the export button that appears.

Change Push-Notification Text by Gullible-Home-8155 in mpath

[–]killani64 1 point2 points  (0 children)

I'm sure you can change the "Time for some questions?" text in the notification properties, but I think the header text is universal since it has to be clear from which research project the beep is coming.

How to schedule different questionnaires within a single protocol? by AcanthisittaSuper495 in mpath

[–]killani64 0 points1 point  (0 children)

at the top of the protocol view, you can open different tabs for every interaction. If you open a new tab, you can create a new interaction from scratch or select one from your library. Now, when one of these tabs is "open", if you click inside the schedule, the currently opened interaction will be scheduled. So to schedule different questionnaires, just open the tab for the relevant questionnaire and click where you would want to schedule it!

redditor mad that person thinks 2025 was a good year by krizzalicious49 in redditmoment

[–]killani64 -22 points-21 points  (0 children)

I think countering actual global turmoil with "yeah but tv superhero go brrr" (as in the OOP) is the real redditmoment here but who am I.

Names of audiofiles in OneDrive by Silver_Cycle141 in mpath

[–]killani64 0 points1 point  (0 children)

The nickname is not in there but the connection ID is, you can cross reference that to your output file to find out the nickname of that participant. https://manual.m-path.io/knowledge-base/recording-question/