SlideShare a Scribd company logo
1 of 24
Download to read offline
Standardized Annotations for Survey Datasets:
Enabling Automated Quality Assurance and Evaluation
Dr. Georg Wittenburg ▪ Inspirient
Martin Rathje ▪ Kantar Public
General Online Research Conference 2023 (GOR 23)
Kassel, 21 September 2023
1
General Online Research Conference 2023, 21.09.2023
Martin Rathje
Senior Consultant at Kantar Public
Dr. Georg Wittenburg
Co-founder and CEO at Inspirient
AI-supported Survey Analytics
2
General Online Research Conference 2023, 21.09.2023
Six Reasons for AI / Automation
1) Improved Efficiency
Deliver detailed analytical evaluations in less time and
with more deep-dives
2) Quick Deliverables
Quickly deliver key results to clients, based on pre-
produced stories and prioritized insights
3) Preview Results during FW Data Collection
Preview results with client to gather feedback and steer
project
4) Advanced Data Validation
Collected data is more thoroughly checked for data quality
issues
5) Analytical Methods, Applied at Scale
Valuable insights surfaced with automated advanced
methods
6) Paper Trail for Every Result
Detailed, audit-proof documentation how each analytical
result was derived
Brief Recap
Survey raw data
(SPSS, Excel, CSV, …)
AI-supported
Survey Analytics
Client-facing deliverables
(PowerPoint, Excel, …)
AI-supported Survey Analytics @ GOR
3
General Online Research Conference 2023, 21.09.2023
Four sessions at GOR 23 on 20-22 September
Analysis
(qualitative / quantitative)
Synthesis
with Generative AI
Control
Hands-on
Experience
Community
Discussion
“Insights beyond Human Intuition”
(Talk at GOR 22)
“Trustworthy Analytics with Generative AI:
Four Use Cases for ChatGPT/GPT-4”
(Talk, 21 Sep 2023, 17:00, Rooms 1117/1118)
“Trustworthy Analytics with Generative AI:
ChatGPT/GPT-4 Hands-on”
(Workshop, 20 Sep 2023, 13:30, Room 1124)
Panel Discussion on AI / LLM
(22 Sep 2023, 11:45, Room 1101)
“Standardized Annotations for Survey Datasets:
Enabling Automated Quality Assurance and Evaluation”
(Talk, 21 Sep 2023, 12:00, Room 1124)
current
session
What needs to be known about survey data to auto-generate crosstabs?
4
General Online Research Conference 2023, 21.09.2023
Quick Example (1/3)
?
What needs to be known about survey data to auto-generate crosstabs?
5
General Online Research Conference 2023, 21.09.2023
Quick Example (2/3)
Required
• ‘Gender’ is an independent
socio-demographic variable
• ‘Planning to vote’ is a
dependent response variable
Optional
• Number of samples to display
results as trustworthy
Focus of this talk
What needs to be known about survey data to auto-generate crosstabs?
6
General Online Research Conference 2023, 21.09.2023
Quick Example (3/3)
• ‘Gender’ 
DEMOGRAPHIC_VARIABLE
• ‘Planning to vote’ 
SURVEY_RESPONSE
+
Introducing DIN SPEC 32792
7
General Online Research Conference 2023, 21.09.2023
• Co-written by Inspirient GmbH, Kantar Public and Scheer
PAS Deutschland GmbH
• Funded (in part) by Deutsches Institut für Normung (DIN)
• Published in July 2023
• Contents:
 Semantic data annotations, incl. for survey use case
 Annotation syntax in JSON
 Name space and vendor extensions
 Examples and best practices
