Difference between revisions of "CATI getCallStatistics"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
'''CATI_getCallStatistics'''  
+
=CATI_getCallStatistics=
 +
[[Category:Miscellaneous]]
  
   Get call status statistics of questionnaire.  
+
:Get call status (outcome) statistics of a CATI questionnaire.  
  
'''Syntax&nbsp;<br>''' &nbsp;&nbsp; CATI_getCallStatistics(questionnaireResourceID);  
+
==Syntax==
 +
:CATI_getCallStatistics(Qnaire_RID, CATI_IsLastCall);  
  
'''Arguments<br>''' &nbsp;&nbsp; questionnaireResourceID:&nbsp; is a number.  
+
==Arguments==
 +
*number Qnaire_RID: is a number.  
 +
*bool CATI_IsLastCall:
  
'''Return type<br>''' &nbsp;&nbsp; Dictionary type.
+
==Return type==
 +
Dictionary
  
<br>'''Examples'''
+
==Examples==
  
 
Dictionary catiStatistic=CATI_getCallStatistics(14283643); <br>print(catiStatistic);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
 
Dictionary catiStatistic=CATI_getCallStatistics(14283643); <br>print(catiStatistic);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  
  
// Result:&nbsp; {"Answer Sheet Statistics": {"InterviewFailed": 4, "Normal": 17}, "Call Status Statistics": {"Appointment (sure)": 27, "Busy": 1, "Call again later ": 20, "Connection reached": 14, "No answer": 6, "Respondent not present in fieldperiod": 1, "Wrong number (fax, modem ect.)": 3}}<br><br>  
+
// Result:&nbsp; {"Answer Sheet Statistics": {"InterviewFailed": 4, "Normal": 17}, "Call Status Statistics": {"Appointment (sure)": 27, "Busy": 1, "Call again later ": 20, "Connection reached": 14, "No answer": 6, "Respondent not present in fieldperiod": 1, "Wrong number (fax, modem ect.)": 3}}<br><br>
 
 
[[Category:Miscellaneous]]
 

Revision as of 10:56, 29 June 2012

CATI_getCallStatistics

Get call status (outcome) statistics of a CATI questionnaire.

Syntax

CATI_getCallStatistics(Qnaire_RID, CATI_IsLastCall);

Arguments

  • number Qnaire_RID: is a number.
  • bool CATI_IsLastCall:

Return type

Dictionary

Examples

Dictionary catiStatistic=CATI_getCallStatistics(14283643);
print(catiStatistic);                                       

// Result:  {"Answer Sheet Statistics": {"InterviewFailed": 4, "Normal": 17}, "Call Status Statistics": {"Appointment (sure)": 27, "Busy": 1, "Call again later ": 20, "Connection reached": 14, "No answer": 6, "Respondent not present in fieldperiod": 1, "Wrong number (fax, modem ect.)": 3}}