Displaying 2 results from an estimated 2 matches for "task_2".
Did you mean:
task2
2009 Mar 16
1
Creating variables with different levels depending on conditions
...do classical experimental cognitive psychology and am interested in the
cognitive control of task sequences (i.e. classification task). Especially I
am interested in the performance of the actual depending on the tasks
before. Thus, in SPSS I create variables like this one:
Compute cond = 0.
If (task_2=task) cond=1 else cond=2.
task refers to the actual task and task_2 to the task performed 2 trials
before, cond=0 is used later to filter off the first two tasks in every
block.
So far, I could create all variables I need in R like in SPSS. However, I
don't succeed creating a variable like...
2008 Jan 23
11
Rails 2.0.2 + RJS
Hi
I had ajax commenting on my app, which worked perfectly on Rails
v1.2.6, but does not work the same in Rails 2.02. Basically the
comment gets added, but the visual effects do not work (ie lines 2 + 3
of create.rjs)
create.js
page.insert_html :bottom, ''comments'', :partial => ''comment''
page.visual_effect :appear, "comment_#{@comment.id}"