SlideShare a Scribd company logo
Leibniz Institute
for the Social
Sciences
Janez Štebe:
Introductory Exercise: Establish extent of precarious employment in EU countries and explore potential
for comparative analysis
Training Course on EU‐LFS, September 17th‐20th 2014, Ljubljana
Content:
I. Explore the data set
II. Prepare the working data set
III. Precarious employment in different countries – separate analysis by countries
IV. Including the macro level variable into explanation – joint analysis
Before you start
Select only working age population (15-74) and respondents living in private households for analysis.
I. Explore the data set
Start the analysis by checking the structure of the data file. Does it contain the expected variables? Do they
contain the definitions of the missing values? What is the order of the variables in a data set? What are the
units of the analysis?
(Display, frequencies, codebook routines in SPSS)
II. Prepare the working data set
a) Select the relevant population you need to work with. In order to analyse the forms of precarious
employment we will limit to currently employed population.
Solution (Tip: Use Format Painter to make the solution visible):
freq WSTATOR .
* You can either type the command into syntax or use the menu Data-->Select... and then paste and execute it.
DATASET COPY working_pop.
DATASET ACTIVATE working_pop.
FILTER OFF.
USE ALL.
select if (WSTATOR = 1 or WSTATOR=2) .
EXECUTE.
*Check the result.
freq WSTATOR .
freq country.
End of Solution
b) While comparing countries you may wish to obtain equal sample size of the selected population by
countries.
Question: Do the data set contains weights of some kind? Which shall we use?
Solution:
See explanation in EUROSTAT (2013): Quality report of the European Union Labour Force Survey 2012 - 2014
edition
http://epp.eurostat.ec.europa.eu/portal/page/portal/product_details/publication?p_product_code=KS-TC-14-
001
Weights usually express the inverse probability of selection. You can multiply different (independent)
type of weights if exists. Since no weight variable is present in a training data set, we will create a
constant one to begin with.
End of Solution
Task
Prepare the weighting variable and activate it to obtain in each country equal sample size.
Solution:
compute COEFF=1.
* make the weight active.
WEIGHT by coeff.
*Check the result. With the COEFF=1 nothing should happen.
freq country.
* obtain the values for the new weight coeff that will adjust sample size.
* for safety reasons, some commands require file to be sorted on key variables, therefore we will sort by
country.
SORT CASES BY COUNTRY.
AGGREGATE
/OUTFILE=* MODE=ADDVARIABLES
/PRESORTED
/BREAK=COUNTRY
/N_BREAK=N.
AGGREGATE
/OUTFILE=* MODE=ADDVARIABLES
/PRESORTED
/N_tot=N.
freq N_tot.
cross N_BREAK by country.
*produce weight coeff in order to have equal sample size: N_tot/ number of countries .
compute coeff= coeff*((N_tot/21)/N_BREAK).
*Check the result. all sample size have to be equal. .
freq country.
End of Solution
III. Precarious employment in different countries
a) Identify the variables that could be used for analysis of precarious employment
Candidates are STARTIME temp ftpt .
b) prepare some variables for further descriptive analysis
Task
Start with some basic descriptive analysis. Compare countries to establish differences. Include also some
bivariate analysis comparing the subpopulations in countries in order to see, if correlations among variables
shows any differences depending of institutional context.
In our example we choose the STARTIME as the dependent variable and temp, ftpt, sex and age as
independent. At the end of the exercise we will pursue the linear regression analysis. For that purpose we will
prepare in advance and create dummy variables where apply.
Solution:
freq STARTIME temp ftpt .
* create dummy variables.
RECODE TEMP (2=1) (else=0) INTO temp_lm.
recode ftpt (1=1) (2=0) (MISSING=SYSMIS) INTO FT.
VARIABLE LABELS temp_lm 'Permanent_dummy'.
VARIABLE LABELS FT 'Full_time_dummy'.
EXECUTE.
*check.
cross temp by temp_lm.
cross ftpt by ft.
* prepare age for descriptive analysis.
RECODE age (17 22=20) (27 =27) (32 37=35) (42 THRU 52= 47) (57 thru 72=65) INTO age5.
var lab age5 'Lifecycle - 5 groups seniority levels (recode age)'.
val lab age5 20 'up to 22 years old' 27 'up to 29 years old' 35 'up to 40 years old' 47 'up to 54 years old' 65 'up
to 72 years old' .
format age5 (f2.0).
freq age5.
* create dummy variables.
recode sex (1=1) (else=0) into sex_male .
cross sex by sex_male.
freq sex_male temp ftpt ft .
End of Solution
Ideas for thinking: Why did we handle missing differently whyle recoding ‘TEMP’?
c) Use a limited set of countries for country level oriented exploratory analysis.
Task
Select countries that have representatives among workshop participants. It is more practical to do the
exploratory analysis on a limited set of countries. Present some descriptive statistics on a country level and on
the descriptive independent variables by country level.
Note that we will save the current data set with all the countries for further analysis at the end of session.
Solution:
DATASET COPY country_sel.
DATASET ACTIVATE country_sel.
FILTER OFF.
USE ALL.
SELECT IF (COUNTRY= 7 | COUNTRY=15 | COUNTRY=16 | COUNTRY=18 | COUNTRY=23 | COUNTRY=25 |
COUNTRY=27 | COUNTRY=29 | COUNTRY=31).
EXECUTE.
* chec select.
freq country.
*Select countries that have representatives among workshop participants. It is more practical to do the
exploratory analysis on a limited set of countries.
means STARTIME temp_lm ft sex_male by country
/CELLS MEAN MEDIAN COUNT STDDEV
/STATISTICS ANOVA .
*Select countries that have representatives among workshop participants. It is more practical to do the
exploratory analysis on a limited set of countries.
MEANS TABLES=STARTIME by COUNTRY BY age5 sex temp ftpt
/CELLS MEAN MEDIAN COUNT STDDEV.
End of Solution
d) Display separate analysis by country
Task
Split file into portions by country and perform some further exploratory analysis. Conclude with the linear
regression analysis of STARTIME including the set of individual level independent variables.
Solution:
SPLIT FILE LAYERED BY COUNTRY.
MEANS TABLES=STARTIME by age5 sex temp ftpt
/CELLS MEAN MEDIAN COUNT STDDEV
/STATISTICS ANOVA .
corr STARTIME with temp_lm ft sex_male .
regression VARIABLES = STARTIME sex_male age temp_lm ft
/DEPENDENT STARTIME
/METHOD enter sex_male age temp_lm ft .
End of Solution
Ideas for thinking: How would you test if one country is statistically different from another?
IV. Including the macro level variable into explanation
a) Aggregate the information from individual level data into country level table
Task
Pull country rate of unemployment out of data and store it in a table. Add contextual variable into individual
level file.
Solution:
DATASET ACTIVATE DataSet1.
freq ILOSTAT .
freq country.
* Create dummy unemploy.
Recode ILOSTAT (2= 1) (1=0) (else=sysmiss) into unemploy.
* check.
cross ilostat by unemploy / missing = include.
* display.
means unemploy by country
/CELLS MEAN COUNT
/STATISTICS ANOVA.
* put unemploy rates to table.
DATASET DECLARE unemploy_mean.
* if not presorted it' requred to sort.
SORT CASES BY COUNTRY.
AGGREGATE
/OUTFILE='unemploy_mean'
/PRESORTED
/BREAK=COUNTRY
/unemploy_mean=MEAN(unemploy).
DATASET ACTIVATE unemploy_mean .
*see result.
list .
End of Solution
b) Perform regression analysis that includes the macro level variable
Task
Repeat the regression from before and add the aggregate unemployment information.
Solution:
* open the working_pop data set.
DATASET ACTIVATE working_pop .
*note that all countries are included.
freq country.
* add the values from the table on the country level.
MATCH FILES /FILE=*
/TABLE='unemploy_mean'
/BY COUNTRY.
EXECUTE.
*check.
means unemploy_mean by country
/CELLS MEAN COUNT STDDEV
/STATISTICS ANOVA.
* include macro_level variable into regression.
regression VARIABLES = STARTIME sex_male age temp_lm ft unemploy_mean
/DEPENDENT STARTIME
/METHOD enter sex_male age temp_lm ft unemploy_mean .
End of Solution
Ideas for thinking: Adding additional macro level variables; which sources to use? How to include them into
data set?
A typology of countries might be sought. How to build one?
Literature:
 EUROSTAT (2013): Quality report of the European Union Labour Force Survey 2012 - 2014 edition