• Available free of charge at www.beuth.de/en/technical-
rule/din-spec-32792/368566803
Semantic Data Annotations to Support AI-enabled Data Processing
Annotation Syntax and Storage/Exchange Definitions
8
General Online Research Conference 2023, 21.09.2023
Annotation Syntax
in EBNF
annotation = identifier, [ "(" , parameter list , ")" ] ;
identifier = uppercase letter , { uppercase letter | "_" } ;
parameter list = parameter, { "," , parameter } ;
parameter = numeric value | string value ;
numeric value = integer value | floating point value ;
integer value = [ "-" ] , digit , { digit } ;
floating point value = integer value , "." , digit , { digit } ;
string value = '"' , { all visible characters - '"' }, '"' ;
uppercase letter = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I"
| "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R"
| "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ;
digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ;
all visible characters = ? all visible Unicode characters ?
JSON File Format for Storing / Exchanging
in JSON Schema1
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://din.de/norm/32792.schema.json",
"title": "Semantic Data Annotation for AI-supported Data Processing (DIN SPEC 32792)",
"description": "Schema for a single Semantic Data Annotation for AI-supported Data Processing (DIN SPEC
32792)",
"type": "object",
"properties": {
"annotationID": {
"description": "The unique identifier for an annotation",
"type": "string"
},
"annotationParameter": {
"description": "The parameter of the annotation",
"type": "array",
"items": {
"anyOf": [
{ "type": "string" },
{ "type": "number" }
]
},
"minItems": 0,
"uniqueItems": true
}
},
"required": [ "annotationID", ]
}
as per Section 5 of DIN SPEC 32792
1. Alternatives exists for project-specific embedded JSON and for stand-alone processing
Independent/dependent variable-annotations enable regression analysis
9
General Online Research Conference 2023, 21.09.2023
Example (1/3): Automated Regression Analysis
• ‘Age Group’, ‘Party ID’, ‘Party
Registration’, ‘Political ideology’,
‘Presidential vote choice’ 
INDEPENDENT_VARIABLE
• ‘The cost of holding the recall election
is a waste of taxpayer money’ 
DEPENDENT_VARIABLE
+
Berkeley IGS Q4 2021 Survey Data
Independent/dependent variable-annotations enable regression analysis
10
General Online Research Conference 2023, 21.09.2023
Example (1/3): Automated Regression Analysis
• ‘Age Group’, ‘Party ID’, ‘Party
Registration’, ‘Political ideology’,
‘Presidential vote choice’ 
INDEPENDENT_VARIABLE
• ‘The cost of holding the recall election
is a waste of taxpayer money’ 
DEPENDENT_VARIABLE
+
Berkeley IGS Q4 2021 Survey Data
Annotations on survey duration and interviewers enables quality checks
11
General Online Research Conference 2023, 21.09.2023
Example (2/3): Automated Survey Quality Control
• ‘dauer’  SURVEY_DURATION
• ‘intnr’  SURVEY_INTERVIEWER
+
Kantar Public Quality Test Dataset1
1. Sanitized
Annotations on survey duration and interviewers enables quality checks
12
General Online Research Conference 2023, 21.09.2023
Example (2/3): Automated Survey Quality Control
• ‘dauer’  SURVEY_DURATION
• ‘intnr’  SURVEY_INTERVIEWER
+
Kantar Public Quality Test Dataset1
1. Sanitized
Annotations on survey duration and interviewers enables quality checks
13
General Online Research Conference 2023, 21.09.2023
Example (2/3): Automated Survey Quality Control
• ‘dauer’  SURVEY_DURATION
• ‘intnr’  SURVEY_INTERVIEWER
+
Kantar Public Quality Test Dataset1
1. Sanitized
Annotations on survey duration and interviewers enables quality checks
14
General Online Research Conference 2023, 21.09.2023
Example (2/3): Automated Survey Quality Control
• ‘dauer’  SURVEY_DURATION
• ‘intnr’  SURVEY_INTERVIEWER
+
Kantar Public Quality Test Dataset1
1. Sanitized
Annotations on survey duration and interviewers enables quality checks
15
General Online Research Conference 2023, 21.09.2023
Example (2/3): Automated Survey Quality Control
• ‘dauer’  SURVEY_DURATION
• ‘intnr’  SURVEY_INTERVIEWER
+
Kantar Public Quality Test Dataset1
1. Sanitized
Natural language text-annotation enables topic extraction, coding and analysis
16
General Online Research Conference 2023, 21.09.2023
Example (3/3): Automated Natural Language Text Analysis
• ‘Finally, what else should SFO be
doing to help travelers feel their health
is being protected when using SFO?’
 INDEPENDENT_VARIABLE and
NATURAL_LANGUAGE_TEXT
+
San Francisco Airport COVID-19 Recovery (2020)
Natural language text-annotation enables topic extraction, coding and analysis
17
General Online Research Conference 2023, 21.09.2023
Example (3/3): Automated Natural Language Text Analysis
• ‘Finally, what else should SFO be
doing to help travelers feel their health
is being protected when using SFO?’
 INDEPENDENT_VARIABLE and
NATURAL_LANGUAGE_TEXT
+
San Francisco Airport COVID-19 Recovery (2020)
Natural language text-annotation enables topic extraction, coding and analysis
18
General Online Research Conference 2023, 21.09.2023
Example (3/3): Automated Natural Language Text Analysis
• ‘Finally, what else should SFO be
doing to help travelers feel their health
is being protected when using SFO?’
 INDEPENDENT_VARIABLE and
NATURAL_LANGUAGE_TEXT
+
San Francisco Airport COVID-19 Recovery (2020)
Natural language text-annotation enables topic extraction, coding and analysis
19
General Online Research Conference 2023, 21.09.2023
Example (3/3): Automated Natural Language Text Analysis
• ‘Finally, what else should SFO be
doing to help travelers feel their health
is being protected when using SFO?’
 INDEPENDENT_VARIABLE and
NATURAL_LANGUAGE_TEXT
+
San Francisco Airport COVID-19 Recovery (2020)
Natural language text-annotation enables topic extraction, coding and analysis
20
General Online Research Conference 2023, 21.09.2023
Example (3/3): Automated Natural Language Text Analysis
• ‘Finally, what else should SFO be
doing to help travelers feel their health
is being protected when using SFO?’
 INDEPENDENT_VARIABLE and
