CatiStatistic class

From Catglobe Wiki
Jump to: navigation, search

CatiStatistic



Statistic for interviewers in a cati questionnaire.

Parent class

Inherits from object

Methods

  • (From object) string ToString() - The string representation of the object.

Properties

  • number AverageSuccessTime { get; } - Get AverageSuccesTime in second
  • DateTime FirstCall { get; } - Get when first call was started inside the time period
  • string InterviewerName { get; } - Get Interviewers user login name
  • int InterviewerResourceId { get; } - Get Interviewers user resource id
  • DateTime LastCall { get; } - Get when last call was finished inside the time period
  • int ModifiedRealTime { get; } - Get RealTime that respects max duration of the outcome
  • int NumberOfContacts { get; } - Get number of contacts called
  • int NumberOfInterviewSucceeded { get; } - Get number of success by qas status
  • int NumberOfSuccess { get; } - Get number of success by outcome status
  • string ObjectTypeName { get; } - The name of the type of object.
  • string QuestionnaireName { get; } - Get Questionnaire name
  • int QuestionnaireResourceId { get; } - Get Questionnaire resource id
  • int RealTime { get; } - Get RealTime in second
  • number SuccessRate { get; } - Get successrate in regards to ea records
  • int TotalCallAttempts { get; } - Get TotalCallAttempts
  • number TotalTime { get; } - Get TotalTime in second
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.

Static Methods

  • Array of Array CatiStatistic_getBy(bool groupByInterviewer "Return seperate results per interviewer", bool groupByQuestionnaire "Return seperate results per questionnaire", int groupBy "Return results in these groupings. -1=Total, 0=Day, 1=Week, 2=Month, 3=Quarter, 4=Year", DateTime from "Analyze from when. May be empty (default 72 months ago)", DateTime to "Analyze to when. May be empty (default tomorrow)") - Fetch all statistics, grouped by date group
  • Array of CatiStatistic CatiStatistic_getByInterviewers(Array of int interviewerUserResourceIds "Which interviewers to include. May be empty to detect all participating interviewers", int questionnaireResourceId "Resource id of the questionnaire to search statistics for", DateTime from "Analyze from when. May be empty", DateTime to "Analyze to when. May be empty") - Fetch all statistics by interviewers
  • array CatiStatistic_getGroupings(int groupBy "Return results in these groupings. 0=Day, 1=Week, 2=Month, 3=Quarter, 4=Year", DateTime from "Analyze from when. May be empty", DateTime to "Analyze to when. May be empty") - The grouping values. E.g. week 32 in 2014 is returned as {32,2014}. Grouping by year is returned as {2014,2014}
  • Array of CatiOutcomeStatistic CatiStatistic_getOutcomeStatistics(Array of int interviewerUserResourceIds "Which interviewers to include. May be empty to detect all participating interviewers", int questionnaireResourceId "Resource id of the questionnaire to search statistics for", DateTime from "Analyze from when. May be empty", DateTime to "Analyze to when. May be empty") - Fetch all statistics by interviewers

Examples

CatiStatistic is returned when calling CatiStatistic_getByInterviewers

Array interviewers = {15620372, 15003004};
number qnaireRid = 15629214;
DateTime startDate = new DateTime ("2018/2/7");
DateTime endDate = new DateTime ("2018/5/10");
Array result = CatiStatistic_getByInterviewers(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.AverageSuccessTime);//1725, 2962
	print(catiStat.TotalCallAttempts);	//643, 116
}