http://epp.eurostat.ec.europa.eu/portal/page/portal/product_details/publication?p_product_code=K
S-TC-14-001
 EUROSTAT (2013): EU LABOUR FORCE SURVEY EXPLANATORY NOTES
http://epp.eurostat.ec.europa.eu/portal/page/portal/employment_unemployment_lfs/documents/EU_LFS
_explanatory_notes_from_2014_onwards.pdf
 MIMAS, The University of Manchester: Countries and Citizens. Linking International Macro
and Micro Data. Unit 4: Study Gide. An Introduction to combining macro and micro data.
https://www.esds.ac.uk/international/elearning/limmd/materials/studyguides/unit4-
studyguide.pdf
 Jelle Visser Database on Institutional Characteristics of Trade Unions, Wage Setting, State Intervention
and Social Pacts, ICTWSS. Amsterdam Institute for Advanced Labour Studies (AIAS) University of
Amsterdam, Version 4 – April 2013 http://www.uva-aias.net/207

More Related Content

Viewers also liked

Dostop do raziskovalnih podatkov v ADP in mednarodnih bazah
Dostop do raziskovalnih podatkov v ADP in mednarodnih bazahDostop do raziskovalnih podatkov v ADP in mednarodnih bazah
Dostop do raziskovalnih podatkov v ADP in mednarodnih bazah
Arhiv družboslovnih podatkov
 
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
Arhiv družboslovnih podatkov
 
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
Arhiv družboslovnih podatkov
 
