You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Change scores getter to scoresByTask and make it nested by task
Create an allScores getter that is the union of scoresByTask
Create a helper function getTaskSpecificScores that takes in a single row of scores (i.e., a run) and generates a ROAR score, normed scores, comparison scores, etc. that are specific to each task. Something like
and then, also in the helper file, we have to create the aforesaid functions processSWRRun and processPARun. This also requires that processXXXRun conforms to a specific API: input is a run and output is an object like
{roarScore: Number,subScores: {// These subtask IDs will differ in between tasksfsm: Number,lsm: Number,del: Number,},comparisonPercentile: Number,comparisonType: String(e.g."Woodcock Johnson"),normedPercentile: Number,classifications: {// Here each field can differ depending on the tasksupport: String,automaticity: String,fsm: String,lsm: String,}}
The text was updated successfully, but these errors were encountered:
scores
getter toscoresByTask
and make it nested by taskallScores
getter that is the union ofscoresByTask
getTaskSpecificScores
that takes in a single row of scores (i.e., a run) and generates a ROAR score, normed scores, comparison scores, etc. that are specific to each task. Something likeand then, also in the helper file, we have to create the aforesaid functions
processSWRRun
andprocessPARun
. This also requires thatprocessXXXRun
conforms to a specific API: input is a run and output is an object likeThe text was updated successfully, but these errors were encountered: