Difference between revisions of "CatiStat get"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
 
#REDIRECT [[CatiStatistic_getByInterviewers]]
 
#REDIRECT [[CatiStatistic_getByInterviewers]]
[[Category:Archive]]
 
 
[[Category:Questionnaire_Functions]]
 
[[Category:Questionnaire_Functions]]
 
= CatiStat_get =
 
= CatiStat_get =
 +
CatiStat_get replace by CatiStatistic_getByInterviewers
 
Get [[CatiStatistic class|CatiStatistic]]
 
Get [[CatiStatistic class|CatiStatistic]]
 
== Syntax ==
 
== Syntax ==

Revision as of 04:20, 28 February 2019

CatiStat_get

CatiStat_get replace by CatiStatistic_getByInterviewers Get CatiStatistic

Syntax

CatiStat_get(array interviewers, number qnaireRid, array startDate, array endDate);

Arguments

array interviewers

number qnaireRid

array startDate

array endDate

Return type

Array of CatiStatistic

Example

Array interviewers = {15620372, 15003004};
number qnaireRid = 15629214;
Array startDate = {2018, 2, 7, 0, 0, 0, 0};
Array endDate = {2018, 5, 10, 0, 0, 0, 0};
Array result = CatiStat_get(interviewers, qnaireRid, startDate, endDate);
print(result);//{CatiStatistic,CatiStatistic}
for(number i = 0; i<result.Count; i++ )
{
	CatiStatistic catiStat = result[i];	
	print(catiStat.InterviewerResourceId);//15003004, 15620372
	print(catiStat.TotalTime);//95280, 16740
	print(catiStat.RealTime);//89294, 16372
	print(catiStat.AverageSuccesTime);//1725, 2962
	print(catiStat.TotalCallAttempts);	//643, 116
}