[Pebl-list] Question about PEBL Stimuli

2021-12-06 Thread Curtis Craig via Pebl-list
Hello,

I hope this email finds you well. Our lab is considering building a study
in PEBL. We have developed stimuli so participants can detect direction of
motion for various types of objects and speeds in a point-light walker
display, with distractors continually present. Each condition is captured
in movie files (e.g., .mp4, .avi, and so on).

Can PEBL display this type of stimuli (movie files) and capture participant
responses to them? I've reviewed the tutorial and the test battery, and I
can only find text, images, and audio files present.

Thank you for your time,
Curtis

-- 
Curtis M. Craig, Ph.D., CHFP
Research Associate | HumanFIRST Laboratory | humanfirst.umn.edu
Department of Mechanical Engineering | cse.umn.edu/me

University of Minnesota | umn.edu | 612-625-7118
He, his, him
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question

2018-03-11 Thread Katja Brkič Golob
Hi,
My name is Katja Brkič Golob and I am a licenced clinical psychologist,
from Slovenia - Europe.

I have just come acrossed your PEBL site and PEBL experiments, which I
think are awesome!

I have one questions about the output, though. When a participant finishes
his/her task, can we get a report (a comparison of the results with the
general norms, or mybe graph) or access to the general norms in order to
properly evaluate participants achievements?

Thank you so much for your answer nad best regards.

Katja Brkič Golob



Virus-free.
www.avast.com

<#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2>
--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] Question on the paired associated learning

2017-05-15 Thread Shane Mueller
Karine,
This can't be done out-of-the-box with the existing PEBL paired
associates task.  There are probably three issues:
1. Mode of recall.  In the current design, we use a mixture of both
recall and recognition to cue recall. I'm guessing you want to pick
just one of these for the design you are considering.  These are run
with a function in the file called DoRecall and DoRecognition. You
could just use one of them.
2. The word lists.   In the current design, I think that at least some
of the word pairs are randomly paired for each user. This is true even
for the similar pairs, in which the pairing is randomly sampled from
two words that are similar, so that you can have a fair foil if/when
using recognition rather than recall.  Furthermore, you might want to
pick your own word lists rather than the ones that are built-in.  You
need to think about whether everyone should have the same pairings,
which would make a two-round test much easier to score.  Lines 23-134
are just about creating the lists. You could fairly easily make your
own list of word pairs and save them in a csv file with three
columns.  The first is the cue word, the second column is the pairing,
the third is the foil. Note that if you are using recall, the third
column could be blank or filled with a dummy word.  Once you create
this, save it in your pairedassociates directory with a name like
'mywordlist.csv', then:
a. delete all the code between line 23 and 134 (starting with names <-
["ABIGAIL",  and ending with the line defining l4 <- Shuffle()b.
Replace this with a line that reads in your words:
  list <- Shuffle(ReadCSV("mywordlist.csv"))c. Change the line 159 to
read
 l1a <- DoPresentation(list)
d. Change the 'results1a <- DoRecognition(l1a)' line to 'results1a <-
DoRecall(l1a)' if you want recall instead of recognitione. Delete
everything between  the line following this and the end of the start()
function, leaving in the debriefing message box that says:  
MessageBox("Thank you for participating",gWin)
This should make it so it will just present your list of words and test
immediately on it.

3. Implementing second recall task.  Luckily, if you have part 1 and 2
determined, this is relatively simple.   You could basically make a
copy of the file and delete the lines DoPresentation() line. but give
the DoRecognition() list instead of list1a. In addition, on line 145,
change the following: gFileOut <-
GetNewDataFile(gSubNum,gWin,"paired","csv",header)
to something like: gFileOut <- GetNewDataFile(gSubNum,gWin,"paired-
round2","csv",header)

so the first and second round get saved to different files.
Let me know if you can get it working.
Shane
On Mon, 2017-05-15 at 08:06 +, Karine Scheuermaier wrote:
> Hello,
> We would like to test word pair recall in a sleep study, ie first
> have the participants encode in the evening (probe presentation)
> before a sleep condition and re-test with the same list, say, one
> hour later (so just a recall, but no presentation,
>  and a recall on the same pairs that were initially presented) and
> finally give another presentation recall on the same pairs
> immediately followed by a presentation (again of the same pairs) and
> a final immediate recall.
> Then we would like to test the recall of these same pairs the
> following wake time and 2h later.
> 
> I am really not sure how to do this now as it seems to only run as a
> presentation+ immediate recall with different lists of word pairs
> every time.
> Any advice would be very welcome!
> 
> Thanks,
> Karine
>  
> ---
> Karine Scheuermaier, MD, MMSc
> Lecturer, School of Physiology
> 
> Faculty of Health Sciences
> University of the Witwatersrand
> 7 York Road
> Parktown 2193
> 
> Johannesburg--South Africa
> Email:
> karine.scheuerma...@wits.ac.za
> Tel: 011-717-2453 (ext 72453)
> Fax: +27-86-765-4169 /
>  086-765-4169
>  
>  
> 
> 
> 
> 
> 
> 
> 
> 
> 
>  This communication is intended for the addressee only. It is
> confidential. If you have received this communication in error,
> please notify us immediately and destroy the original message. You
> may not copy or disseminate this communication without the permission
> of the University. Only authorised signatories are competent to enter
> into agreements on behalf of the University and recipients are thus
> advised that the content of this message may not be legally binding
> on the University and may contain the personal views and opinions of
> the author, which are not necessarily the views and opinions of The
> University of the Witwatersrand, Johannesburg. All agreements between
> the University and outsiders are subject to South African Law unless
> the University agrees in writing to the contrary. 
> ---
> ---
> Check out the vibrant tech community on one of the world's most
> engaging tech sites, Slashdot.org! http://sdm.link/slashdot__
> _

[Pebl-list] Question on the paired associated learning

2017-05-15 Thread Karine Scheuermaier
Hello,
We would like to test word pair recall in a sleep study, ie first have the 
participants encode in the evening (probe presentation) before a sleep 
condition and re-test with the same list, say, one hour later (so just a 
recall, but no presentation, and a recall on the same pairs that were initially 
presented) and finally give another presentation recall on the same pairs 
immediately followed by a presentation (again of the same pairs) and a final 
immediate recall.
Then we would like to test the recall of these same pairs the following wake 
time and 2h later.
I am really not sure how to do this now as it seems to only run as a 
presentation+ immediate recall with different lists of word pairs every time.
Any advice would be very welcome!
Thanks,
Karine

---
Karine Scheuermaier, MD, MMSc
Lecturer, School of Physiology
Faculty of Health Sciences
University of the Witwatersrand
7 York Road
Parktown 2193
Johannesburg--South Africa
Email: karine.scheuerma...@wits.ac.za
Tel: 011-717-2453 (ext 72453)
Fax: +27-86-765-4169 / 086-765-4169





This communication is 
intended for the addressee only. It is confidential. If you have received this 
communication in error, please notify us immediately and destroy the original 
message. You may not copy or disseminate this communication without the 
permission of the University. Only authorised signatories are competent to 
enter into agreements on behalf of the University and recipients are thus 
advised that the content of this message may not be legally binding on the 
University and may contain the personal views and opinions of the author, which 
are not necessarily the views and opinions of The University of the 
Witwatersrand, Johannesburg. All agreements between the University and 
outsiders are subject to South African Law unless the University agrees in 
writing to the contrary. 

--
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] Question about Corsi Blocks Test

2016-11-09 Thread Shane Mueller
Pedro,

I forget how many chances you get in corsi by default, but assuming it
is 2, what I think the traditional span score does is gives a number
for the level at which at least one set is recalled correctly. You are
suggesting a criterion for which both are recalled correctly.  Both of
these are poor and biased estimates of the 50% point on the memory
function. An unbiased estimate is the LD50 in logistic regression which
is my favorite way of measuring a span score, and I think the method we
use is also an unbiased estimate of this (but I don't have a
mathematical proof and I haven't thought about this hard since I was
working on my dissertation).  5.5 would indicate _either_ perfect
recall at length 5,  1/2 at length 6; and 0/2 at 7; or it could
indicate something like 2/2 at 4, 1/2 a 5, 1/2 at 6, and 1/2 at 7; 0/2
at 8. There may be some other ways to get that value as well.

You are free to score it however you want. The raw data is available
for each subject, and the report you got this from is just a simple way
to quickly get a number that is consistent across all users of PEBL.

Best,
Shane



On Mon, 2016-11-07 at 16:01 +, Pedro Rodrigues wrote:
>  
> Hello,
>  
> I’m conducting my PhD thesis and for this end I’m using the Corsi
> Block Test of the PEBL.
> However, I have a doubt about the results which the program give me.
>  
> Can you clarify me, please?
> For instance, a participant had the following results:
>  
> Last Item attempt to Complete:  6
> Total Score:  54
> Total Tentativas Correctas:   9
> Memory Span:  5.5
>  
> We can define “memory span” as span extension was established
> as the length of the last list recalled correctly (two attempts for
> each span length starting from 3 to a maximum of 9).
> If this participant failed one of the two attempts of the item with 6
> blocks, why was not memory span 5?
> In my interpretation, memory span is always an entire number or is my
> impression wrong?
>  
>  
> I look forward to hearing from you.
>  
> Best regards,
> _
> Pedro F. S. Rodrigues | PhD Student
> Psychologist nº: 15329 (OPP)
> University of Aveiro
> Depart. of Education and Psychology (C.1.51)
> Campus Universitário de Santiago
> 3810-193 Aveiro | Portugal
> Phone: (351) 234247144 ext. 24243
> Email: pedro.fil...@ua.pt
>  
> ---
> ---
> Developer Access Program for Intel Xeon Phi Processors
> Access to Intel Xeon Phi processor-based developer platforms.
> With one year of Intel Parallel Studio XE.
> Training and support from Colfax.
> Order your platform today. http://sdm.link/xeonphi
> ___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about Corsi Blocks Test

2016-11-09 Thread Pedro Rodrigues

Hello,

I'm conducting my PhD thesis and for this end I'm using the Corsi Block Test of 
the PEBL.
However, I have a doubt about the results which the program give me.

Can you clarify me, please?
For instance, a participant had the following results:

Last Item attempt to Complete:  6
Total Score:  54
Total Tentativas Correctas:   9
Memory Span:  5.5

We can define "memory span" as span extension was established
as the length of the last list recalled correctly (two attempts for each span 
length starting from 3 to a maximum of 9).
If this participant failed one of the two attempts of the item with 6 blocks, 
why was not memory span 5?
In my interpretation, memory span is always an entire number or is my 
impression wrong?


I look forward to hearing from you.

Best regards,
_
Pedro F. S. Rodrigues | PhD Student
Psychologist nº: 15329 (OPP)
University of Aveiro
Depart. of Education and Psychology (C.1.51)
Campus Universitário de Santiago
3810-193 Aveiro | Portugal
Phone: (351) 234247144 ext. 24243
Email: pedro.fil...@ua.pt

--
Developer Access Program for Intel Xeon Phi Processors
Access to Intel Xeon Phi processor-based developer platforms.
With one year of Intel Parallel Studio XE.
Training and support from Colfax.
Order your platform today. http://sdm.link/xeonphi___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about Tower of London

2016-09-08 Thread 김민경
 Hi. I am a researcher in Yonsei University of South Korea.Our major is  Clinical psychology  and we are developing a game application(especially for Android users) for Autism spectrum disorder children. And one of the games we wanna include is "Tower of London"But we have difficulty in finding Tower of London Solution (ex. start state, goal state, optimal paths)  We found that your company developed well-organized Tower of Londer. So we are asking your help.  I wonder if we could get tower of London solutions or get the information about the solution of TOL. Or can you offer the logics for Tower of London for programmers. (I also wonder if it should be paid) Actually, we don't know much about developing app and we are working with outside programmers. The programmers want us to offer full solutions of Tower of London or program logics that can be applied to Android studio(name of program tool). Thanks, Minkyoung.--
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about the PCPT

2015-12-10 Thread Samuel Sarfaty
Good morning,

I'm a researcher at a startup company that creates games to help
rehabilitate people with neurological dysfunction.

I recently conducted a pilot research in which I used the CPT as a pretest,
then gave our company's software to a set of participants, and then used
the CPT again as a postest to see if there was any significant improvement.

I'm mainly interested in changes in reaction time and success rate.
However, I would like to know if there is any previously accepted combined
measure of these two parameters. Namely, instead of having two separate
values for reaction time and success rate, I would like to have a single
value that combines the both; but so far I can't find a way to do this

Any help you can give me with this will be greatly appreciated.

Thank you in advance and very best regards,
Samuel Sarfaty
--
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] Question about running tasks

2015-10-22 Thread Shane Mueller

Ceren,

You need to run the PEBL launcher, which will be on your programs menu. 
>From there, you will navigate to the location in pebl-exp.0.14 and run a
test from there.

Shane


> Hello,
>
> I have a very basic question. I have installed Pebl, however, I cannot
> open
> the tasks. My computer does not recognize the Pebl file format still. What
> am I doing wrong?
>
> Thanks!
> Ceren
> --
> ___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list
>



--
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about running tasks

2015-10-22 Thread Ceren Gunsoy
Hello,

I have a very basic question. I have installed Pebl, however, I cannot open
the tasks. My computer does not recognize the Pebl file format still. What
am I doing wrong?

Thanks!
Ceren
--
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] question Trail making test and corsi