NATURAL_LANGUAGE_TEXT
+
San Francisco Airport COVID-19 Recovery (2020)
DIN SPEC 32792 defines 53 semantic data annotations
21
General Online Research Conference 2023, 21.09.2023
Annotations for Basic Data Properties
DEFAULT_VALUE, IGNORE_VALUE,
MORE_IS_BETTER, LESS_IS_BETTER,
HAS_SUBTOTALS, ID,
NATURAL_LANGUAGE_TEXT
Annotations for Basic Statistical Properties
NOMINAL, CATEGORICAL, ORDINAL,
SUMMABLE, MAXIMIZABLE, MINIMIZABLE
Annotations for Advanced Statistical Properties
DEPENDENT_VARIABLE,
INDEPENDENT_VARIABLE,
REFERENCE_CATEGORY,
WEIGHTING_FACTOR
Annotations for Data Processing
FILTER_ON, FILTER_ON_DOMINANT_DOMAIN,
FILTER_ON_DOMINANT_DOMAIN_BY_VALUE,
FILTER_ON_TOP_3_BY_VALUE,
FILTER_ON_TOP_10_BY_VALUE,
DRILL_DOWN,
DRILL_DOWN_ON_DOMINANT_DOMAIN,
JOINABLE_ID_VALUES, JOINABLE, USE_AS_IS
Annotations for Process Data (use case-specific)
PROCESS_VARIABLE, PROCESS_ID,
INSTANCE_VARIABLE, INSTANCE_ID,
EVENT_VARIABLE, EVENT_ID,
NEXT_EVENT_ID, PREVIOUS_EVENT_ID,
EVENT_CATEGORY,
EVENT_START_TIMESTAMP,
EVENT_END_TIMESTAMP, EVENT_DURATION,
EVENT_RESULT, EVENT_OWNER
Annotations for Surveys / Opinion Polling
(use case-specific)
DEFINE_AS_MISSING,
DEFINE_AS_NO_OPINION,
DEMOGRAPHIC_VARIABLE,
MULTIPLE_RESPONSE_VARIABLE,
MULTI_PUNCH_VARIABLE, SURVEY_CASE_ID,
SURVEY_DURATION, SURVEY_INTERVIEWER,
SURVEY_META, SURVEY_MODE,
SURVEY_RESPONSE, SURVEY_WAVE
Miscellaneous Annotations
ANONYMIZE
27 general-purpose and 26 use case-specific annotations
DIN SPEC 32792 also has
provisions for vendor-specific
extensions to support additional
semantics and/or use cases
Fully Automate the Analysis of Your Survey Data with DIN SPEC 32792!
22
General Online Research Conference 2023, 21.09.2023
Survey Raw Data
DIN SPEC
32792
DIN SPEC 32792 Results by Inspirient
+
23
General Online Research Conference 2023, 21.09.2023
Thank you for your attention!
Martin Rathje
martin.rathje@kantar.com
Dr. Georg Wittenburg
georg.wittenburg@inspirient.com

More Related Content

Similar to Standardized Annotations for Survey Datasets: Enabling Automated Quality Assurance and Evaluation

MediaEval 2017 Retrieving Diverse Social Images Task (Overview)
MediaEval 2017 Retrieving Diverse Social Images Task (Overview)MediaEval 2017 Retrieving Diverse Social Images Task (Overview)
MediaEval 2017 Retrieving Diverse Social Images Task (Overview)multimediaeval
 
IRJET- Smartphone Sensor based Security Questions and Location
IRJET- Smartphone Sensor based Security Questions and LocationIRJET- Smartphone Sensor based Security Questions and Location
IRJET- Smartphone Sensor based Security Questions and LocationIRJET Journal
 
Collecting managing and assessing data using sample surveys
Collecting managing and assessing data using sample surveysCollecting managing and assessing data using sample surveys
Collecting managing and assessing data using sample surveysĐức Nhiên Trần
 
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Qazi Maaz Arshad
 
UXPA 2023: Data science and UX: Smarter together
UXPA 2023: Data science and UX: Smarter togetherUXPA 2023: Data science and UX: Smarter together
UXPA 2023: Data science and UX: Smarter togetherUXPA International
 
One Stop Recommendation
One Stop RecommendationOne Stop Recommendation
One Stop RecommendationIRJET Journal
 
One Stop Recommendation
One Stop RecommendationOne Stop Recommendation
One Stop RecommendationIRJET Journal
 
CDKP 2013
CDKP 2013CDKP 2013
CDKP 2013icaita
 
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKET
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKETSTOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKET
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKETIRJET Journal
 
Data Con LA 2022 - Collaborative Data Exploration using Conversational AI
Data Con LA 2022 - Collaborative Data Exploration using Conversational AIData Con LA 2022 - Collaborative Data Exploration using Conversational AI
Data Con LA 2022 - Collaborative Data Exploration using Conversational AIData Con LA
 
Principles of Software-defined Elastic Systems for Big Data Analytics
Principles of Software-defined Elastic Systems for Big Data AnalyticsPrinciples of Software-defined Elastic Systems for Big Data Analytics
Principles of Software-defined Elastic Systems for Big Data AnalyticsHong-Linh Truong
 