Access to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of SloveniaAccess to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of Slovenia
Arhiv družboslovnih podatkov
 
Praktični del: preizkus orodja in seznanjanje z navodili
Praktični del: preizkus orodja in seznanjanje z navodiliPraktični del: preizkus orodja in seznanjanje z navodili
Praktični del: preizkus orodja in seznanjanje z navodili
Arhiv družboslovnih podatkov
 
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
Arhiv družboslovnih podatkov
 
Priprava, izročitev in spravilo raziskovalnih podatkov
Priprava, izročitev in spravilo raziskovalnih podatkovPriprava, izročitev in spravilo raziskovalnih podatkov
Priprava, izročitev in spravilo raziskovalnih podatkov
Arhiv družboslovnih podatkov
 
Predstavitev podatkov Ankete o delovni sili
Predstavitev podatkov Ankete o delovni siliPredstavitev podatkov Ankete o delovni sili
Predstavitev podatkov Ankete o delovni sili
Arhiv družboslovnih podatkov
 
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
Arhiv družboslovnih podatkov
 
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
Arhiv družboslovnih podatkov
 
Ug statistics help
Ug statistics helpUg statistics help
Ug statistics help
Brent Heard
 
Active Learning With Excel
Active Learning With ExcelActive Learning With Excel
Active Learning With Excel
robcardone
 
Sqqs1013 ch2-a122
Sqqs1013 ch2-a122Sqqs1013 ch2-a122
Sqqs1013 ch2-a122
kim rae KI
 
F4 06 Statistics Iii
F4 06 Statistics IiiF4 06 Statistics Iii
F4 06 Statistics Iii
guestcc333c
 
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
Arhiv družboslovnih podatkov
 
Chapter 7 statistics
Chapter 7  statisticsChapter 7  statistics
Chapter 7 statistics
atiqah ayie
 
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau -  Data, Graphs, Filters, Dashboards and Advanced featuresLearning Tableau -  Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Venkata Reddy Konasani
 

Viewers also liked (17)

Dostop do raziskovalnih podatkov v ADP in mednarodnih bazah
Dostop do raziskovalnih podatkov v ADP in mednarodnih bazahDostop do raziskovalnih podatkov v ADP in mednarodnih bazah
Dostop do raziskovalnih podatkov v ADP in mednarodnih bazah
 
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
Praktični del: izoblikovanje obrazca ''Privolitev za sodelovanje v raziskavi''
 
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
Politike odprtega dostopa do raziskovalnih podatkov v Sloveniji in Načrt ravn...
 
Access to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of SloveniaAccess to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of Slovenia
 
Praktični del: preizkus orodja in seznanjanje z navodili
Praktični del: preizkus orodja in seznanjanje z navodiliPraktični del: preizkus orodja in seznanjanje z navodili
Praktični del: preizkus orodja in seznanjanje z navodili
 
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
Uvodna predstavitev delavnice. Arhiv družboslovnih podatkov in dostop do poda...
 
Priprava, izročitev in spravilo raziskovalnih podatkov
Priprava, izročitev in spravilo raziskovalnih podatkovPriprava, izročitev in spravilo raziskovalnih podatkov
Priprava, izročitev in spravilo raziskovalnih podatkov
 
Predstavitev podatkov Ankete o delovni sili
Predstavitev podatkov Ankete o delovni siliPredstavitev podatkov Ankete o delovni sili
Predstavitev podatkov Ankete o delovni sili
 
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
Dostop do raziskovalnih podatkov v ADP in njihova analiza: Kaj uporabniku pon...
 
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
ADP – Arhiv družboslovnih podatkov (Social science data archives): A bit of H...
 
Ug statistics help
Ug statistics helpUg statistics help
Ug statistics help
 
Active Learning With Excel
Active Learning With ExcelActive Learning With Excel
Active Learning With Excel
 
Sqqs1013 ch2-a122
Sqqs1013 ch2-a122Sqqs1013 ch2-a122
Sqqs1013 ch2-a122
 
F4 06 Statistics Iii
F4 06 Statistics IiiF4 06 Statistics Iii
F4 06 Statistics Iii
 
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
Odprti dostop do raziskovalnih podatkov in Univerza. Kako bolje izkoristiti p...
 