2015-10-22 Thread Jaseah Hermitt
Shane Mueller  writes:
> 
> PEBL currently won't work on-line like you want.  I have been working 
on
> this over the last month, with promising results, and so there may be 
a
> way to do this after the next release.
> 
> Shane
> 

Dear Shane,

I'm writing to inquire as to whether you've been able to get this up and 
running yet because I'm also attempting to embed a PEBL test into a 
Qualtrics questionnaire and I have no idea how to go about it.
Any help or pointers you can give would be gratefully recieved.

With warm regards,
Jaseah Hermitt







--
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about copying files

2015-03-06 Thread Stefano Ghirlanda
Hi Shane,
Please do tell me if this gets annoying!

I was wondering whether AppendFile would work on binary files. I would
like to provide the functionality to create a template experiment by
copying files shipped with my software into a user-defined location,
so that users can get started more easily. Most of the files are text
so I can use AppendFile to effectively copy them, but I am not sure
that would work with binary files. If not, is there another way to
copy files directly? I couldn't find a CopyFile or similar function in
the docs.

S

-- 
Stefano Ghirlanda - www.intercult.su.se/~stefano - drghirlanda.com
Full Professor of Psychology, Biology, and Anthropology, Brooklyn College
Founder and Fellow, Stockholm University Centre for the Study of
Cultural Evolution