REAL TIME POLLING SYSTEM
REAL TIME POLLING SYSTEMREAL TIME POLLING SYSTEM
REAL TIME POLLING SYSTEMIRJET Journal
 
Workshop - Build a Graph Solution
Workshop - Build a Graph SolutionWorkshop - Build a Graph Solution
Workshop - Build a Graph SolutionNeo4j
 
Hardware Design Practices For Modern Hardware
Hardware Design Practices For Modern HardwareHardware Design Practices For Modern Hardware
Hardware Design Practices For Modern HardwareWinstina Kennedy
 
Forensic drive correlation
Forensic drive correlationForensic drive correlation
Forensic drive correlationRamesh Gubba
 
Empirical Model of Supervised Learning Approach for Opinion Mining
Empirical Model of Supervised Learning Approach for Opinion MiningEmpirical Model of Supervised Learning Approach for Opinion Mining
Empirical Model of Supervised Learning Approach for Opinion MiningIRJET Journal
 
Social networks protection against fake profiles and social bots attacks
Social networks protection against  fake profiles and social bots attacksSocial networks protection against  fake profiles and social bots attacks
Social networks protection against fake profiles and social bots attacksAboul Ella Hassanien
 
Survey Surfer : A Web Based Data Gathering and Analysis Application
Survey Surfer : A Web Based Data Gathering and Analysis ApplicationSurvey Surfer : A Web Based Data Gathering and Analysis Application
Survey Surfer : A Web Based Data Gathering and Analysis Applicationaciijournal
 

Similar to Standardized Annotations for Survey Datasets: Enabling Automated Quality Assurance and Evaluation (20)

MediaEval 2017 Retrieving Diverse Social Images Task (Overview)
MediaEval 2017 Retrieving Diverse Social Images Task (Overview)MediaEval 2017 Retrieving Diverse Social Images Task (Overview)
MediaEval 2017 Retrieving Diverse Social Images Task (Overview)
 
IRJET- Smartphone Sensor based Security Questions and Location
IRJET- Smartphone Sensor based Security Questions and LocationIRJET- Smartphone Sensor based Security Questions and Location
IRJET- Smartphone Sensor based Security Questions and Location
 
Collecting managing and assessing data using sample surveys
Collecting managing and assessing data using sample surveysCollecting managing and assessing data using sample surveys
Collecting managing and assessing data using sample surveys
 
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
Cse443 Project Report - LPU (Modern Big Data Analysis with SQL Specialization)
 
UXPA 2023: Data science and UX: Smarter together
UXPA 2023: Data science and UX: Smarter togetherUXPA 2023: Data science and UX: Smarter together
UXPA 2023: Data science and UX: Smarter together
 
One Stop Recommendation
One Stop RecommendationOne Stop Recommendation
One Stop Recommendation
 
One Stop Recommendation
One Stop RecommendationOne Stop Recommendation
One Stop Recommendation
 
Kenett On Information NYU-Poly 2013
Kenett On Information NYU-Poly 2013Kenett On Information NYU-Poly 2013
Kenett On Information NYU-Poly 2013
 
CDKP 2013
CDKP 2013CDKP 2013
CDKP 2013
 
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKET
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKETSTOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKET
STOCKSENTIX: A MACHINE LEARNING APPROACH TO STOCKMARKET
 
raju
rajuraju
raju
 
Data Con LA 2022 - Collaborative Data Exploration using Conversational AI
Data Con LA 2022 - Collaborative Data Exploration using Conversational AIData Con LA 2022 - Collaborative Data Exploration using Conversational AI
Data Con LA 2022 - Collaborative Data Exploration using Conversational AI
 
Principles of Software-defined Elastic Systems for Big Data Analytics
Principles of Software-defined Elastic Systems for Big Data AnalyticsPrinciples of Software-defined Elastic Systems for Big Data Analytics
Principles of Software-defined Elastic Systems for Big Data Analytics
 
REAL TIME POLLING SYSTEM
REAL TIME POLLING SYSTEMREAL TIME POLLING SYSTEM
REAL TIME POLLING SYSTEM
 
Workshop - Build a Graph Solution
Workshop - Build a Graph SolutionWorkshop - Build a Graph Solution
Workshop - Build a Graph Solution
 
Hardware Design Practices For Modern Hardware
Hardware Design Practices For Modern HardwareHardware Design Practices For Modern Hardware
Hardware Design Practices For Modern Hardware
 
Forensic drive correlation
Forensic drive correlationForensic drive correlation
Forensic drive correlation
 
Empirical Model of Supervised Learning Approach for Opinion Mining
Empirical Model of Supervised Learning Approach for Opinion MiningEmpirical Model of Supervised Learning Approach for Opinion Mining
Empirical Model of Supervised Learning Approach for Opinion Mining
 
Social networks protection against fake profiles and social bots attacks
Social networks protection against  fake profiles and social bots attacksSocial networks protection against  fake profiles and social bots attacks
Social networks protection against fake profiles and social bots attacks
 