Chapter 7 statistics
Chapter 7  statisticsChapter 7  statistics
Chapter 7 statistics
 
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau -  Data, Graphs, Filters, Dashboards and Advanced featuresLearning Tableau -  Data, Graphs, Filters, Dashboards and Advanced features
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
 

Similar to Introductory Exercise: Establish extent of precarious employment in EU countries and explore potential for comparative analysis

© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved. .docx
© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved.  .docx© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved.  .docx
© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved. .docx
LynellBull52
 
CPSC 120Spring 2014Lab 5Name _____________________.docx
CPSC 120Spring 2014Lab 5Name _____________________.docxCPSC 120Spring 2014Lab 5Name _____________________.docx
CPSC 120Spring 2014Lab 5Name _____________________.docx
faithxdunce63732
 
ComputerAssignment7CaseonCentralLimitTheorem.docx
ComputerAssignment7CaseonCentralLimitTheorem.docxComputerAssignment7CaseonCentralLimitTheorem.docx
ComputerAssignment7CaseonCentralLimitTheorem.docx
mccormicknadine86
 
Penggambaran Data dengan Grafik
Penggambaran Data dengan GrafikPenggambaran Data dengan Grafik
Penggambaran Data dengan Grafik
anom0164
 
PLSQL Practices
PLSQL PracticesPLSQL Practices
PLSQL Practices
Quang Minh Đoàn
 
Pert2
Pert2Pert2
Power of call symput data
Power of call symput dataPower of call symput data
Power of call symput data
Yash Sharma
 
Interview Preparation
Interview PreparationInterview Preparation
Interview Preparation
Ravi Kanudawala
 
Human_Activity_Recognition_Predictive_Model
Human_Activity_Recognition_Predictive_ModelHuman_Activity_Recognition_Predictive_Model
Human_Activity_Recognition_Predictive_Model
David Ritchie
 
report
reportreport
report
Arthur He
 
Design of Experiments
Design of ExperimentsDesign of Experiments
Design of Experiments
Dr. Keerti Jain
 
InnerSoft STATS - Analyze
InnerSoft STATS - AnalyzeInnerSoft STATS - Analyze
InnerSoft STATS - Analyze
InnerSoft
 
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
LynellBull52
 
Hw5
Hw5Hw5
Psyc 354 Success Begins / snaptutorial.com
Psyc 354  Success Begins / snaptutorial.comPsyc 354  Success Begins / snaptutorial.com
Psyc 354 Success Begins / snaptutorial.com
WilliamsTaylorzzi
 
tutorial1 on economic and strategic issues
tutorial1 on economic and strategic issuestutorial1 on economic and strategic issues
tutorial1 on economic and strategic issues
BhaskkarSinha1
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
AIRCC Publishing Corporation
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
ijcsit
 
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
AIRCC Publishing Corporation
 
Psyc 354 Massive Success / snaptutorial.com
Psyc 354 Massive Success / snaptutorial.comPsyc 354 Massive Success / snaptutorial.com
Psyc 354 Massive Success / snaptutorial.com
Reynolds45
 

Similar to Introductory Exercise: Establish extent of precarious employment in EU countries and explore potential for comparative analysis (20)

© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved. .docx
© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved.  .docx© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved.  .docx
© Charles T. Diebold, Ph.D., 9152013. All Rights Reserved. .docx
 
CPSC 120Spring 2014Lab 5Name _____________________.docx
CPSC 120Spring 2014Lab 5Name _____________________.docxCPSC 120Spring 2014Lab 5Name _____________________.docx
CPSC 120Spring 2014Lab 5Name _____________________.docx
 
ComputerAssignment7CaseonCentralLimitTheorem.docx
ComputerAssignment7CaseonCentralLimitTheorem.docxComputerAssignment7CaseonCentralLimitTheorem.docx
ComputerAssignment7CaseonCentralLimitTheorem.docx
 
Penggambaran Data dengan Grafik
Penggambaran Data dengan GrafikPenggambaran Data dengan Grafik
Penggambaran Data dengan Grafik
 
PLSQL Practices
PLSQL PracticesPLSQL Practices
PLSQL Practices
 
Pert2
Pert2Pert2
Pert2
 
Power of call symput data
Power of call symput dataPower of call symput data
Power of call symput data
 
Interview Preparation
Interview PreparationInterview Preparation
Interview Preparation
 
Human_Activity_Recognition_Predictive_Model
Human_Activity_Recognition_Predictive_ModelHuman_Activity_Recognition_Predictive_Model
Human_Activity_Recognition_Predictive_Model
 
report
reportreport
report
 
Design of Experiments
Design of ExperimentsDesign of Experiments
Design of Experiments
 