--
Dive into the World of Parallel Programming The Go Parallel Website, sponsored
by Intel and developed in partnership with Slashdot Media, is your hub for all
things parallel software development, from weekly thought leadership blogs to
news, videos, case studies, tutorials and more. Take a look and join the 
conversation now. http://goparallel.sourceforge.net/
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] Question about experiment

2014-04-15 Thread Shane Mueller
Carlos,

Is this for instructions upfront, or something that plays in the
background throughout the test?  The first one is simple to do; the second
would be more difficult but possible. LoadSound() is the simplest thing to
use, but it requires .wav format.  Add code like this to the place you
want the sound to play:


  sound <- LoadSound("filename.wav")
  PlayForeground(sound)

  (or PlayBackground(sound), to play in the background)

There is also a function called LoadAudioFile(), which takes other kinds
of audio (mp3, ogg, etc) and plays it back, using StartPlayback() to
playin the background or PlayMovie() to play in the foreground. The
StartPlayback will play 'in the background' as long as you are waiting for
input or using a Wait() function, so you can have it running during the
test if that is needed.

Shane

> Dear Designers of PEBL,
>
> My name is Carlos Ramos I'm neuropsychologist from Quito-Ecuador (South
> America). I'm making my PhD Thesis about the relationship of inhibitory
> process, monitor and impulsivity/hyperactivity. In my thesis I want to
> make an experiment whith the PEBL Continuous Performance Task where the
> children have external monitor that supervise their performance. So, I
> want to put a MP3 file in the PEBL software that helps to children in the
> execution of PEBL Continuous Performance Task Vs. Children that don't have
> this help. I want to know if is posible to do this.
>
> Thanks.
>
> Sincerely,
>
> Carlos Ramos
> www.neuropsicologocarlosramos.com
>
>
> 
> --
> Learn Graph Databases - Download FREE O'Reilly Book
> "Graph Databases" is the definitive new guide to graph databases and their
> applications. Written by three acclaimed leaders in the field,
> this first edition is now available. Download your free book today!
> http://p.sf.net/sfu/NeoTech___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list
>