Survey Surfer : A Web Based Data Gathering and Analysis Application
Survey Surfer : A Web Based Data Gathering and Analysis ApplicationSurvey Surfer : A Web Based Data Gathering and Analysis Application
Survey Surfer : A Web Based Data Gathering and Analysis Application
 

More from Inspirient

Free Text Classification with Neural Networks: Training, Process Integration ...
Free Text Classification with Neural Networks: Training, Process Integration ...Free Text Classification with Neural Networks: Training, Process Integration ...
Free Text Classification with Neural Networks: Training, Process Integration ...Inspirient
 
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023Inspirient
 
Diminishing Returns: When Should Real- world Surveys Stop Sampling?
Diminishing Returns: When Should Real- world Surveys Stop Sampling?Diminishing Returns: When Should Real- world Surveys Stop Sampling?
Diminishing Returns: When Should Real- world Surveys Stop Sampling?Inspirient
 
Complementing Political / Social Research with AI for a Deeper Understanding ...
Complementing Political / Social Research with AI for a Deeper Understanding ...Complementing Political / Social Research with AI for a Deeper Understanding ...
Complementing Political / Social Research with AI for a Deeper Understanding ...Inspirient
 
Lessons from Analyzing All of Europe's Data
Lessons from Analyzing All of Europe's DataLessons from Analyzing All of Europe's Data
Lessons from Analyzing All of Europe's DataInspirient
 
Digital Crime Scene Investigation
Digital Crime Scene InvestigationDigital Crime Scene Investigation
Digital Crime Scene InvestigationInspirient
 
Scalability and Autonomous Analytics
Scalability and Autonomous AnalyticsScalability and Autonomous Analytics
Scalability and Autonomous AnalyticsInspirient
 
Future Roles in AI-enabled Organisations
Future Roles in AI-enabled OrganisationsFuture Roles in AI-enabled Organisations
Future Roles in AI-enabled OrganisationsInspirient
 
KI und Predictive Maintenance am Beispiel von DB Cargo
KI und Predictive Maintenance am Beispiel von DB CargoKI und Predictive Maintenance am Beispiel von DB Cargo
KI und Predictive Maintenance am Beispiel von DB CargoInspirient
 

More from Inspirient (9)

Free Text Classification with Neural Networks: Training, Process Integration ...
Free Text Classification with Neural Networks: Training, Process Integration ...Free Text Classification with Neural Networks: Training, Process Integration ...
Free Text Classification with Neural Networks: Training, Process Integration ...
 
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023
Inspirient's Pitch for the MRS Research Live Innovation of the Year Award 2023
 
Diminishing Returns: When Should Real- world Surveys Stop Sampling?
Diminishing Returns: When Should Real- world Surveys Stop Sampling?Diminishing Returns: When Should Real- world Surveys Stop Sampling?
Diminishing Returns: When Should Real- world Surveys Stop Sampling?
 
Complementing Political / Social Research with AI for a Deeper Understanding ...
Complementing Political / Social Research with AI for a Deeper Understanding ...Complementing Political / Social Research with AI for a Deeper Understanding ...
Complementing Political / Social Research with AI for a Deeper Understanding ...
 
Lessons from Analyzing All of Europe's Data
Lessons from Analyzing All of Europe's DataLessons from Analyzing All of Europe's Data
Lessons from Analyzing All of Europe's Data
 
Digital Crime Scene Investigation
Digital Crime Scene InvestigationDigital Crime Scene Investigation
Digital Crime Scene Investigation
 
Scalability and Autonomous Analytics
Scalability and Autonomous AnalyticsScalability and Autonomous Analytics
Scalability and Autonomous Analytics
 
Future Roles in AI-enabled Organisations
Future Roles in AI-enabled OrganisationsFuture Roles in AI-enabled Organisations
Future Roles in AI-enabled Organisations
 
KI und Predictive Maintenance am Beispiel von DB Cargo
KI und Predictive Maintenance am Beispiel von DB CargoKI und Predictive Maintenance am Beispiel von DB Cargo
KI und Predictive Maintenance am Beispiel von DB Cargo
 

Recently uploaded

Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...shivangimorya083
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptxAnupama Kate
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...dajasot375
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...Pooja Nehwal
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingNeil Barnes
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfSocial Samosa
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubaihf8803863
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Sapana Sha
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptSonatrach
 
Digi Khata Problem along complete plan.pptx
Digi Khata Problem along complete plan.pptxDigi Khata Problem along complete plan.pptx
Digi Khata Problem along complete plan.pptxTanveerAhmed817946
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改atducpo
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPramod Kumar Srivastava
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz1
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一ffjhghh
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...Florian Roscheck
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...Suhani Kapoor
 

Recently uploaded (20)

Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
Full night 🥵 Call Girls Delhi New Friends Colony {9711199171} Sanya Reddy ✌️o...
 
100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx100-Concepts-of-AI by Anupama Kate .pptx
100-Concepts-of-AI by Anupama Kate .pptx
 