InnerSoft STATS - Analyze
InnerSoft STATS - AnalyzeInnerSoft STATS - Analyze
InnerSoft STATS - Analyze
 
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
© Charles T. Diebold, Ph.D., 71113, 100313. All Rights Res.docx
 
Hw5
Hw5Hw5
Hw5
 
Psyc 354 Success Begins / snaptutorial.com
Psyc 354  Success Begins / snaptutorial.comPsyc 354  Success Begins / snaptutorial.com
Psyc 354 Success Begins / snaptutorial.com
 
tutorial1 on economic and strategic issues
tutorial1 on economic and strategic issuestutorial1 on economic and strategic issues
tutorial1 on economic and strategic issues
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
 
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
USING CUCKOO ALGORITHM FOR ESTIMATING TWO GLSD PARAMETERS AND COMPARING IT WI...
 
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
Using Cuckoo Algorithm for Estimating Two GLSD Parameters and Comparing it wi...
 
Psyc 354 Massive Success / snaptutorial.com
Psyc 354 Massive Success / snaptutorial.comPsyc 354 Massive Success / snaptutorial.com
Psyc 354 Massive Success / snaptutorial.com
 

More from Arhiv družboslovnih podatkov

Preparing documentation and adapting work processes for acquiring DSA
Preparing documentation and adapting work processes for acquiring DSAPreparing documentation and adapting work processes for acquiring DSA
Preparing documentation and adapting work processes for acquiring DSA
Arhiv družboslovnih podatkov
 
Data documentation and contextual descriptions
Data documentation and contextual descriptionsData documentation and contextual descriptions
Data documentation and contextual descriptions
Arhiv družboslovnih podatkov
 
Handling quantitative data and preparing for sharing and reuse, including dat...
Handling quantitative data and preparing for sharing and reuse, including dat...Handling quantitative data and preparing for sharing and reuse, including dat...
Handling quantitative data and preparing for sharing and reuse, including dat...
Arhiv družboslovnih podatkov
 
Access and licencing of data
Access and licencing of dataAccess and licencing of data
Access and licencing of data
Arhiv družboslovnih podatkov
 
Uporaba popisnih mikropodatkov v izobraževanju
Uporaba popisnih mikropodatkov v izobraževanjuUporaba popisnih mikropodatkov v izobraževanju
Uporaba popisnih mikropodatkov v izobraževanju
Arhiv družboslovnih podatkov
 
Research Data Management Planning: problems and solutions
Research Data Management Planning: problems and solutionsResearch Data Management Planning: problems and solutions
Research Data Management Planning: problems and solutions
Arhiv družboslovnih podatkov
 
Research Data Lifecycle: Role of Data Services
Research Data Lifecycle: Role of Data ServicesResearch Data Lifecycle: Role of Data Services
Research Data Lifecycle: Role of Data Services
Arhiv družboslovnih podatkov
 
Preparing data and documentation for digital curation
Preparing data and documentation for digital curationPreparing data and documentation for digital curation
Preparing data and documentation for digital curation
Arhiv družboslovnih podatkov
 
Deposit data to data centre: ADP case
Deposit data to data centre: ADP caseDeposit data to data centre: ADP case
Deposit data to data centre: ADP case
Arhiv družboslovnih podatkov
 
Access to social science data: research, election results, official statistics
Access to social science data: research, election results, official statisticsAccess to social science data: research, election results, official statistics
Access to social science data: research, election results, official statistics
Arhiv družboslovnih podatkov
 
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanjaRavnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
Arhiv družboslovnih podatkov
 
Life of a data archive: Workflow, staff, skills, partnerships. ADP example
Life of a data archive: Workflow, staff, skills, partnerships. ADP exampleLife of a data archive: Workflow, staff, skills, partnerships. ADP example
Life of a data archive: Workflow, staff, skills, partnerships. ADP example
Arhiv družboslovnih podatkov
 
General concepts: DDI
General concepts: DDIGeneral concepts: DDI
General concepts: DDI
Arhiv družboslovnih podatkov
 
SERSCIDA project Training Activities
SERSCIDA project Training ActivitiesSERSCIDA project Training Activities
SERSCIDA project Training Activities
Arhiv družboslovnih podatkov
 
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
Arhiv družboslovnih podatkov
 
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
Arhiv družboslovnih podatkov
 
Odprti podatki v slovenskem družboslovju
Odprti podatki v slovenskem družboslovjuOdprti podatki v slovenskem družboslovju
Odprti podatki v slovenskem družboslovju
Arhiv družboslovnih podatkov
 
Access to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of SloveniaAccess to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of Slovenia
Arhiv družboslovnih podatkov
 
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
Arhiv družboslovnih podatkov
 