--
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] Question about experiment

2014-04-15 Thread Carlos Ramos
Dear Designers of PEBL,

My name is Carlos Ramos I'm neuropsychologist from Quito-Ecuador (South 
America). I'm making my PhD Thesis about the relationship of inhibitory 
process, monitor and impulsivity/hyperactivity. In my thesis I want to make an 
experiment whith the PEBL Continuous Performance Task where the children have 
external monitor that supervise their performance. So, I want to put a MP3 file 
in the PEBL software that helps to children in the execution of PEBL Continuous 
Performance Task Vs. Children that don't have this help. I want to know if is 
posible to do this.  

Thanks.

Sincerely,

Carlos Ramos
www.neuropsicologocarlosramos.com


  --
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/NeoTech___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] question about pebl.exe

2014-04-07 Thread Shane Mueller
Mary,

I think this is probably a mixture of using winxp and maybe using a
non-english internationalization, presuming you are using this on a
computer localized to russia.  Things like documents and program files are
in different locations on different version of MS operating systems, which
can confuse PEBL 0.13 in some situations.

If you have tried reinstalling and it doesn't work, try downloading and
using the stand-alone version of PEBL. See:

http://peblblog.blogspot.com/2014/03/running-pebl-without-installing.html

I currently don't have any computers running xp, so given that microsoft
is ceasing support of it (I think today or tomorrow maybe), and given that
I don't have a computer with XP to test things on,  I'd guess that support
for XP won't improve.

Shane

>  Hello,
> I can't launch pebl.exe on Windows XP. It is very strange because I
> haven't such problem with another computer with same system. Also I can
> launch pebl files from battery but there is a problem - without pebl.exe I
> can't set full screen. I use Open Office if it is matter.
> Please, help me somebody.
> Best regards,
> Mary.
> --
> Put Bad Developers to Shame
> Dominate Development with Jenkins Continuous Integration
> Continuously Automate Build, Test & Deployment
> Start a new project now. Try Jenkins in the cloud.
> http://p.sf.net/sfu/13600_Cloudbees_APR___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list
>



--
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment 
Start a new project now. Try Jenkins in the cloud.
http://p.sf.net/sfu/13600_Cloudbees_APR
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] question about pebl.exe

2014-04-07 Thread Mezentseva M . P .
 Hello,
I can't launch pebl.exe on Windows XP. It is very strange because I haven't 
such problem with another computer with same system. Also I can launch pebl 
files from battery but there is a problem - without pebl.exe I can't set full 
screen. I use Open Office if it is matter. 
Please, help me somebody. 
Best regards,
Mary.
--
Put Bad Developers to Shame
Dominate Development with Jenkins Continuous Integration
Continuously Automate Build, Test & Deployment 
Start a new project now. Try Jenkins in the cloud.
http://p.sf.net/sfu/13600_Cloudbees_APR___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] question about using PEBL for dissertation

2013-08-12 Thread Rogers, Jill
Hi,

I am looking for a test of attention for my dissertation.  I have been 
considering using a continuous performance task or a Stroop task to measure 
improvements in sustained attention or selective attention and came upon your 
website.  I am attracted to your service due to the high costs of CPT ($500 and 
up) from product measurement companies.  Because this is a dissertation, I was 
wondering if your researches have any advice or reservations about using your 
site.

Thank you,


Jill Rogers, M.S.
Instructor of EPE 174
Academic Enhancement
Doctoral Candidate, School Psychology
University of Kentucky
Please consider the environment before printing.

--
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] question Trail making test and corsi