E-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptxE-Commerce Order PredictionShraddha Kamble.pptx
E-Commerce Order PredictionShraddha Kamble.pptx
 
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
Indian Call Girls in Abu Dhabi O5286O24O8 Call Girls in Abu Dhabi By Independ...
 
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...{Pooja:  9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
{Pooja: 9892124323 } Call Girl in Mumbai | Jas Kaur Rate 4500 Free Hotel Del...
 
Brighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data StorytellingBrighton SEO | April 2024 | Data Storytelling
Brighton SEO | April 2024 | Data Storytelling
 
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdfKantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
Kantar AI Summit- Under Embargo till Wednesday, 24th April 2024, 4 PM, IST.pdf
 
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls DubaiDubai Call Girls Wifey O52&786472 Call Girls Dubai
Dubai Call Girls Wifey O52&786472 Call Girls Dubai
 
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
Saket, (-DELHI )+91-9654467111-(=)CHEAP Call Girls in Escorts Service Saket C...
 
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.pptdokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
dokumen.tips_chapter-4-transient-heat-conduction-mehmet-kanoglu.ppt
 
Decoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in ActionDecoding Loan Approval: Predictive Modeling in Action
Decoding Loan Approval: Predictive Modeling in Action
 
Digi Khata Problem along complete plan.pptx
Digi Khata Problem along complete plan.pptxDigi Khata Problem along complete plan.pptx
Digi Khata Problem along complete plan.pptx
 
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
代办国外大学文凭《原版美国UCLA文凭证书》加州大学洛杉矶分校毕业证制作成绩单修改
 
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls CP 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptxPKS-TGC-1084-630 - Stage 1 Proposal.pptx
PKS-TGC-1084-630 - Stage 1 Proposal.pptx
 
Invezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signalsInvezz.com - Grow your wealth with trading signals
Invezz.com - Grow your wealth with trading signals
 
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一定制英国白金汉大学毕业证(UCB毕业证书)																			成绩单原版一比一
定制英国白金汉大学毕业证(UCB毕业证书) 成绩单原版一比一
 
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...From idea to production in a day – Leveraging Azure ML and Streamlit to build...
From idea to production in a day – Leveraging Azure ML and Streamlit to build...
 
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
VIP High Profile Call Girls Amravati Aarushi 8250192130 Independent Escort Se...
 

Standardized Annotations for Survey Datasets: Enabling Automated Quality Assurance and Evaluation

  • 1. Standardized Annotations for Survey Datasets: Enabling Automated Quality Assurance and Evaluation Dr. Georg Wittenburg ▪ Inspirient Martin Rathje ▪ Kantar Public General Online Research Conference 2023 (GOR 23) Kassel, 21 September 2023
  • 2. 1 General Online Research Conference 2023, 21.09.2023 Martin Rathje Senior Consultant at Kantar Public Dr. Georg Wittenburg Co-founder and CEO at Inspirient
  • 3. AI-supported Survey Analytics 2 General Online Research Conference 2023, 21.09.2023 Six Reasons for AI / Automation 1) Improved Efficiency Deliver detailed analytical evaluations in less time and with more deep-dives 2) Quick Deliverables Quickly deliver key results to clients, based on pre- produced stories and prioritized insights 3) Preview Results during FW Data Collection Preview results with client to gather feedback and steer project 4) Advanced Data Validation Collected data is more thoroughly checked for data quality issues 5) Analytical Methods, Applied at Scale Valuable insights surfaced with automated advanced methods 6) Paper Trail for Every Result Detailed, audit-proof documentation how each analytical result was derived Brief Recap Survey raw data (SPSS, Excel, CSV, …) AI-supported Survey Analytics Client-facing deliverables (PowerPoint, Excel, …)
  • 4. AI-supported Survey Analytics @ GOR 3 General Online Research Conference 2023, 21.09.2023 Four sessions at GOR 23 on 20-22 September Analysis (qualitative / quantitative) Synthesis with Generative AI Control Hands-on Experience Community Discussion “Insights beyond Human Intuition” (Talk at GOR 22) “Trustworthy Analytics with Generative AI: Four Use Cases for ChatGPT/GPT-4” (Talk, 21 Sep 2023, 17:00, Rooms 1117/1118) “Trustworthy Analytics with Generative AI: ChatGPT/GPT-4 Hands-on” (Workshop, 20 Sep 2023, 13:30, Room 1124) Panel Discussion on AI / LLM (22 Sep 2023, 11:45, Room 1101) “Standardized Annotations for Survey Datasets: Enabling Automated Quality Assurance and Evaluation” (Talk, 21 Sep 2023, 12:00, Room 1124) current session
  • 5. What needs to be known about survey data to auto-generate crosstabs? 4 General Online Research Conference 2023, 21.09.2023 Quick Example (1/3) ?
  • 6. What needs to be known about survey data to auto-generate crosstabs? 5 General Online Research Conference 2023, 21.09.2023 Quick Example (2/3) Required • ‘Gender’ is an independent socio-demographic variable • ‘Planning to vote’ is a dependent response variable Optional • Number of samples to display results as trustworthy Focus of this talk
  • 7. What needs to be known about survey data to auto-generate crosstabs? 6 General Online Research Conference 2023, 21.09.2023 Quick Example (3/3) • ‘Gender’  DEMOGRAPHIC_VARIABLE • ‘Planning to vote’  SURVEY_RESPONSE +
  • 8. Introducing DIN SPEC 32792 7 General Online Research Conference 2023, 21.09.2023 • Co-written by Inspirient GmbH, Kantar Public and Scheer PAS Deutschland GmbH • Funded (in part) by Deutsches Institut für Normung (DIN) • Published in July 2023 • Contents:  Semantic data annotations, incl. for survey use case  Annotation syntax in JSON  Name space and vendor extensions  Examples and best practices • Available free of charge at www.beuth.de/en/technical- rule/din-spec-32792/368566803 Semantic Data Annotations to Support AI-enabled Data Processing
  • 9. Annotation Syntax and Storage/Exchange Definitions 8 General Online Research Conference 2023, 21.09.2023 Annotation Syntax in EBNF annotation = identifier, [ "(" , parameter list , ")" ] ; identifier = uppercase letter , { uppercase letter | "_" } ; parameter list = parameter, { "," , parameter } ; parameter = numeric value | string value ; numeric value = integer value | floating point value ; integer value = [ "-" ] , digit , { digit } ; floating point value = integer value , "." , digit , { digit } ; string value = '"' , { all visible characters - '"' }, '"' ; uppercase letter = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H" | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P" | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X" | "Y" | "Z" ; digit = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7" | "8" | "9" ; all visible characters = ? all visible Unicode characters ? JSON File Format for Storing / Exchanging in JSON Schema1 { "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://din.de/norm/32792.schema.json", "title": "Semantic Data Annotation for AI-supported Data Processing (DIN SPEC 32792)", "description": "Schema for a single Semantic Data Annotation for AI-supported Data Processing (DIN SPEC 32792)", "type": "object", "properties": { "annotationID": { "description": "The unique identifier for an annotation", "type": "string" }, "annotationParameter": { "description": "The parameter of the annotation", "type": "array", "items": { "anyOf": [ { "type": "string" }, { "type": "number" } ] }, "minItems": 0, "uniqueItems": true } }, "required": [ "annotationID", ] } as per Section 5 of DIN SPEC 32792 1. Alternatives exists for project-specific embedded JSON and for stand-alone processing
  • 10. Independent/dependent variable-annotations enable regression analysis 9 General Online Research Conference 2023, 21.09.2023 Example (1/3): Automated Regression Analysis • ‘Age Group’, ‘Party ID’, ‘Party Registration’, ‘Political ideology’, ‘Presidential vote choice’  INDEPENDENT_VARIABLE • ‘The cost of holding the recall election is a waste of taxpayer money’  DEPENDENT_VARIABLE + Berkeley IGS Q4 2021 Survey Data
  • 11. Independent/dependent variable-annotations enable regression analysis 10 General Online Research Conference 2023, 21.09.2023 Example (1/3): Automated Regression Analysis • ‘Age Group’, ‘Party ID’, ‘Party Registration’, ‘Political ideology’, ‘Presidential vote choice’  INDEPENDENT_VARIABLE • ‘The cost of holding the recall election is a waste of taxpayer money’  DEPENDENT_VARIABLE + Berkeley IGS Q4 2021 Survey Data
  • 12. Annotations on survey duration and interviewers enables quality checks 11 General Online Research Conference 2023, 21.09.2023 Example (2/3): Automated Survey Quality Control • ‘dauer’  SURVEY_DURATION • ‘intnr’  SURVEY_INTERVIEWER + Kantar Public Quality Test Dataset1 1. Sanitized
  • 13. Annotations on survey duration and interviewers enables quality checks 12 General Online Research Conference 2023, 21.09.2023 Example (2/3): Automated Survey Quality Control • ‘dauer’  SURVEY_DURATION • ‘intnr’  SURVEY_INTERVIEWER + Kantar Public Quality Test Dataset1 1. Sanitized
  • 14. Annotations on survey duration and interviewers enables quality checks 13 General Online Research Conference 2023, 21.09.2023 Example (2/3): Automated Survey Quality Control • ‘dauer’  SURVEY_DURATION • ‘intnr’  SURVEY_INTERVIEWER + Kantar Public Quality Test Dataset1 1. Sanitized
  • 15. Annotations on survey duration and interviewers enables quality checks 14 General Online Research Conference 2023, 21.09.2023 Example (2/3): Automated Survey Quality Control • ‘dauer’  SURVEY_DURATION • ‘intnr’  SURVEY_INTERVIEWER + Kantar Public Quality Test Dataset1 1. Sanitized
  • 16. Annotations on survey duration and interviewers enables quality checks 15 General Online Research Conference 2023, 21.09.2023 Example (2/3): Automated Survey Quality Control • ‘dauer’  SURVEY_DURATION • ‘intnr’  SURVEY_INTERVIEWER + Kantar Public Quality Test Dataset1 1. Sanitized
  • 17. Natural language text-annotation enables topic extraction, coding and analysis 16 General Online Research Conference 2023, 21.09.2023 Example (3/3): Automated Natural Language Text Analysis • ‘Finally, what else should SFO be doing to help travelers feel their health is being protected when using SFO?’  INDEPENDENT_VARIABLE and NATURAL_LANGUAGE_TEXT + San Francisco Airport COVID-19 Recovery (2020)
  • 18. Natural language text-annotation enables topic extraction, coding and analysis 17 General Online Research Conference 2023, 21.09.2023 Example (3/3): Automated Natural Language Text Analysis • ‘Finally, what else should SFO be doing to help travelers feel their health is being protected when using SFO?’  INDEPENDENT_VARIABLE and NATURAL_LANGUAGE_TEXT + San Francisco Airport COVID-19 Recovery (2020)
  • 19. Natural language text-annotation enables topic extraction, coding and analysis 18 General Online Research Conference 2023, 21.09.2023 Example (3/3): Automated Natural Language Text Analysis • ‘Finally, what else should SFO be doing to help travelers feel their health is being protected when using SFO?’  INDEPENDENT_VARIABLE and NATURAL_LANGUAGE_TEXT + San Francisco Airport COVID-19 Recovery (2020)
  • 20. Natural language text-annotation enables topic extraction, coding and analysis 19 General Online Research Conference 2023, 21.09.2023 Example (3/3): Automated Natural Language Text Analysis • ‘Finally, what else should SFO be doing to help travelers feel their health is being protected when using SFO?’  INDEPENDENT_VARIABLE and NATURAL_LANGUAGE_TEXT + San Francisco Airport COVID-19 Recovery (2020)
  • 21. Natural language text-annotation enables topic extraction, coding and analysis 20 General Online Research Conference 2023, 21.09.2023 Example (3/3): Automated Natural Language Text Analysis • ‘Finally, what else should SFO be doing to help travelers feel their health is being protected when using SFO?’  INDEPENDENT_VARIABLE and NATURAL_LANGUAGE_TEXT + San Francisco Airport COVID-19 Recovery (2020)
  • 22. DIN SPEC 32792 defines 53 semantic data annotations 21 General Online Research Conference 2023, 21.09.2023 Annotations for Basic Data Properties DEFAULT_VALUE, IGNORE_VALUE, MORE_IS_BETTER, LESS_IS_BETTER, HAS_SUBTOTALS, ID, NATURAL_LANGUAGE_TEXT Annotations for Basic Statistical Properties NOMINAL, CATEGORICAL, ORDINAL, SUMMABLE, MAXIMIZABLE, MINIMIZABLE Annotations for Advanced Statistical Properties DEPENDENT_VARIABLE, INDEPENDENT_VARIABLE, REFERENCE_CATEGORY, WEIGHTING_FACTOR Annotations for Data Processing FILTER_ON, FILTER_ON_DOMINANT_DOMAIN, FILTER_ON_DOMINANT_DOMAIN_BY_VALUE, FILTER_ON_TOP_3_BY_VALUE, FILTER_ON_TOP_10_BY_VALUE, DRILL_DOWN, DRILL_DOWN_ON_DOMINANT_DOMAIN, JOINABLE_ID_VALUES, JOINABLE, USE_AS_IS Annotations for Process Data (use case-specific) PROCESS_VARIABLE, PROCESS_ID, INSTANCE_VARIABLE, INSTANCE_ID, EVENT_VARIABLE, EVENT_ID, NEXT_EVENT_ID, PREVIOUS_EVENT_ID, EVENT_CATEGORY, EVENT_START_TIMESTAMP, EVENT_END_TIMESTAMP, EVENT_DURATION, EVENT_RESULT, EVENT_OWNER Annotations for Surveys / Opinion Polling (use case-specific) DEFINE_AS_MISSING, DEFINE_AS_NO_OPINION, DEMOGRAPHIC_VARIABLE, MULTIPLE_RESPONSE_VARIABLE, MULTI_PUNCH_VARIABLE, SURVEY_CASE_ID, SURVEY_DURATION, SURVEY_INTERVIEWER, SURVEY_META, SURVEY_MODE, SURVEY_RESPONSE, SURVEY_WAVE Miscellaneous Annotations ANONYMIZE 27 general-purpose and 26 use case-specific annotations DIN SPEC 32792 also has provisions for vendor-specific extensions to support additional semantics and/or use cases
  • 23. Fully Automate the Analysis of Your Survey Data with DIN SPEC 32792! 22 General Online Research Conference 2023, 21.09.2023 Survey Raw Data DIN SPEC 32792 DIN SPEC 32792 Results by Inspirient +
  • 24. 23 General Online Research Conference 2023, 21.09.2023 Thank you for your attention! Martin Rathje martin.rathje@kantar.com Dr. Georg Wittenburg georg.wittenburg@inspirient.com