Orodja za iskanje in delo z raziskovalnimi podatki v ADP
Orodja za iskanje in delo z raziskovalnimi podatki v ADPOrodja za iskanje in delo z raziskovalnimi podatki v ADP
Orodja za iskanje in delo z raziskovalnimi podatki v ADP
Arhiv družboslovnih podatkov
 

More from Arhiv družboslovnih podatkov (20)

Preparing documentation and adapting work processes for acquiring DSA
Preparing documentation and adapting work processes for acquiring DSAPreparing documentation and adapting work processes for acquiring DSA
Preparing documentation and adapting work processes for acquiring DSA
 
Data documentation and contextual descriptions
Data documentation and contextual descriptionsData documentation and contextual descriptions
Data documentation and contextual descriptions
 
Handling quantitative data and preparing for sharing and reuse, including dat...
Handling quantitative data and preparing for sharing and reuse, including dat...Handling quantitative data and preparing for sharing and reuse, including dat...
Handling quantitative data and preparing for sharing and reuse, including dat...
 
Access and licencing of data
Access and licencing of dataAccess and licencing of data
Access and licencing of data
 
Uporaba popisnih mikropodatkov v izobraževanju
Uporaba popisnih mikropodatkov v izobraževanjuUporaba popisnih mikropodatkov v izobraževanju
Uporaba popisnih mikropodatkov v izobraževanju
 
Research Data Management Planning: problems and solutions
Research Data Management Planning: problems and solutionsResearch Data Management Planning: problems and solutions
Research Data Management Planning: problems and solutions
 
Research Data Lifecycle: Role of Data Services
Research Data Lifecycle: Role of Data ServicesResearch Data Lifecycle: Role of Data Services
Research Data Lifecycle: Role of Data Services
 
Preparing data and documentation for digital curation
Preparing data and documentation for digital curationPreparing data and documentation for digital curation
Preparing data and documentation for digital curation
 
Deposit data to data centre: ADP case
Deposit data to data centre: ADP caseDeposit data to data centre: ADP case
Deposit data to data centre: ADP case
 
Access to social science data: research, election results, official statistics
Access to social science data: research, election results, official statisticsAccess to social science data: research, election results, official statistics
Access to social science data: research, election results, official statistics
 
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanjaRavnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
Ravnanje z raziskovalnimi podatki v fazi načrtovanja in ustvarjanja
 
Life of a data archive: Workflow, staff, skills, partnerships. ADP example
Life of a data archive: Workflow, staff, skills, partnerships. ADP exampleLife of a data archive: Workflow, staff, skills, partnerships. ADP example
Life of a data archive: Workflow, staff, skills, partnerships. ADP example
 
General concepts: DDI
General concepts: DDIGeneral concepts: DDI
General concepts: DDI
 
SERSCIDA project Training Activities
SERSCIDA project Training ActivitiesSERSCIDA project Training Activities
SERSCIDA project Training Activities
 
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
Raziskovalni podatki kot objekt digitalnega skrbništva / dolgotrajnega ohranj...
 
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
Načrt ravnanja z raziskovalnimi podatki, prijava Obzorje 2020
 
Odprti podatki v slovenskem družboslovju
Odprti podatki v slovenskem družboslovjuOdprti podatki v slovenskem družboslovju
Odprti podatki v slovenskem družboslovju
 
Access to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of SloveniaAccess to and specifics of detailed national LFS data – the case of Slovenia
Access to and specifics of detailed national LFS data – the case of Slovenia
 
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
Življenjski krog raziskovanja z metodo sekundarne analize na primeru problema...
 
Orodja za iskanje in delo z raziskovalnimi podatki v ADP
Orodja za iskanje in delo z raziskovalnimi podatki v ADPOrodja za iskanje in delo z raziskovalnimi podatki v ADP
Orodja za iskanje in delo z raziskovalnimi podatki v ADP
 

Recently uploaded

MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
khuleseema60
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
nitinpv4ai
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
EduSkills OECD
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
Mohammad Al-Dhahabi
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
GeorgeMilliken2
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
National Information Standards Organization (NISO)
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
Himanshu Rai
 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
Iris Thiele Isip-Tan
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
HajraNaeem15
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
TechSoup
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
National Information Standards Organization (NISO)
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
imrankhan141184
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 

Recently uploaded (20)

MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
Andreas Schleicher presents PISA 2022 Volume III - Creative Thinking - 18 Jun...
 
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrésentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Présentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
 
A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
 
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
What is Digital Literacy? A guest blog from Andy McLaughlin, University of Ab...
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"Benner "Expanding Pathways to Publishing Careers"
Benner "Expanding Pathways to Publishing Careers"
 
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem studentsRHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
RHEOLOGY Physical pharmaceutics-II notes for B.pharm 4th sem students
 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
 