2013-06-28 Thread Shane Mueller
PEBL currently won't work on-line like you want.  I have been working on
this over the last month, with promising results, and so there may be a
way to do this after the next release.

Shane

> Dear sir/madam,
>
> I have a question concerning the use of the PEBL tests.  I am thinking
> about using Qualtrics (www.qualtrics.com) to conduct online questionnaires
> in my research, and I would like to add two neuropsychological tests to
> the questionnaire. I am looking for an online version of the TMT and
> Corsi. Would it be possible to add the pebl tests (Corsi and TMT) to an
> online questionnaire like Qualtrics? And is this free?
>
> Thanks very much!
> Kind regards,
> Wendy Jacobs
>
>
> --
> Wendy Jacobs MSc
> PhD student
>
> Radboud University Nijmegen | Faculty of Arts, CIW-Business Communication
> Studies
> Erasmuslaan 1, 6525 HT Nijmegen | Room 4.11
> Phone: +31 (0)24 36 12928 | E-mail: w.jac...@let.ru.nl
>
> Netherlands Cancer Institute | Division of Psychosocial Research and
> Epidemiology
> Plesmanlaan 121, 1066 CX Amsterdam | Room H8.016
> Phone: +31 (0)20 512 1796 | E-mail: w.jac...@nki.nl
>
>
> --
> This SF.net email is sponsored by Windows:
>
> Build for Windows Store.
>
> http://p.sf.net/sfu/windows-dev2dev
> ___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list
>



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


[Pebl-list] question Trail making test and corsi

2013-06-28 Thread Jacobs, W. (Wendy)
Dear sir/madam,

I have a question concerning the use of the PEBL tests.  I am thinking about 
using Qualtrics (www.qualtrics.com) to conduct online questionnaires in my 
research, and I would like to add two neuropsychological tests to the 
questionnaire. I am looking for an online version of the TMT and Corsi. Would 
it be possible to add the pebl tests (Corsi and TMT) to an online questionnaire 
like Qualtrics? And is this free? 

Thanks very much!
Kind regards,
Wendy Jacobs


-- 
Wendy Jacobs MSc 
PhD student 

Radboud University Nijmegen | Faculty of Arts, CIW-Business Communication 
Studies 
Erasmuslaan 1, 6525 HT Nijmegen | Room 4.11 
Phone: +31 (0)24 36 12928 | E-mail: w.jac...@let.ru.nl 

Netherlands Cancer Institute | Division of Psychosocial Research and 
Epidemiology 
Plesmanlaan 121, 1066 CX Amsterdam | Room H8.016 
Phone: +31 (0)20 512 1796 | E-mail: w.jac...@nki.nl 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] question about PEBL

2013-04-15 Thread Shane Mueller
Sergio,

The iowa task already has a spanish translation, which is located in
translations\labels-es-mouse.txt and translations\labels-es-keyboard.txt. 
You just need to enter 'es' in the language entry box to use that
translation.

Shane

>> Hello
>>
>> I need you help, I am using PEBL software but I want to change the
>> language in one of its test, it would be the iowa test.
>> I woul like to change the language to spanish or if you can tell me
>> where
>> can I find  the source code.
>>
>>  thanks
>> --
>> Sergio Alejandro Gallego C.
>>
>
>
>
> --
> Sergio Alejandro Gallego C.
> --
> Precog is a next-generation analytics platform capable of advanced
> analytics on semi-structured data. The platform includes APIs for building
> apps and a phenomenal toolset for data science. Developers can use
> our toolset for easy data analysis & visualization. Get a free account!
> http://www2.precog.com/precogplatform/slashdotnewsletter___
> Pebl-list mailing list
> Pebl-list@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/pebl-list
>



--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list


Re: [Pebl-list] question about PEBL

2013-04-15 Thread Sergio Alejandro Gallego
> Hello
>
> I need you help, I am using PEBL software but I want to change the
> language in one of its test, it would be the iowa test.
> I woul like to change the language to spanish or if you can tell me where
> can I find  the source code.
>
>  thanks
> --
> Sergio Alejandro Gallego C.
>



-- 
Sergio Alejandro Gallego C.
--
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter___
Pebl-list mailing list
Pebl-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pebl-list