How to deliver Powerpoint Presentations.pptx
How to deliver Powerpoint  Presentations.pptxHow to deliver Powerpoint  Presentations.pptx
How to deliver Powerpoint Presentations.pptx
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
 
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
Jemison, MacLaughlin, and Majumder "Broadening Pathways for Editors and Authors"
 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
 
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
Traditional Musical Instruments of Arunachal Pradesh and Uttar Pradesh - RAYH...
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 

Introductory Exercise: Establish extent of precarious employment in EU countries and explore potential for comparative analysis

  • 1. Leibniz Institute for the Social Sciences Janez Štebe: Introductory Exercise: Establish extent of precarious employment in EU countries and explore potential for comparative analysis Training Course on EU‐LFS, September 17th‐20th 2014, Ljubljana Content: I. Explore the data set II. Prepare the working data set III. Precarious employment in different countries – separate analysis by countries IV. Including the macro level variable into explanation – joint analysis Before you start Select only working age population (15-74) and respondents living in private households for analysis. I. Explore the data set Start the analysis by checking the structure of the data file. Does it contain the expected variables? Do they contain the definitions of the missing values? What is the order of the variables in a data set? What are the units of the analysis? (Display, frequencies, codebook routines in SPSS)
  • 2. II. Prepare the working data set a) Select the relevant population you need to work with. In order to analyse the forms of precarious employment we will limit to currently employed population. Solution (Tip: Use Format Painter to make the solution visible): freq WSTATOR . * You can either type the command into syntax or use the menu Data-->Select... and then paste and execute it. DATASET COPY working_pop. DATASET ACTIVATE working_pop. FILTER OFF. USE ALL. select if (WSTATOR = 1 or WSTATOR=2) . EXECUTE. *Check the result. freq WSTATOR . freq country. End of Solution b) While comparing countries you may wish to obtain equal sample size of the selected population by countries. Question: Do the data set contains weights of some kind? Which shall we use? Solution: See explanation in EUROSTAT (2013): Quality report of the European Union Labour Force Survey 2012 - 2014 edition http://epp.eurostat.ec.europa.eu/portal/page/portal/product_details/publication?p_product_code=KS-TC-14- 001 Weights usually express the inverse probability of selection. You can multiply different (independent) type of weights if exists. Since no weight variable is present in a training data set, we will create a constant one to begin with. End of Solution
  • 3. Task Prepare the weighting variable and activate it to obtain in each country equal sample size. Solution: compute COEFF=1. * make the weight active. WEIGHT by coeff. *Check the result. With the COEFF=1 nothing should happen. freq country. * obtain the values for the new weight coeff that will adjust sample size. * for safety reasons, some commands require file to be sorted on key variables, therefore we will sort by country. SORT CASES BY COUNTRY. AGGREGATE /OUTFILE=* MODE=ADDVARIABLES /PRESORTED /BREAK=COUNTRY /N_BREAK=N. AGGREGATE /OUTFILE=* MODE=ADDVARIABLES /PRESORTED /N_tot=N. freq N_tot. cross N_BREAK by country. *produce weight coeff in order to have equal sample size: N_tot/ number of countries . compute coeff= coeff*((N_tot/21)/N_BREAK). *Check the result. all sample size have to be equal. . freq country. End of Solution
  • 4. III. Precarious employment in different countries a) Identify the variables that could be used for analysis of precarious employment Candidates are STARTIME temp ftpt . b) prepare some variables for further descriptive analysis Task Start with some basic descriptive analysis. Compare countries to establish differences. Include also some bivariate analysis comparing the subpopulations in countries in order to see, if correlations among variables shows any differences depending of institutional context. In our example we choose the STARTIME as the dependent variable and temp, ftpt, sex and age as independent. At the end of the exercise we will pursue the linear regression analysis. For that purpose we will prepare in advance and create dummy variables where apply. Solution: freq STARTIME temp ftpt . * create dummy variables. RECODE TEMP (2=1) (else=0) INTO temp_lm. recode ftpt (1=1) (2=0) (MISSING=SYSMIS) INTO FT. VARIABLE LABELS temp_lm 'Permanent_dummy'. VARIABLE LABELS FT 'Full_time_dummy'. EXECUTE. *check. cross temp by temp_lm. cross ftpt by ft. * prepare age for descriptive analysis. RECODE age (17 22=20) (27 =27) (32 37=35) (42 THRU 52= 47) (57 thru 72=65) INTO age5. var lab age5 'Lifecycle - 5 groups seniority levels (recode age)'. val lab age5 20 'up to 22 years old' 27 'up to 29 years old' 35 'up to 40 years old' 47 'up to 54 years old' 65 'up to 72 years old' . format age5 (f2.0). freq age5. * create dummy variables. recode sex (1=1) (else=0) into sex_male . cross sex by sex_male. freq sex_male temp ftpt ft . End of Solution Ideas for thinking: Why did we handle missing differently whyle recoding ‘TEMP’?
  • 5. c) Use a limited set of countries for country level oriented exploratory analysis. Task Select countries that have representatives among workshop participants. It is more practical to do the exploratory analysis on a limited set of countries. Present some descriptive statistics on a country level and on the descriptive independent variables by country level. Note that we will save the current data set with all the countries for further analysis at the end of session. Solution: DATASET COPY country_sel. DATASET ACTIVATE country_sel. FILTER OFF. USE ALL. SELECT IF (COUNTRY= 7 | COUNTRY=15 | COUNTRY=16 | COUNTRY=18 | COUNTRY=23 | COUNTRY=25 | COUNTRY=27 | COUNTRY=29 | COUNTRY=31). EXECUTE. * chec select. freq country. *Select countries that have representatives among workshop participants. It is more practical to do the exploratory analysis on a limited set of countries. means STARTIME temp_lm ft sex_male by country /CELLS MEAN MEDIAN COUNT STDDEV /STATISTICS ANOVA . *Select countries that have representatives among workshop participants. It is more practical to do the exploratory analysis on a limited set of countries. MEANS TABLES=STARTIME by COUNTRY BY age5 sex temp ftpt /CELLS MEAN MEDIAN COUNT STDDEV. End of Solution
  • 6. d) Display separate analysis by country Task Split file into portions by country and perform some further exploratory analysis. Conclude with the linear regression analysis of STARTIME including the set of individual level independent variables. Solution: SPLIT FILE LAYERED BY COUNTRY. MEANS TABLES=STARTIME by age5 sex temp ftpt /CELLS MEAN MEDIAN COUNT STDDEV /STATISTICS ANOVA . corr STARTIME with temp_lm ft sex_male . regression VARIABLES = STARTIME sex_male age temp_lm ft /DEPENDENT STARTIME /METHOD enter sex_male age temp_lm ft . End of Solution Ideas for thinking: How would you test if one country is statistically different from another?
  • 7. IV. Including the macro level variable into explanation a) Aggregate the information from individual level data into country level table Task Pull country rate of unemployment out of data and store it in a table. Add contextual variable into individual level file. Solution: DATASET ACTIVATE DataSet1. freq ILOSTAT . freq country. * Create dummy unemploy. Recode ILOSTAT (2= 1) (1=0) (else=sysmiss) into unemploy. * check. cross ilostat by unemploy / missing = include. * display. means unemploy by country /CELLS MEAN COUNT /STATISTICS ANOVA. * put unemploy rates to table. DATASET DECLARE unemploy_mean. * if not presorted it' requred to sort. SORT CASES BY COUNTRY. AGGREGATE /OUTFILE='unemploy_mean' /PRESORTED /BREAK=COUNTRY /unemploy_mean=MEAN(unemploy). DATASET ACTIVATE unemploy_mean . *see result. list . End of Solution
  • 8. b) Perform regression analysis that includes the macro level variable Task Repeat the regression from before and add the aggregate unemployment information. Solution: * open the working_pop data set. DATASET ACTIVATE working_pop . *note that all countries are included. freq country. * add the values from the table on the country level. MATCH FILES /FILE=* /TABLE='unemploy_mean' /BY COUNTRY. EXECUTE. *check. means unemploy_mean by country /CELLS MEAN COUNT STDDEV /STATISTICS ANOVA. * include macro_level variable into regression. regression VARIABLES = STARTIME sex_male age temp_lm ft unemploy_mean /DEPENDENT STARTIME /METHOD enter sex_male age temp_lm ft unemploy_mean . End of Solution Ideas for thinking: Adding additional macro level variables; which sources to use? How to include them into data set? A typology of countries might be sought. How to build one?
  • 9. Literature:  EUROSTAT (2013): Quality report of the European Union Labour Force Survey 2012 - 2014 edition http://epp.eurostat.ec.europa.eu/portal/page/portal/product_details/publication?p_product_code=K S-TC-14-001  EUROSTAT (2013): EU LABOUR FORCE SURVEY EXPLANATORY NOTES http://epp.eurostat.ec.europa.eu/portal/page/portal/employment_unemployment_lfs/documents/EU_LFS _explanatory_notes_from_2014_onwards.pdf  MIMAS, The University of Manchester: Countries and Citizens. Linking International Macro and Micro Data. Unit 4: Study Gide. An Introduction to combining macro and micro data. https://www.esds.ac.uk/international/elearning/limmd/materials/studyguides/unit4- studyguide.pdf  Jelle Visser Database on Institutional Characteristics of Trade Unions, Wage Setting, State Intervention and Social Pacts, ICTWSS. Amsterdam Institute for Advanced Labour Studies (AIAS) University of Amsterdam, Version 4 – April 2013 http://www.uva-aias.net/207