This page contains a summary of the data available in the AuSSA 2015 - Work orientations.
To make sense of the variable names - please refer to the questionnaire (split A) which is available to download from the ADA and questionnaire (split B) which is available to download from the ADA
The complete data set is also available to download from the ADA
knitr::opts_chunk$set(
warning = TRUE, # show warnings during codebook generation
message = TRUE, # show messages during codebook generation
error = TRUE, # do not interrupt codebook generation in case of errors,
# usually better for debugging
echo = TRUE # show R code
)
ggplot2::theme_set(ggplot2::theme_bw())
library(codebook)
# to import an SPSS file from the same folder uncomment and edit the line below
library(haven)
library(sjlabelled)
codebook_data <- read_spss("aussa2015codebook.sav")
#Recode can't choose to be sequential
for (col in colnames(codebook_data)) {
if (!is.null(get_labels(codebook_data[[col]],attr.only=TRUE))) {
labs <- get_labels(codebook_data[[col]],attr.only=TRUE)
vals <- get_values(codebook_data[[col]])
locator <- grep('choose',labs,ignore.case=TRUE)
if (length(locator) != 0) {
codebook_data[[col]] <- remove_labels(codebook_data[[col]],labels = labs[locator])
mval <- max(vals[-locator]) + 1
codebook_data[[col]] <- add_labels(codebook_data[[col]], labels = setNames(mval,labs[locator]))
codebook_data[[col]][codebook_data[[col]]==vals[locator]] <- mval
}
}
}
# for Stata
# codebook_data <- rio::import("mydata.dta")
# for CSV
# codebook_data <- rio::import("mydata.csv")
# omit the following lines, if your missing values are already properly labelled
codebook_data <- detect_missing(codebook_data,
only_labelled = TRUE, # only labelled values are autodetected as
# missing
negative_values_are_missing = FALSE, # negative values are missing values
ninety_nine_problems = TRUE, # 99/999 are missing values, if they
# are more than 5 MAD from the median
)
# If you are not using formr, the codebook package needs to guess which items
# form a scale. The following line finds item aggregates with names like this:
# scale = scale_1 + scale_2R + scale_3R
# identifying these aggregates allows the codebook function to
# automatically compute reliabilities.
# However, it will not reverse items automatically.
#codebook_data <- detect_scales(codebook_data)
metadata(codebook_data)$name <- "Australian Survey of Social Attitudes 2015 - Work orientations"
metadata(codebook_data)$description <- "The Australian Survey of Social Attitudes (AuSSA) is Australia’s main source of data for the scientific study of the social attitudes, beliefs and opinions of Australians, how they change over time, and how they compare with other societies. The survey is used to help researchers better understand how Australians think and feel about their lives. It produces important information about the changing views and attitudes of Australians as we move through the 21st century. Similar surveys are run in other countries, so data from the AuSSA also allows us to compare Australia with countries all over the world. The aims of the survey are to discover: the range of Australians' views on topics that are important to all of us, how these views differ for people in different circumstances, how they have changed over the past quarter century, and how they compare with people in other countries. AuSSA is also the Australian component of the International Social Survey Project (ISSP). The ISSP is a cross-national collaboration on surveys covering important topics. Each year, survey researchers in some 40 countries each do a national survey using the same questions. The ISSP focuses on a special topic each year, repeating that topic from time to time. The topic for 2015 is 'Work Orientations'. This is the fourth time this has been the topic of the survey, having previously been the theme for the survey in 1989, 1997 and 2005. The AuSSA 2015 questionnaire was split into two booklets. Booklet A and Booklet B. Both booklets contained identical ISSP module and Personal Background sections, but some contributor sections had alternate questions. Within each wave, Booklet A was randomly assigned to half of the respondents, Booklet B to the remaining half. Waves 1 and 2 were conducted simultaneously in time (August) due to delays in Ethics approval, while Waves 3 and 4 were conducted on schedule in November 2015 and February 2016 respectively. Topics covered were work orientation, Health and work, Work, Support and Emotional Wellbeing, Early childhood, Ageing, Environment, Aboriginal policy, Insurance, Personal background."
metadata(codebook_data)$identifier <- "doi:10.4225/87/T5BNZ7"
metadata(codebook_data)$datePublished <- "2017-08-01"
metadata(codebook_data)$creator <- list(
"@type" = "Person",
givenName = "Adam", familyName = "Zammit",
email = "adam.zammit@acspri.org.au",
affiliation = list("@type" = "Organization",
name = "Australian Consortium for Social and Political Research Incorporated (ACSPRI)"))
metadata(codebook_data)$citation <- "ACSPRI (2021). AuSSA 2015 Codebook."
metadata(codebook_data)$url <- "https://www.acspri.org.au/sites/acspri.org.au/files/aussa2015codebook.html"
metadata(codebook_data)$temporalCoverage <- "2015"
metadata(codebook_data)$spatialCoverage <- "Australia"
codebook(codebook_data)
Dataset name: Australian Survey of Social Attitudes 2015 - Work orientations
The Australian Survey of Social Attitudes (AuSSA) is Australia’s main source of data for the scientific study of the social attitudes, beliefs and opinions of Australians, how they change over time, and how they compare with other societies. The survey is used to help researchers better understand how Australians think and feel about their lives. It produces important information about the changing views and attitudes of Australians as we move through the 21st century. Similar surveys are run in other countries, so data from the AuSSA also allows us to compare Australia with countries all over the world. The aims of the survey are to discover: the range of Australians’ views on topics that are important to all of us, how these views differ for people in different circumstances, how they have changed over the past quarter century, and how they compare with people in other countries. AuSSA is also the Australian component of the International Social Survey Project (ISSP). The ISSP is a cross-national collaboration on surveys covering important topics. Each year, survey researchers in some 40 countries each do a national survey using the same questions. The ISSP focuses on a special topic each year, repeating that topic from time to time. The topic for 2015 is ‘Work Orientations’. This is the fourth time this has been the topic of the survey, having previously been the theme for the survey in 1989, 1997 and 2005. The AuSSA 2015 questionnaire was split into two booklets. Booklet A and Booklet B. Both booklets contained identical ISSP module and Personal Background sections, but some contributor sections had alternate questions. Within each wave, Booklet A was randomly assigned to half of the respondents, Booklet B to the remaining half. Waves 1 and 2 were conducted simultaneously in time (August) due to delays in Ethics approval, while Waves 3 and 4 were conducted on schedule in November 2015 and February 2016 respectively. Topics covered were work orientation, Health and work, Work, Support and Emotional Wellbeing, Early childhood, Ageing, Environment, Aboriginal policy, Insurance, Personal background.
Metadata for search engines
Date published: 2017-08-01
Creator:
name | value |
---|---|
@type | Person |
givenName | Adam |
familyName | Zammit |
adam.zammit@acspri.org.au | |
affiliation | Organization , Australian Consortium for Social and Political Research Incorporated (ACSPRI) |
|
Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : A job is just a way of earning money - no more
136 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A1A | Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : A job is just a way of earning money - no more | numeric | 136 | 0.8876961 | 1 | 4 | 6 | 3.734884 | 1.159304 | ▃▂▇▅▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : I would enjoy having a paid job even if I did not need the money
81 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A1B | Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : I would enjoy having a paid job even if I did not need the money | numeric | 81 | 0.9331131 | 1 | 2 | 6 | 2.349557 | 1.040766 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … job security
41 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2A | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … job security | numeric | 41 | 0.9661437 | 1 | 1 | 6 | 1.484615 | 0.693501 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … high income
52 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2B | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … high income | numeric | 52 | 0.9570603 | 1 | 2 | 6 | 2.343399 | 0.8182541 | ▇▃▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … good opportunities for advancement
50 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2C | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … good opportunities for advancement | numeric | 50 | 0.9587118 | 1 | 2 | 6 | 2.095607 | 0.8572146 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … an interesting job
47 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2D | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … an interesting job | numeric | 47 | 0.9611891 | 1 | 1 | 6 | 1.560137 | 0.6704616 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to work independently
48 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2E | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to work independently | numeric | 48 | 0.9603633 | 1 | 2 | 6 | 2.161651 | 0.8610973 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to help other people
46 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2F | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to help other people | numeric | 46 | 0.9620149 | 1 | 2 | 6 | 2.116738 | 0.9006124 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that is useful to society
46 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2G | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that is useful to society | numeric | 46 | 0.9620149 | 1 | 2 | 6 | 2.058369 | 0.9034256 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to decide their times or days of work
47 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2H | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to decide their times or days of work | numeric | 47 | 0.9611891 | 1 | 2 | 6 | 2.560138 | 0.9675697 | ▇▅▂▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that involves personal contact with other people
49 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A2I | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that involves personal contact with other people | numeric | 49 | 0.9595376 | 1 | 2 | 6 | 2.238382 | 0.996535 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very important | 1 |
Important | 2 |
Neither important nor unimportant | 3 |
Not important | 4 |
Not important at all | 5 |
Cant choose | 6 |
Have you ever given up or would you give up good job opportunities for the benefit of your family life? :
40 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A3 | Have you ever given up or would you give up good job opportunities for the benefit of your family life? : | numeric | 40 | 0.9669694 | 1 | 2 | 5 | 2.148591 | 1.214635 | ▇▁▆▁▁ | F1.0 |
name | value |
---|---|
Yes, I have done so and probably would do so again | 1 |
Yes, I have done so but probably would not do so again | 2 |
No, I have not done so but probably would do so | 3 |
No, I have not done so and probably would not do so | 4 |
Cant choose | 5 |
Have you ever remained or would you remain in a job that was not satisfying for you for the benefit of your family life? :
44 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A4 | Have you ever remained or would you remain in a job that was not satisfying for you for the benefit of your family life? : | numeric | 44 | 0.9636664 | 1 | 2 | 5 | 2.272494 | 1.213612 | ▇▃▆▃▁ | F1.0 |
name | value |
---|---|
Yes, I have done so and probably would do so again | 1 |
Yes, I have done so but probably would not do so again | 2 |
No, I have not done so but probably would do so | 3 |
No, I have not done so and probably would not do so | 4 |
Cant choose | 5 |
Over the past five years, have you been discriminated against with regard to work, for instance when applying for a job, or when being considered for a pay increase or promotion? :
46 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A5 | Over the past five years, have you been discriminated against with regard to work, for instance when applying for a job, or when being considered for a pay increase or promotion? : | numeric | 46 | 0.9620149 | 0 | 2 | 2 | 1.46867 | 0.7655077 | ▂▁▂▁▇ | F1.0 |
name | value |
---|---|
Did not work or did not seek work | 0 |
Yes | 1 |
No | 2 |
In your opinion, what was the main reason for the discrimination? :
972 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A6 | In your opinion, what was the main reason for the discrimination? : | numeric | 972 | 0.1973576 | 1 | 4 | 10 | 4.631799 | 3.460217 | ▇▂▂▂▆ | F2.0 |
name | value |
---|---|
My age | 1 |
My race, ethnicity | 2 |
My nationality | 3 |
My sex | 4 |
My religion | 5 |
My disability/ mental or physical illness | 6 |
My family responsibilities | 7 |
My political beliefs | 8 |
Other reason | 9 |
Cant choose | 10 |
Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse? :
46 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A7 | Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse? : | numeric | 46 | 0.9620149 | 0 | 2 | 2 | 1.36824 | 0.7782618 | ▃▁▃▁▇ | F1.0 |
name | value |
---|---|
Does not apply (I do not have a job/ superior/ co-worker) | 0 |
Yes | 1 |
No | 2 |
To what extent do you agree or disagree with the following statements? : Workers need strong trade unions to protect their interests.
52 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A8A | To what extent do you agree or disagree with the following statements? : Workers need strong trade unions to protect their interests. | numeric | 52 | 0.9570603 | 1 | 3 | 6 | 2.817084 | 1.263689 | ▇▅▃▂▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? : Strong trade unions are bad for Australias economy.
107 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A8B | To what extent do you agree or disagree with the following statements? : Strong trade unions are bad for Australias economy. | numeric | 107 | 0.9116433 | 1 | 3 | 6 | 3.256341 | 1.285407 | ▆▇▆▃▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
Suppose you could decide on your work situation at present. Which of the following would you prefer? :
64 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A9 | Suppose you could decide on your work situation at present. Which of the following would you prefer? : | numeric | 64 | 0.9471511 | 1 | 2 | 5 | 2.028771 | 1.130279 | ▇▇▂▂▁ | F1.0 |
name | value |
---|---|
A full-time job (35 hours or more per week) | 1 |
A part-time job (10-34 hours per week) | 2 |
A job with less than 10 hours a week | 3 |
No paid job at all | 4 |
Cant choose | 5 |
Are you currently working for pay? :
56 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A10 | Are you currently working for pay? : | numeric | 56 | 0.9537572 | 1 | 1 | 2 | 1.376623 | 0.4847491 | ▇▁▁▁▅ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Think of the number of hours you work, and the money you earn in your main job, including any regular overtime. If you had only one of these three choices, which of the following would you prefer? :
453 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A11 | Think of the number of hours you work, and the money you earn in your main job, including any regular overtime. If you had only one of these three choices, which of the following would you prefer? : | numeric | 453 | 0.625929 | 1 | 2 | 4 | 2.030343 | 0.7898816 | ▃▇▁▂▁ | F1.0 |
name | value |
---|---|
Work longer hours and earn more money | 1 |
Work the same number of hours and earn the same money | 2 |
Work fewer hours and earn less money | 3 |
Can’t choose | 4 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is secure
460 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12A | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is secure | numeric | 460 | 0.6201486 | 1 | 2 | 6 | 2.472703 | 1.181632 | ▇▂▂▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My income is high
461 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12B | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My income is high | numeric | 461 | 0.6193229 | 1 | 3 | 6 | 3.188 | 1.115788 | ▇▅▇▂▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My opportunities for advancement are high
464 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12C | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My opportunities for advancement are high | numeric | 464 | 0.6168456 | 1 | 3 | 6 | 3.4083 | 1.060166 | ▅▇▇▂▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is interesting
461 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12D | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is interesting | numeric | 461 | 0.6193229 | 1 | 2 | 6 | 2.142667 | 0.9761746 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : I can work independently
461 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12E | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : I can work independently | numeric | 461 | 0.6193229 | 1 | 2 | 6 | 1.965333 | 0.9549944 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job I can help other people
462 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12F | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job I can help other people | numeric | 462 | 0.6184971 | 1 | 2 | 6 | 1.991989 | 0.9618053 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is useful to society
462 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12G | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is useful to society | numeric | 462 | 0.6184971 | 1 | 2 | 6 | 2.109479 | 1.037417 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job, I have personal contact with other people
463 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A12H | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job, I have personal contact with other people | numeric | 463 | 0.6176713 | 1 | 2 | 6 | 1.639037 | 0.7970327 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you have to do hard physical work?
455 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A13A | Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you have to do hard physical work? | numeric | 455 | 0.6242775 | 1 | 4 | 6 | 3.541005 | 1.302941 | ▆▆▆▇▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you find your work stressful?
457 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A13B | Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you find your work stressful? | numeric | 457 | 0.6226259 | 1 | 3 | 6 | 2.757294 | 0.9618105 | ▆▇▂▁▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
And how often… : … do you work at home during your usual working hours?
464 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A14A | And how often… : … do you work at home during your usual working hours? | numeric | 464 | 0.6168456 | 1 | 4 | 6 | 3.942436 | 1.214592 | ▂▃▃▇▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
And how often… : .…does your job involve working on weekends?
464 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A14B | And how often… : .…does your job involve working on weekends? | numeric | 464 | 0.6168456 | 1 | 3 | 6 | 3.160643 | 1.354529 | ▇▇▅▆▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
Which of the following statements best describes how your working hours are decided? (By working hours we mean here the times you start and finish work, and not the total hours you work per week or month.) :
462 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A15 | Which of the following statements best describes how your working hours are decided? (By working hours we mean here the times you start and finish work, and not the total hours you work per week or month.) : | numeric | 462 | 0.6184971 | 1 | 2 | 3 | 1.676902 | 0.6680349 | ▇▁▇▁▂ | F1.0 |
name | value |
---|---|
Starting and finishing times are decided by my employer and I cannot change them on my own | 1 |
I can decide the time I start and finish work, within certain limits | 2 |
I am entirely free to decide when I start and finish work | 3 |
Which of the following statements best describes your usual working schedule in your main job? :
465 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A16 | Which of the following statements best describes your usual working schedule in your main job? : | numeric | 465 | 0.6160198 | 1 | 1 | 4 | 1.459785 | 0.9013737 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
I have a regular schedule or shift (daytime, evening, or night) | 1 |
I have a schedule or shift which regularly changes (for example, from days to evenings or to nights) | 2 |
I have a schedule where daily working times are decided at short notice by my employer | 3 |
Can’t choose | 4 |
Which of the following statements best describes how your daily work is organised? :
459 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A17 | Which of the following statements best describes how your daily work is organised? : | numeric | 459 | 0.6209744 | 1 | 2 | 4 | 1.909574 | 0.7387425 | ▅▇▁▃▁ | F1.0 |
name | value |
---|---|
I am free to decide how my daily work is organised | 1 |
I can decide how my daily work is organised, within certain limits | 2 |
I am not free to decide how my daily work is organised | 3 |
Can’t choose | 4 |
How difficult would it be for you to take an hour or two off during working hours, to take care of personal or family matters? :
448 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A18 | How difficult would it be for you to take an hour or two off during working hours, to take care of personal or family matters? : | numeric | 448 | 0.6300578 | 1 | 2 | 5 | 2.011795 | 1.059202 | ▇▆▃▂▁ | F1.0 |
name | value |
---|---|
Not difficult at all | 1 |
Not too difficult | 2 |
Somewhat difficult | 3 |
Very difficult | 4 |
Can’t choose | 5 |
How often do you feel that… : …the demands of your job interfere with your family life?
449 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A19A | How often do you feel that… : …the demands of your job interfere with your family life? | numeric | 449 | 0.629232 | 1 | 3 | 6 | 3.282152 | 1.076775 | ▅▇▅▃▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
How often do you feel that… : …the demands of your family life interfere with your job?
468 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A19B | How often do you feel that… : …the demands of your family life interfere with your job? | numeric | 468 | 0.6135425 | 1 | 4 | 6 | 3.873486 | 0.9171235 | ▁▆▇▆▁ | F1.0 |
name | value |
---|---|
Always | 1 |
Often | 2 |
Sometimes | 3 |
Hardly ever | 4 |
Never | 5 |
Can’t choose | 6 |
How much of your past work experience and/ or job skills can you make use of in your present job? :
447 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A20 | How much of your past work experience and/ or job skills can you make use of in your present job? : | numeric | 447 | 0.6308836 | 1 | 3 | 5 | 3.209424 | 0.9554233 | ▁▃▆▇▁ | F1.0 |
name | value |
---|---|
Almost none | 1 |
A little | 2 |
A lot | 3 |
Almost all | 4 |
Can’t choose | 5 |
Over the past 12 months, have you had any training to improve your job skills, either at the workplace or somewhere else? :
448 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A21 | Over the past 12 months, have you had any training to improve your job skills, either at the workplace or somewhere else? : | numeric | 448 | 0.6300578 | 1 | 1 | 3 | 1.479685 | 0.5329499 | ▇▁▆▁▁ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Can’t choose | 3 |
In general, how would you describe relations at your workplace… : … between management and employees?
453 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A22A | In general, how would you describe relations at your workplace… : … between management and employees? | numeric | 453 | 0.625929 | 1 | 2 | 6 | 2.279683 | 1.195935 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Very good | 1 |
Quite good | 2 |
Neither good nor bad | 3 |
Quite bad | 4 |
Very bad | 5 |
Can’t choose | 6 |
In general, how would you describe relations at your workplace… : … between workmates/ colleagues?
455 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A22B | In general, how would you describe relations at your workplace… : … between workmates/ colleagues? | numeric | 455 | 0.6242775 | 1 | 2 | 6 | 1.940476 | 1.071189 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Very good | 1 |
Quite good | 2 |
Neither good nor bad | 3 |
Quite bad | 4 |
Very bad | 5 |
Can’t choose | 6 |
How satisfied are you in your (main) job? :
449 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A23 | How satisfied are you in your (main) job? : | numeric | 449 | 0.629232 | 1 | 3 | 8 | 2.849081 | 1.292678 | ▇▇▃▁▁ | F1.0 |
name | value |
---|---|
Completely satisfied | 1 |
Very satisfied | 2 |
Fairly satisfied | 3 |
Neither satisfied nor dissatisfied | 4 |
Fairly dissatisfied | 5 |
Very dissatisfied | 6 |
Completely dissatisfied | 7 |
Can’t choose | 8 |
To what extent do you agree or disagree with each of the following statements? : I am willing to work harder than I have to in order to help the firm or organisation I work for succeed.
451 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A24A | To what extent do you agree or disagree with each of the following statements? : I am willing to work harder than I have to in order to help the firm or organisation I work for succeed. | numeric | 451 | 0.6275805 | 1 | 2 | 6 | 2.389474 | 1.0649 | ▇▃▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with each of the following statements? : I am proud to be working for my firm or organisation.
454 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A24B | To what extent do you agree or disagree with each of the following statements? : I am proud to be working for my firm or organisation. | numeric | 454 | 0.6251032 | 1 | 2 | 6 | 2.26288 | 0.983116 | ▇▃▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with each of the following statements? : I would turn down another job that offered quite a bit more pay in order to stay with this organisation.
458 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A24C | To what extent do you agree or disagree with each of the following statements? : I would turn down another job that offered quite a bit more pay in order to stay with this organisation. | numeric | 458 | 0.6218002 | 1 | 4 | 6 | 3.494024 | 1.273828 | ▆▇▇▅▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : Given the chance, I would change my present type of work for something diffe
452 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A25A | Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : Given the chance, I would change my present type of work for something diffe | numeric | 452 | 0.6267547 | 1 | 3 | 6 | 3.047431 | 1.248901 | ▇▅▅▂▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : I am proud of the type of work I do.
451 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A25B | Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : I am proud of the type of work I do. | numeric | 451 | 0.6275805 | 1 | 2 | 6 | 1.973684 | 0.8616203 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
How difficult or easy do you think it would be for you to find a job at least as good as your current one? :
448 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A26 | How difficult or easy do you think it would be for you to find a job at least as good as your current one? : | numeric | 448 | 0.6300578 | 1 | 4 | 6 | 3.625164 | 1.174308 | ▅▅▇▅▁ | F1.0 |
name | value |
---|---|
Very easy | 1 |
Fairly easy | 2 |
Neither easy nor difficult | 3 |
Fairly difficult | 4 |
Very difficult | 5 |
Can’t choose | 6 |
All in all, how likely is it that you will try to find a job with another firm or organisation within the next 12 months? :
429 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A27 | All in all, how likely is it that you will try to find a job with another firm or organisation within the next 12 months? : | numeric | 429 | 0.6457473 | 1 | 3 | 5 | 3.034527 | 1.10294 | ▃▃▆▇▁ | F1.0 |
name | value |
---|---|
Very likely | 1 |
Likely | 2 |
Unlikely | 3 |
Very unlikely | 4 |
Can’t choose | 5 |
To what extent, if at all, do you worry about the possibility of losing your job? :
436 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A28 | To what extent, if at all, do you worry about the possibility of losing your job? : | numeric | 436 | 0.639967 | 1 | 3 | 4 | 3.083871 | 0.9574598 | ▂▃▁▆▇ | F1.0 |
name | value |
---|---|
I worry a great deal | 1 |
I worry to some extent | 2 |
I worry a little | 3 |
I don’t worry at all | 4 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a job that requires new skills.
451 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29A | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a job that requires new skills. | numeric | 451 | 0.6275805 | 1 | 2 | 6 | 1.938158 | 0.9140201 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a position with lower pay.
449 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29B | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a position with lower pay. | numeric | 449 | 0.629232 | 1 | 2 | 6 | 2.757218 | 1.178032 | ▇▃▃▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept temporary employment.
449 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29C | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept temporary employment. | numeric | 449 | 0.629232 | 1 | 2 | 6 | 2.312336 | 1.087296 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to travel longer to get to work.
452 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29D | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to travel longer to get to work. | numeric | 452 | 0.6267547 | 1 | 2 | 6 | 2.752306 | 1.204342 | ▇▂▃▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move within Australia.
454 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29E | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move within Australia. | numeric | 454 | 0.6251032 | 1 | 4 | 6 | 3.639366 | 1.237929 | ▆▃▇▆▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move to a different country.
454 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A29F | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move to a different country. | numeric | 454 | 0.6251032 | 1 | 4 | 6 | 3.98679 | 1.201778 | ▃▂▅▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Cant choose | 6 |
Over the past 12 months, in addition to your main job, have you done any other work for pay? :
430 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A30 | Over the past 12 months, in addition to your main job, have you done any other work for pay? : | numeric | 430 | 0.6449216 | 1 | 4 | 4 | 3.640205 | 0.817985 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes, during all of that period | 1 |
Yes, during most of that period | 2 |
Yes, during some of that period | 3 |
No | 4 |
Over the entire 12 months, how much did you earn from your additional job(s) in total compared with your main job? From my additional job(s), I earned… :
1018 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A31 | Over the entire 12 months, how much did you earn from your additional job(s) in total compared with your main job? From my additional job(s), I earned… : | numeric | 1018 | 0.1593724 | 1 | 1 | 6 | 2.419689 | 1.883322 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
much less than from main job | 1 |
less than from main job | 2 |
about the same as from main job | 3 |
more than from main job | 4 |
much more than from main job | 5 |
Can’t choose | 6 |
Have you ever had a paid job for one year or more? :
707 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A32 | Have you ever had a paid job for one year or more? : | numeric | 707 | 0.416185 | 1 | 1 | 2 | 1.176587 | 0.3816979 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
When did your last paid job end? : Year (YYYY)
821 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A33A | When did your last paid job end? : Year (YYYY) | numeric | 821 | 0.3220479 | 4 | 2007 | 2016 | 1994.036 | 120.5337 | ▁▁▁▁▇ | F4.0 |
When did your last paid job end? : Month (MM)
876 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A33B | When did your last paid job end? : Month (MM) | numeric | 876 | 0.2766309 | 1 | 7 | 29 | 7.18209 | 3.562905 | ▆▇▁▁▁ | F2.0 |
How satisfied were you in your last job? :
806 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A34 | How satisfied were you in your last job? : | numeric | 806 | 0.3344344 | 1 | 2 | 8 | 2.498765 | 1.401245 | ▇▃▂▁▁ | F1.0 |
name | value |
---|---|
Completely satisfied | 1 |
Very satisfied | 2 |
Fairly satisfied | 3 |
Neither satisfied nor dissatisfied | 4 |
Fairly dissatisfied | 5 |
Very dissatisfied | 6 |
Completely dissatisfied | 7 |
Can’t choose | 8 |
What was the main reason that your job ended? :
822 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A35 | What was the main reason that your job ended? : | numeric | 822 | 0.3212221 | 1 | 2 | 9 | 3.652956 | 2.592688 | ▇▂▁▂▂ | F1.0 |
name | value |
---|---|
I reached retirement age | 1 |
I retired early, by choice | 2 |
I retired early, not by choice | 3 |
I became (permanently) disabled | 4 |
My place of work shut down | 5 |
I was dismissed | 6 |
My term of employment/contract ended | 7 |
Family responsibilities | 8 |
I got married | 9 |
Would you like to have a paid job, either now or in the future? :
774 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A36 | Would you like to have a paid job, either now or in the future? : | numeric | 774 | 0.3608588 | 1 | 2 | 2 | 1.638444 | 0.4810018 | ▅▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
How likely do you think it is that you would find a job? :
1016 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A37 | How likely do you think it is that you would find a job? : | numeric | 1016 | 0.1610239 | 1 | 3 | 5 | 2.717949 | 1.106418 | ▃▇▇▆▁ | F1.0 |
name | value |
---|---|
Very likely | 1 |
Likely | 2 |
Unlikely | 3 |
Very unlikely | 4 |
Cant choose | 5 |
To what extent, if at all, do you worry about the possibility of not finding a job? :
1017 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A38 | To what extent, if at all, do you worry about the possibility of not finding a job? : | numeric | 1017 | 0.1601982 | 1 | 3 | 4 | 3 | 1.119771 | ▂▃▁▃▇ | F1.0 |
name | value |
---|---|
I worry a great deal | 1 |
I worry to some extent | 2 |
I worry a little | 3 |
I don’t worry at all | 4 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a job that requires new skills.
1034 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39A | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a job that requires new skills. | numeric | 1034 | 0.1461602 | 1 | 2 | 6 | 2.214689 | 1.181875 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a position with low pay.
1035 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39B | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a position with low pay. | numeric | 1035 | 0.1453344 | 1 | 3 | 6 | 3.272727 | 1.216339 | ▇▇▇▂▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept temporary employment.
1033 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39C | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept temporary employment. | numeric | 1033 | 0.146986 | 1 | 2 | 6 | 2.269663 | 1.091974 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to travel a long time to get to work.
1036 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39D | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to travel a long time to get to work. | numeric | 1036 | 0.1445087 | 1 | 4 | 6 | 4.034286 | 1.066184 | ▂▂▇▆▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move within Australia.
1035 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39E | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move within Australia. | numeric | 1035 | 0.1453344 | 1 | 4 | 6 | 4.102273 | 1.200379 | ▃▂▆▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move to a different country.
1035 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A39F | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move to a different country. | numeric | 1035 | 0.1453344 | 1 | 5 | 6 | 4.215909 | 1.218419 | ▂▁▃▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a public employment agency?
1036 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40A | Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a public employment agency? | numeric | 1036 | 0.1445087 | 1 | 1 | 3 | 1.217143 | 0.5238483 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a private employment agency?
1037 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40B | Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a private employment agency? | numeric | 1037 | 0.1436829 | 1 | 1 | 3 | 1.201149 | 0.5154255 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Answered advertisements for jobs?
1032 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40C | Thinking about the past 12 months, have you done any of the following in order to find a job? : Answered advertisements for jobs? | numeric | 1032 | 0.1478117 | 1 | 1 | 3 | 1.486034 | 0.7596388 | ▇▁▂▁▂ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Advertised yourself for a job, for example on the internet or in newspapers?
1035 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40D | Thinking about the past 12 months, have you done any of the following in order to find a job? : Advertised yourself for a job, for example on the internet or in newspapers? | numeric | 1035 | 0.1453344 | 1 | 1 | 3 | 1.142046 | 0.4500721 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Applied directly to employers?
1034 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40E | Thinking about the past 12 months, have you done any of the following in order to find a job? : Applied directly to employers? | numeric | 1034 | 0.1461602 | 1 | 1 | 3 | 1.435028 | 0.7210426 | ▇▁▂▁▂ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Thinking about the past 12 months, have you done any of the following in order to find a job? : Asked relatives, friends, or colleagues to help you find a job?
1032 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A40F | Thinking about the past 12 months, have you done any of the following in order to find a job? : Asked relatives, friends, or colleagues to help you find a job? | numeric | 1032 | 0.1478117 | 1 | 1 | 3 | 1.463687 | 0.697161 | ▇▁▃▁▂ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once or twice | 2 |
Yes, more than twice | 3 |
Over the past 12 months, have you had any training to improve your job skills? :
1022 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A41 | Over the past 12 months, have you had any training to improve your job skills? : | numeric | 1022 | 0.1560694 | 1 | 2 | 3 | 1.724868 | 0.5036733 | ▃▁▇▁▁ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Can’t choose | 3 |
Are you currently looking for a job? :
1019 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A42 | Are you currently looking for a job? : | numeric | 1019 | 0.1585467 | 1 | 2 | 2 | 1.6875 | 0.4647242 | ▃▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
What is your main source of economic support? :
774 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A43 | What is your main source of economic support? : | numeric | 774 | 0.3608588 | 1 | 3 | 95 | 6.709382 | 16.81947 | ▇▁▁▁▁ | F2.0 |
name | value |
---|---|
Current spouse/ partner | 1 |
Other family members | 2 |
Pension (private/ state) | 3 |
Unemployment benefits | 4 |
Social assistance/ welfare | 5 |
Occasional work | 6 |
Student loans/ stipends | 7 |
Savings | 8 |
Investments or rental income | 9 |
Other | 95 |
To what extent, if at all, do you worry about the possibility of losing this main economic support? :
747 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A44 | To what extent, if at all, do you worry about the possibility of losing this main economic support? : | numeric | 747 | 0.3831544 | 1 | 3 | 4 | 2.814655 | 1.099833 | ▅▅▁▆▇ | F1.0 |
name | value |
---|---|
I worry a great deal | 1 |
I worry to some extent | 2 |
I worry a little | 3 |
I don’t worry at all | 4 |
Over the past five years, have you ever worked for pay? :
717 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A45 | Over the past five years, have you ever worked for pay? : | numeric | 717 | 0.4079273 | 1 | 2 | 2 | 1.544534 | 0.4985176 | ▇▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Over the past five years, did you experience any of the following changes in your working life? : I was unemployed for a period longer than three months.
315 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A46A | Over the past five years, did you experience any of the following changes in your working life? : I was unemployed for a period longer than three months. | numeric | 315 | 0.7398844 | 1 | 1 | 6 | 1.440848 | 1.051131 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once | 2 |
Yes, twice | 3 |
Yes, three times | 4 |
Yes, more than three times | 5 |
Can’t choose | 6 |
Over the past five years, did you experience any of the following changes in your working life? : I changed my employer.
314 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A46B | Over the past five years, did you experience any of the following changes in your working life? : I changed my employer. | numeric | 314 | 0.7407102 | 1 | 1 | 6 | 1.681159 | 1.126394 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once | 2 |
Yes, twice | 3 |
Yes, three times | 4 |
Yes, more than three times | 5 |
Can’t choose | 6 |
Over the past five years, did you experience any of the following changes in your working life? : I changed my occupation.
313 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A46C | Over the past five years, did you experience any of the following changes in your working life? : I changed my occupation. | numeric | 313 | 0.7415359 | 1 | 1 | 6 | 1.433185 | 0.8924876 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once | 2 |
Yes, twice | 3 |
Yes, three times | 4 |
Yes, more than three times | 5 |
Can’t choose | 6 |
Over the past five years, did you experience any of the following changes in your working life? : I started my own business/ became self-employed.
309 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A46D | Over the past five years, did you experience any of the following changes in your working life? : I started my own business/ became self-employed. | numeric | 309 | 0.744839 | 1 | 1 | 6 | 1.21286 | 0.6189128 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once | 2 |
Yes, twice | 3 |
Yes, three times | 4 |
Yes, more than three times | 5 |
Can’t choose | 6 |
Over the past five years, did you experience any of the following changes in your working life? : I took up an additional job.
322 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A46E | Over the past five years, did you experience any of the following changes in your working life? : I took up an additional job. | numeric | 322 | 0.734104 | 1 | 1 | 6 | 1.264342 | 0.7833283 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, once | 2 |
Yes, twice | 3 |
Yes, three times | 4 |
Yes, more than three times | 5 |
Can’t choose | 6 |
How would you generally rate your current financial situation? My current financial situation is… :
22 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A47 | How would you generally rate your current financial situation? My current financial situation is… : | numeric | 22 | 0.9818332 | 1 | 2 | 6 | 2.5164 | 0.9670194 | ▇▆▁▁▁ | F1.0 |
name | value |
---|---|
Very good | 1 |
Good | 2 |
Neither good nor bad | 3 |
Bad | 4 |
Very bad | 5 |
Can’t choose | 6 |
Compared to five years ago, how do you think your financial situation has changed? My current financial situation is… :
24 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A48 | Compared to five years ago, how do you think your financial situation has changed? My current financial situation is… : | numeric | 24 | 0.9801817 | 1 | 3 | 6 | 2.776748 | 1.288108 | ▇▅▃▂▁ | F1.0 |
name | value |
---|---|
much better than five years ago | 1 |
somewhat better than five years ago | 2 |
the same as five years ago | 3 |
somewhat worse than five years ago | 4 |
much worse than five years ago | 5 |
Can’t choose | 6 |
And what will your financial situation likely be in five years? My financial situation in five years will likely be… :
24 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A49 | And what will your financial situation likely be in five years? My financial situation in five years will likely be… : | numeric | 24 | 0.9801817 | 1 | 3 | 6 | 2.925864 | 1.383313 | ▇▆▃▁▂ | F1.0 |
name | value |
---|---|
much better than today | 1 |
somewhat better than today | 2 |
the same as today | 3 |
somewhat worse than today | 4 |
much worse than today | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? : It is good for Australias economy that people aged 60 and over are employed.
22 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A50A | To what extent do you agree or disagree with the following statements? : It is good for Australias economy that people aged 60 and over are employed. | numeric | 22 | 0.9818332 | 1 | 2 | 6 | 2.183347 | 1.090991 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
To what extent do you agree or disagree with the following statements? : When people aged 60 and over are employed, they take jobs away from younger people.
43 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A50B | To what extent do you agree or disagree with the following statements? : When people aged 60 and over are employed, they take jobs away from younger people. | numeric | 43 | 0.9644922 | 1 | 4 | 6 | 3.747431 | 1.109472 | ▃▃▇▅▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Can’t choose | 6 |
How much do you agree or disagree with the following statements? : Unions are active in my workplace
141 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51A | How much do you agree or disagree with the following statements? : Unions are active in my workplace | numeric | 141 | 0.8835673 | 1 | 3 | 5 | 3.142056 | 1.197287 | ▂▇▇▇▅ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree with the following statements? : My employer opposes unions in my workplace
164 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51B | How much do you agree or disagree with the following statements? : My employer opposes unions in my workplace | numeric | 164 | 0.8645747 | 1 | 3 | 5 | 3.232092 | 0.9563123 | ▁▂▇▅▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree with the following statements? : Unions should have a greater role in setting pay and working conditions
122 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51C | How much do you agree or disagree with the following statements? : Unions should have a greater role in setting pay and working conditions | numeric | 122 | 0.8992568 | 1 | 3 | 5 | 3.020202 | 1.034139 | ▁▅▇▃▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree with the following statements? : When unions run public campaigns, I trust what they are saying
119 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51D | How much do you agree or disagree with the following statements? : When unions run public campaigns, I trust what they are saying | numeric | 119 | 0.9017341 | 1 | 3 | 5 | 3.443223 | 1.003879 | ▁▂▇▅▃ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree with the following statements? : These days, individuals can represent their own interests in the workplace without the help of unions
118 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51E | How much do you agree or disagree with the following statements? : These days, individuals can represent their own interests in the workplace without the help of unions | numeric | 118 | 0.9025599 | 1 | 3 | 5 | 2.882891 | 1.02309 | ▂▇▇▅▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree with the following statements? : Union corruption is a serious problem in Australia today
104 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
A51F | How much do you agree or disagree with the following statements? : Union corruption is a serious problem in Australia today | numeric | 104 | 0.9141206 | 1 | 3 | 5 | 2.495935 | 1.050588 | ▅▅▇▂▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
I feel connected with people at work (e.g. co-workers, customers, clients): :
331 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B1 | I feel connected with people at work (e.g. co-workers, customers, clients): : | numeric | 331 | 0.7266722 | 1 | 5 | 6 | 4.745455 | 0.9438031 | ▁▁▅▇▃ | F1.0 |
name | value |
---|---|
Disagree Strongly | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Agree Strongly | 6 |
I have caring responsibilities (e.g. at least 4 hours/week) for a friend or family member with a chronic disability or illness? :
299 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B2 | I have caring responsibilities (e.g. at least 4 hours/week) for a friend or family member with a chronic disability or illness? : | numeric | 299 | 0.7530966 | 1 | 2 | 2 | 1.849781 | 0.3574823 | ▂▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
I believe my employer has a responsibility for my mental health and well-being? :
329 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B3 | I believe my employer has a responsibility for my mental health and well-being? : | numeric | 329 | 0.7283237 | 1 | 4 | 6 | 4.316326 | 1.269008 | ▃▂▇▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Strongly Agree | 6 |
In the past 4 weeks how often have you felt: : Nervous
307 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4A | In the past 4 weeks how often have you felt: : Nervous | numeric | 307 | 0.7464905 | 1 | 2 | 5 | 1.902655 | 0.9278714 | ▇▆▃▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
In the past 4 weeks how often have you felt: : Hopeless
314 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4B | In the past 4 weeks how often have you felt: : Hopeless | numeric | 314 | 0.7407102 | 1 | 1 | 5 | 1.510591 | 0.880182 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
In the past 4 weeks how often have you felt: : Restless or fidgety
314 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4C | In the past 4 weeks how often have you felt: : Restless or fidgety | numeric | 314 | 0.7407102 | 1 | 2 | 5 | 1.857302 | 0.9703959 | ▇▅▃▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
In the past 4 weeks how often have you felt: : So depressed that nothing could cheer you up
314 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4D | In the past 4 weeks how often have you felt: : So depressed that nothing could cheer you up | numeric | 314 | 0.7407102 | 1 | 1 | 5 | 1.376812 | 0.7782175 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
In the past 4 weeks how often have you felt: : That everything was an effort
313 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4E | In the past 4 weeks how often have you felt: : That everything was an effort | numeric | 313 | 0.7415359 | 1 | 2 | 5 | 1.844098 | 0.9724028 | ▇▅▃▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
In the past 4 weeks how often have you felt: : Worthless
318 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B4F | In the past 4 weeks how often have you felt: : Worthless | numeric | 318 | 0.7374071 | 1 | 1 | 5 | 1.385218 | 0.829315 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
None of the Time | 1 |
A Little of the Time | 2 |
Some of the Time | 3 |
Most of the Time | 4 |
All of the Time | 5 |
If you had a mental health issue (e.g. depression, anxiety), how likely would you be to tell your supervisor? :
327 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B5 | If you had a mental health issue (e.g. depression, anxiety), how likely would you be to tell your supervisor? : | numeric | 327 | 0.7299752 | 1 | 3 | 5 | 2.857466 | 1.228226 | ▅▆▇▇▂ | F1.0 |
name | value |
---|---|
Very Unlikely | 1 |
Unlikely | 2 |
Unsure | 3 |
Likely | 4 |
Very likely | 5 |
How many days in the last 4 weeks did you go to work while suffering from health problems? : Days
929 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B6 | How many days in the last 4 weeks did you go to work while suffering from health problems? : Days | numeric | 929 | 0.2328654 | 0 | 4 | 70 | 6.98227 | 9.134603 | ▇▁▁▁▁ | F2.0 |
On these days when you went to work suffering from health problems, what percentage of your time were you as productive as usual?
741 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B7 | On these days when you went to work suffering from health problems, what percentage of your time were you as productive as usual? | numeric | 741 | 0.388109 | 1 | 85 | 100 | 76.82979 | 26.63712 | ▁▁▂▂▇ | F3.0 |
How much do you disagree or agree with the following statements? : I feel confident helping to set targets/goals in my work area
362 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B8A | How much do you disagree or agree with the following statements? : I feel confident helping to set targets/goals in my work area | numeric | 362 | 0.7010735 | 1 | 5 | 6 | 4.644287 | 1.094893 | ▁▁▃▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Strongly Agree | 6 |
How much do you disagree or agree with the following statements? : I can think of many ways to reach my current work goals
368 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B8B | How much do you disagree or agree with the following statements? : I can think of many ways to reach my current work goals | numeric | 368 | 0.6961189 | 1 | 5 | 6 | 4.571767 | 1.037542 | ▁▁▅▇▂ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Strongly Agree | 6 |
How much do you disagree or agree with the following statements? : I can get through difficult times at work, because Ive experienced difficulty before
362 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B8C | How much do you disagree or agree with the following statements? : I can get through difficult times at work, because Ive experienced difficulty before | numeric | 362 | 0.7010735 | 1 | 5 | 6 | 4.795053 | 1.023509 | ▁▁▃▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Strongly Agree | 6 |
How much do you disagree or agree with the following statements? : I always look on the bright side of things regarding my job
358 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B8D | How much do you disagree or agree with the following statements? : I always look on the bright side of things regarding my job | numeric | 358 | 0.7043765 | 1 | 5 | 6 | 4.525205 | 1.090241 | ▁▂▆▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Somewhat Disagree | 3 |
Somewhat Agree | 4 |
Agree | 5 |
Strongly Agree | 6 |
How much do you disagree or agree with the following statements about your supervisor? : My supervisor treats me with kindness and consideration
383 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B9A | How much do you disagree or agree with the following statements about your supervisor? : My supervisor treats me with kindness and consideration | numeric | 383 | 0.6837325 | 1 | 4 | 5 | 3.747584 | 1.005574 | ▁▁▃▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Neither Disagree or Agree | 3 |
Agree | 4 |
Strongly Agree | 5 |
How much do you disagree or agree with the following statements about your supervisor? : My supervisor shows concern for my rights as an employee
387 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B9B | How much do you disagree or agree with the following statements about your supervisor? : My supervisor shows concern for my rights as an employee | numeric | 387 | 0.6804294 | 1 | 4 | 5 | 3.644417 | 1.016758 | ▁▂▅▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Neither Disagree or Agree | 3 |
Agree | 4 |
Strongly Agree | 5 |
How much do you disagree or agree with the following statements about your supervisor? : My supervisor takes steps to deal with me in a truthful manner.
387 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B9C | How much do you disagree or agree with the following statements about your supervisor? : My supervisor takes steps to deal with me in a truthful manner. | numeric | 387 | 0.6804294 | 1 | 4 | 5 | 3.690534 | 1.025842 | ▁▁▅▇▃ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Neither Disagree or Agree | 3 |
Agree | 4 |
Strongly Agree | 5 |
Generally speaking, – would you say that most people can be trusted or that you can’t be too careful in dealing with people? :
341 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B10 | Generally speaking, – would you say that most people can be trusted or that you can’t be too careful in dealing with people? : | numeric | 341 | 0.7184145 | 1 | 1 | 2 | 1.435632 | 0.4961247 | ▇▁▁▁▆ | F1.0 |
name | value |
---|---|
Can be trusted | 1 |
Can’t be too careful | 2 |
Would you say that you can trust your manager(s) a lot, some, only a little or not at all? :
365 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B11 | Would you say that you can trust your manager(s) a lot, some, only a little or not at all? : | numeric | 365 | 0.6985962 | 1 | 2 | 5 | 2.20331 | 1.168132 | ▆▇▃▁▂ | F1.0 |
name | value |
---|---|
Trust them a lot | 1 |
Trust them some | 2 |
Trust them only a little | 3 |
Trust them not at all | 4 |
Does not apply | 5 |
I feel extremely frustrated by how I have been treated by my organisation :
364 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
B12 | I feel extremely frustrated by how I have been treated by my organisation : | numeric | 364 | 0.699422 | 1 | 2 | 5 | 2.406139 | 1.166053 | ▇▇▆▃▁ | F1.0 |
name | value |
---|---|
Strongly Disagree | 1 |
Disagree | 2 |
Neither Disagree or Agree | 3 |
Agree | 4 |
Strongly Agree | 5 |
Have you trained/retrained for a particular occupation in the last five years? :
98 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C1 | Have you trained/retrained for a particular occupation in the last five years? : | numeric | 98 | 0.9190751 | 1 | 1 | 2 | 1.178796 | 0.3833537 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
No | 1 |
Yes, in: Please write the name or title the occupation | 2 |
Are you seeking paid work currently or will you be seeking paid work in the next five years? [NOTE- this need not be the occupation for which you have trained] :
125 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C2 | Are you seeking paid work currently or will you be seeking paid work in the next five years? [NOTE- this need not be the occupation for which you have trained] : | numeric | 125 | 0.8967795 | 1 | 3 | 3 | 2.583794 | 0.6774 | ▁▁▂▁▇ | F1.0 |
name | value |
---|---|
Currently seeking paid work | 1 |
Intend to seek paid work in the next five years | 2 |
Not seeking paid work now or in the next five years | 3 |
Are you currently working in an internship? :
82 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C4 | Are you currently working in an internship? : | numeric | 82 | 0.9322874 | 1 | 3 | 3 | 2.986714 | 0.1482783 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes, paid internship | 1 |
Yes, unpaid internship | 2 |
No | 3 |
How many internships (either paid or unpaid) have you completed in the last five years?
1176 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C5 | How many internships (either paid or unpaid) have you completed in the last five years? | numeric | 1176 | 0.0289017 | 0 | 1 | 7 | 1.771429 | 1.646489 | ▇▁▂▁▁ | F2.0 |
How many of the people you know have helped you find paid work in the last five years? :
171 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C6 | How many of the people you know have helped you find paid work in the last five years? : | numeric | 171 | 0.8587944 | 1 | 1 | 2 | 1.189423 | 0.3920328 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
None | 1 |
1 or more? Please record the approximate number of people: | 2 |
How many of the people you know could you call on to help you find paid work within the next five years? :
207 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C7 | How many of the people you know could you call on to help you find paid work within the next five years? : | numeric | 207 | 0.8290669 | 1 | 1 | 2 | 1.442231 | 0.4968991 | ▇▁▁▁▆ | F1.0 |
name | value |
---|---|
None | 1 |
1 or more? Please record the approximate number of people: | 2 |
We would now like to ask some questions about your closest friendDoes this friend regularly give you support in your life, and if so, what is the main type of support that they give you? :
682 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C8SB | We would now like to ask some questions about your closest friendDoes this friend regularly give you support in your life, and if so, what is the main type of support that they give you? : | numeric | 682 | 0.4368291 | 1 | 2 | 10 | 3.213611 | 2.184164 | ▇▅▁▁▁ | F2.0 |
name | value |
---|---|
Does not regularly give me support | 1 |
Someone to confide in, emotional/positive support | 2 |
Advice and information | 3 |
Fun and good times | 4 |
Training or assistance with skills | 5 |
Favours - transport, repairs, lifting, errands, borrowing things | 6 |
Financial support | 7 |
Childcare | 8 |
Dont know | 9 |
Other: please record | 10 |
We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either
1028 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C8A | We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either | numeric | 1028 | 0.1511148 | 1 | 4 | 5 | 3.311475 | 1.666156 | ▆▁▃▂▇ | F1.0 |
name | value |
---|---|
Full time paid work (35+ hours/week) in the occupation for which I most recently trained | 1 |
Full time paid work (35+ hours/week) in another occupation | 2 |
Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained | 3 |
Part time paid work (less than 35 hours/week) in another occupation | 4 |
Dont know/not applicable (e.g. retired, disability, full time carer, etc) | 5 |
We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either
954 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C8B | We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either | numeric | 954 | 0.2122213 | 1 | 3 | 5 | 2.980545 | 1.611607 | ▇▂▆▂▇ | F1.0 |
name | value |
---|---|
Full time paid work (35+ hours/week) in the occupation for which I most recently trained | 1 |
Full time paid work (35+ hours/week) in another occupation | 2 |
Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained | 3 |
Part time paid work (less than 35 hours/week) in another occupation | 4 |
Dont know/not applicable (e.g. retired, disability, full time carer, etc) | 5 |
Do you regularly give this friend support in their life, and if so, what is the main type of support that you give them? :
679 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C9SB | Do you regularly give this friend support in their life, and if so, what is the main type of support that you give them? : | numeric | 679 | 0.4393064 | 1 | 2 | 10 | 3.150376 | 2.097425 | ▇▅▁▁▁ | F2.0 |
name | value |
---|---|
Do not regularly give support | 1 |
Someone to confide in, emotional/positive support | 2 |
Advice and information | 3 |
Fun and good times | 4 |
Training or assistance with skills | 5 |
Favours - transport, repairs, lifting, errands, borrowing things | 6 |
Financial support | 7 |
Childcare | 8 |
Dont know | 9 |
Other: please record | 10 |
Did/could they help or support you in finding a permanent or a contract job? : If helped you in last five years: OR
1103 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C9A | Did/could they help or support you in finding a permanent or a contract job? : If helped you in last five years: OR | numeric | 1103 | 0.0891825 | 1 | 1 | 2 | 1.398148 | 0.4917984 | ▇▁▁▁▅ | F1.0 |
name | value |
---|---|
Permanent paid work | 1 |
Contracted paid work | 2 |
Did/could they help or support you in finding a permanent or a contract job? : Most likely help you in future
960 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C9B | Did/could they help or support you in finding a permanent or a contract job? : Most likely help you in future | numeric | 960 | 0.2072667 | 1 | 1 | 2 | 1.155379 | 0.3629889 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
Permanent paid work | 1 |
Contracted paid work | 2 |
Did this friend help or support you in finding paid work in the last five years, and if so, what was the main way in which they helped/supported you? :
687 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C10SB | Did this friend help or support you in finding paid work in the last five years, and if so, what was the main way in which they helped/supported you? : | numeric | 687 | 0.4327002 | 1 | 1 | 12 | 2.994275 | 3.556424 | ▇▁▁▁▂ | F2.0 |
name | value |
---|---|
Did not help or support me in finding paid work in the last five years | 1 |
Told me about the work or vacancy | 2 |
Referred or recommended me to someone that they personally knew who then employed me | 3 |
Got or gave me work directly | 4 |
Gave me emotional/positive support in applying for the work | 5 |
Gave or helped me with training for the work | 6 |
Helped me with tasks relevant to getting the work (such as preparing a CV etc) | 7 |
Helped me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 8 |
Helped me with transport to the job interview or in commencing the work | 9 |
Helped me with childcare during the job interview or commencing the work | 10 |
Dont know/not applicable (e.g. retired, disability, full time carer, etc) | 11 |
Other: please record | 12 |
How many months and/or years was the contract for? : Months
1165 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C10A | How many months and/or years was the contract for? : Months | numeric | 1165 | 0.0379851 | 1 | 6 | 21 | 7.108696 | 4.624708 | ▆▇▅▁▁ | F2.0 |
How many months and/or years was the contract for? : Years
1182 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C10B | How many months and/or years was the contract for? : Years | numeric | 1182 | 0.0239472 | 1 | 2 | 15 | 4 | 4.1833 | ▇▃▁▁▁ | F2.0 |
Did you help or support this friend to find paid work in the last five years, and if so, what was the main way in which you helped/supported them? :
690 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C11SB | Did you help or support this friend to find paid work in the last five years, and if so, what was the main way in which you helped/supported them? : | numeric | 690 | 0.430223 | 1 | 1 | 12 | 2.992323 | 3.509868 | ▇▁▁▁▂ | F2.0 |
name | value |
---|---|
Did not help or support them in finding paid work in the last five years | 1 |
Told them about the work or vacancy | 2 |
Referred or recommended them to someone that I personally knew who then employed them | 3 |
Got or gave them work directly | 4 |
Gave or helped them with training for the work | 5 |
Helped them with tasks relevant to getting the work (such as preparing a CV etc) | 6 |
Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 7 |
Helped them with transport to the job interview or in commencing the work | 8 |
Helped them with childcare during the job interview or commencing the work | 9 |
Dont know/not applicable (e.g. they are retired, disability, full time carer, etc) | 10 |
Other: please record | 12 |
What was/would be the main form of help or support that they gave/would give you to find paid work? : If helped you in last five years: OR
1065 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C11A | What was/would be the main form of help or support that they gave/would give you to find paid work? : If helped you in last five years: OR | numeric | 1065 | 0.1205615 | 1 | 2 | 10 | 4.253425 | 3.409544 | ▇▁▁▁▅ | F2.0 |
name | value |
---|---|
Tell me about a particular job or vacancy | 1 |
Refer or recommend me to someone that they personally knew who then employed me | 2 |
Give me emotional/positive support in applying for the work | 3 |
Give or help me with training for the work | 4 |
Help me with tasks relevant to getting the work (such as preparing a CV etc) | 5 |
Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 6 |
Help me with transport to the job interview or in commencing the work | 7 |
Help me with childcare during the job interview or commencing the work | 8 |
Dont know/not applicable (e.g. retired, disability, full time carer, etc) | 9 |
Other: please record | 10 |
What was/would be the main form of help or support that they gave/would give you to find paid work? : Most likely help you in future
1004 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C11B | What was/would be the main form of help or support that they gave/would give you to find paid work? : Most likely help you in future | numeric | 1004 | 0.1709331 | 1 | 2 | 10 | 3.545894 | 3.052386 | ▇▂▁▁▃ | F2.0 |
name | value |
---|---|
Tell me about a particular job or vacancy | 1 |
Refer or recommend me to someone that they personally knew who then employed me | 2 |
Give me emotional/positive support in applying for the work | 3 |
Give or help me with training for the work | 4 |
Help me with tasks relevant to getting the work (such as preparing a CV etc) | 5 |
Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 6 |
Help me with transport to the job interview or in commencing the work | 7 |
Help me with childcare during the job interview or commencing the work | 8 |
Dont know/not applicable (e.g. retired, disability, full time carer, etc) | 9 |
Other: please record | 10 |
What is the main thing your friend does with their time? :
665 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C12SB | What is the main thing your friend does with their time? : | numeric | 665 | 0.4508671 | 1 | 2 | 12 | 4.520147 | 4.225366 | ▇▁▁▁▃ | F2.0 |
name | value |
---|---|
Employed full-time (works 30+ paid hours/wk) | 1 |
Employed part-time (works ls 30 paid hours/wk) | 2 |
No paid work - internship | 3 |
No paid work - volunteer | 5 |
No paid work - unemployed, looking for work | 6 |
No paid work - unemployed, not looking for work | 7 |
No paid work - cares for children | 8 |
No paid work - cares for adults | 9 |
No paid work - retired | 10 |
Dont know | 11 |
Other: please record | 12 |
Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : If you helped in last five years
1059 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C12A | Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : If you helped in last five years | numeric | 1059 | 0.1255161 | 1 | 6 | 11 | 5.611842 | 3.928246 | ▇▁▂▁▆ | F2.0 |
name | value |
---|---|
Did not/would not be able to help or support them in finding paid work in the last/next five years | 1 |
Told them about the work or vacancy | 2 |
Referred or recommended them to someone that I personally knew who then employed them | 3 |
Got or gave them work directly | 4 |
Gave or helped them with training for the work | 5 |
Helped them with tasks relevant to getting the work (such as preparing a CV etc) | 6 |
Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 7 |
Helped them with transport to the job interview or in commencing the work | 8 |
Helped them with childcare during the job interview or commencing the work | 9 |
Dont know/not applicable (e.g. they are retired, disability, full time carer, etc) | 10 |
Other: please record | 11 |
Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : Most likely to help in future
983 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C12B | Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : Most likely to help in future | numeric | 983 | 0.1882742 | 1 | 3 | 11 | 4.600877 | 3.650285 | ▇▁▁▁▃ | F2.0 |
name | value |
---|---|
Did not/would not be able to help or support them in finding paid work in the last/next five years | 1 |
Told them about the work or vacancy | 2 |
Referred or recommended them to someone that I personally knew who then employed them | 3 |
Got or gave them work directly | 4 |
Gave or helped them with training for the work | 5 |
Helped them with tasks relevant to getting the work (such as preparing a CV etc) | 6 |
Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc) | 7 |
Helped them with transport to the job interview or in commencing the work | 8 |
Helped them with childcare during the job interview or commencing the work | 9 |
Dont know/not applicable (e.g. they are retired, disability, full time carer, etc) | 10 |
Other: please record | 11 |
What is your friend’s sex and partner status? :
687 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C13SB | What is your friend’s sex and partner status? : | numeric | 687 | 0.4327002 | 1 | 6.5 | 9 | 5.753817 | 2.449975 | ▅▂▃▇▇ | F1.0 |
name | value |
---|---|
Single male, no children | 1 |
Single female, no children | 2 |
Single male with children (that live with them at least some of the time) | 3 |
Single female with children (that live with them at least some of the time) | 4 |
Partnered male, no children | 5 |
Partnered female, no children | 6 |
Partnered male with children (that live with them at least some of the time) | 7 |
Partnered female with children (that live with them at least some of the time) | 8 |
Dont know | 9 |
When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only
1033 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C13A | When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only | numeric | 1033 | 0.146986 | 1 | 2 | 12 | 4.151685 | 4.260517 | ▇▁▁▁▃ | F2.0 |
name | value |
---|---|
Employed full-time (works 30+ paid hours/wk) | 1 |
Employed part-time (works ls 30 paid hours/wk) | 2 |
No paid work - internship | 3 |
No paid work - volunteer | 5 |
No paid work - unemployed, looking for work | 6 |
No paid work - unemployed, not looking for work | 7 |
No paid work - cares for children | 8 |
No paid work - cares for adults | 9 |
No paid work - retired | 10 |
Dont know | 11 |
Other: please record | 12 |
When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only
999 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C13B | When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only | numeric | 999 | 0.1750619 | 1 | 1 | 12 | 3.665094 | 4.179175 | ▇▁▁▁▃ | F2.0 |
name | value |
---|---|
Employed full-time (works 30+ paid hours/wk) | 1 |
Employed part-time (works ls 30 paid hours/wk) | 2 |
No paid work - internship | 3 |
No paid work - volunteer | 5 |
No paid work - unemployed, looking for work | 6 |
No paid work - unemployed, not looking for work | 7 |
No paid work - cares for children | 8 |
No paid work - cares for adults | 9 |
No paid work - retired | 10 |
Dont know | 11 |
Other: please record | 12 |
What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR
1039 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C14A | What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1039 | 0.1420314 | 1 | 7 | 9 | 6.139535 | 2.618704 | ▃▂▂▆▇ | F1.0 |
name | value |
---|---|
Single male, no children | 1 |
Single female, no children | 2 |
Single male with children (that live with them at least some of the time) | 3 |
Single female with children (that live with them at least some of the time) | 4 |
Partnered male, no children | 5 |
Partnered female, no children | 6 |
Partnered male with children (that live with them at least some of the time) | 7 |
Partnered female with children (that live with them at least some of the time) | 8 |
Dont know | 9 |
What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)
1006 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C14B | What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1006 | 0.1692816 | 1 | 7 | 9 | 6.760976 | 2.32135 | ▂▁▁▅▇ | F1.0 |
name | value |
---|---|
Single male, no children | 1 |
Single female, no children | 2 |
Single male with children (that live with them at least some of the time) | 3 |
Single female with children (that live with them at least some of the time) | 4 |
Partnered male, no children | 5 |
Partnered female, no children | 6 |
Partnered male with children (that live with them at least some of the time) | 7 |
Partnered female with children (that live with them at least some of the time) | 8 |
Dont know | 9 |
What term would you use to best describe your relationship to this person? :
673 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C15SB | What term would you use to best describe your relationship to this person? : | numeric | 673 | 0.4442609 | 1 | 1 | 17 | 3.804833 | 4.889564 | ▇▁▁▁▁ | F2.0 |
name | value |
---|---|
Just close friend (no other relation) | 1 |
Close school friend | 2 |
Close university, Tafe or college friend | 3 |
Partner | 4 |
Ex-partner | 5 |
Child | 6 |
Aunt or uncle | 7 |
Cousin | 8 |
Grandparent | 9 |
Colleague - met through internship program | 10 |
Colleague - other | 11 |
Boss - met through internship program | 12 |
Boss - other | 13 |
Team-mate | 14 |
Church or religious connection | 15 |
Dont know | 16 |
Other: please record | 17 |
How close do you feel to this person? (As in now, not when they might or might not have helped in the past) :
659 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C16SB | How close do you feel to this person? (As in now, not when they might or might not have helped in the past) : | numeric | 659 | 0.4558216 | 1 | 3 | 13 | 3.423913 | 2.677731 | ▇▃▁▁▁ | F2.0 |
name | value |
---|---|
Extremely close - 10 | 1 |
9 | 2 |
8 | 3 |
7 | 4 |
6 | 5 |
5 | 6 |
4 | 7 |
3 | 8 |
2 | 10 |
1 | 11 |
Not close at all - 0 | 12 |
Dont know | 13 |
What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR
1032 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C16A | What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1032 | 0.1478117 | 1 | 11 | 17 | 9.050279 | 5.491847 | ▇▅▁▆▇ | F2.0 |
name | value |
---|---|
Friend of a friend | 1 |
Distant friend | 2 |
Close friend | 3 |
School friend | 4 |
University, Tafe or college friend | 5 |
Partner | 6 |
Ex-partner | 7 |
Child | 8 |
Aunt/uncle/cousin/grandparent | 9 |
Colleague - met through internship program | 10 |
Colleague - other | 11 |
Boss - met through internship program | 12 |
Boss - other | 13 |
Team-mate | 14 |
Church or religious connection | 15 |
Dont know | 16 |
Other: please record | 17 |
What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)
1007 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C16B | What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1007 | 0.1684558 | 1 | 6.5 | 17 | 8.857843 | 5.60914 | ▇▅▁▅▇ | F2.0 |
name | value |
---|---|
Friend of a friend | 1 |
Distant friend | 2 |
Close friend | 3 |
School friend | 4 |
University, Tafe or college friend | 5 |
Partner | 6 |
Ex-partner | 7 |
Child | 8 |
Aunt/uncle/cousin/grandparent | 9 |
Colleague - met through internship program | 10 |
Colleague - other | 11 |
Boss - met through internship program | 12 |
Boss - other | 13 |
Team-mate | 14 |
Church or religious connection | 15 |
Dont know | 16 |
Other: please record | 17 |
How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR
1038 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C17A | How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1038 | 0.1428571 | 1 | 5 | 13 | 5.67052 | 4.056447 | ▇▅▃▁▅ | F2.0 |
name | value |
---|---|
Extremely close - 10 | 1 |
9 | 2 |
8 | 3 |
7 | 4 |
6 | 5 |
5 | 6 |
4 | 7 |
3 | 8 |
2 | 10 |
1 | 11 |
Not close at all - 0 | 12 |
Dont know | 13 |
How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)
1005 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C17B | How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1005 | 0.1701073 | 1 | 4 | 13 | 4.825243 | 4.032616 | ▇▃▂▁▃ | F2.0 |
name | value |
---|---|
Extremely close - 10 | 1 |
9 | 2 |
8 | 3 |
7 | 4 |
6 | 5 |
5 | 6 |
4 | 7 |
3 | 8 |
2 | 10 |
1 | 11 |
Not close at all - 0 | 12 |
Dont know | 13 |
All things considered, how happy are you with your life in general? :
98 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C18 | All things considered, how happy are you with your life in general? : | numeric | 98 | 0.9190751 | 1 | 3 | 12 | 3.373765 | 2.00326 | ▇▃▁▁▁ | F2.0 |
name | value |
---|---|
Extremely happy - 10 | 1 |
9 | 2 |
8 | 3 |
7 | 4 |
6 | 5 |
5 | 6 |
4 | 7 |
3 | 8 |
2 | 9 |
1 | 10 |
Not happy at all - 0 | 11 |
Dont know | 12 |
What was the most common emotion you remember experiencing in the last week (from today)? :
696 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C19 | What was the most common emotion you remember experiencing in the last week (from today)? : | numeric | 696 | 0.4252684 | 1 | 14 | 33 | 13.87961 | 9.001355 | ▇▅▇▃▂ | F2.0 |
We would now like to ask you about some emotions that are often described as ‘positive’ emotions.What was the most common positive emotion that you remember experiencing in the last week (from today)? :
680 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C20 | We would now like to ask you about some emotions that are often described as ‘positive’ emotions.What was the most common positive emotion that you remember experiencing in the last week (from today)? : | numeric | 680 | 0.4384806 | 1 | 7 | 15 | 7.248588 | 3.923607 | ▅▆▇▅▃ | F2.0 |
name | value |
---|---|
Confident | 1 |
Enthusiastic | 2 |
Proud | 3 |
Caring and sympathetic | 4 |
Calm and peaceful | 5 |
Energetic | 6 |
Happy | 7 |
Interested and/or absorbed | 8 |
Agreeable and receptive | 9 |
Assertive and empowered | 10 |
Love for others | 11 |
Loved by others | 12 |
Hope | 13 |
Enjoyment and fun | 14 |
Other (Please describe): | 15 |
Can you remember the last time that you experienced this positive emotion?Thinking back to that occasion, what was the main thing you were doing? :
150 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C21 | Can you remember the last time that you experienced this positive emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 150 | 0.8761354 | 1 | 4 | 14 | 4.976437 | 3.909882 | ▇▇▁▁▃ | F2.0 |
name | value |
---|---|
Paid work | 1 |
Care for children, adults, pets | 2 |
Unpaid work (housework, garden etc) | 3 |
Free time and leisure | 4 |
Travel | 5 |
Sports/Exercise | 6 |
Personal care | 7 |
Sleep | 8 |
Watching media (TV, DVD, Online content) | 9 |
Listening to music | 10 |
Engaged with social media (interacting, posting) | 11 |
Educational activities | 12 |
Dont know/can’t remember | 13 |
Other: please record | 14 |
Thinking about the last time that you experienced this positive emotion, where were you and who were you with? :
123 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C22 | Thinking about the last time that you experienced this positive emotion, where were you and who were you with? : | numeric | 123 | 0.898431 | 1 | 5 | 15 | 6.638787 | 4.849439 | ▇▆▂▂▅ | F2.0 |
name | value |
---|---|
At home - Alone | 1 |
At home - Just with partner | 2 |
At home - Just with children | 3 |
At home - Just with partner and kids | 4 |
At home - Any other mix people (friends, family, partners, kids, etc) | 5 |
At work - Alone | 6 |
At work - Just with colleagues | 7 |
At work - Just with boss | 8 |
At work - Just with clients | 9 |
At work - Any other mix people (boss, clients, colleagues etc) | 10 |
Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction) | 11 |
Elsewhere (neither home nor work) - Just with partner and kids | 12 |
Elsewhere (neither home nor work) - Just with friends | 13 |
Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc) | 14 |
Don’t know/can’t remember | 15 |
Thinking about the last time you experienced this positive emotion, did you have to work to make yourself feel that way, or did you just feel that way naturally? Or was it a bit of both? :
107 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C23 | Thinking about the last time you experienced this positive emotion, did you have to work to make yourself feel that way, or did you just feel that way naturally? Or was it a bit of both? : | numeric | 107 | 0.9116433 | 1 | 2 | 4 | 2.283514 | 0.6008908 | ▁▇▁▃▁ | F1.0 |
name | value |
---|---|
Worked to make myself feel that way | 1 |
Just felt that way naturally | 2 |
Bit of both | 3 |
Dont know/can’t remember | 4 |
We would now like to ask you about some emotions that are often described as ‘negative’ emotions.What was the most common negative emotion that you remember experiencing in the last week (from today)? :
667 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C24 | We would now like to ask you about some emotions that are often described as ‘negative’ emotions.What was the most common negative emotion that you remember experiencing in the last week (from today)? : | numeric | 667 | 0.4492155 | 1 | 4 | 19 | 6.926471 | 5.63125 | ▇▃▁▁▂ | F2.0 |
name | value |
---|---|
Sad | 1 |
Anxious | 2 |
Disgusted | 3 |
Tired | 4 |
Stressed | 5 |
Bored and distracted | 6 |
Awkward | 7 |
Depressed | 8 |
Lonely | 9 |
Angry | 10 |
Ashamed | 11 |
Guilty | 12 |
Jealous (of other’s relationships) | 13 |
Envious (of other’s things/ abilities/ lives) | 14 |
Embarrassed | 15 |
Afraid | 16 |
Hopeless | 17 |
Frustrated | 18 |
Other (Please describe): | 19 |
Can you remember the last time that you experienced this negative emotion?Thinking back to that occasion, what was the main thing you were doing? :
160 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C25 | Can you remember the last time that you experienced this negative emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 160 | 0.8678778 | 1 | 3 | 14 | 5.308278 | 4.765563 | ▇▂▁▁▃ | F2.0 |
name | value |
---|---|
Paid work | 1 |
Care for children, adults, pets | 2 |
Unpaid work (housework, garden etc) | 3 |
Free time and leisure | 4 |
Travel | 5 |
Sports/Exercise | 6 |
Personal care | 7 |
Sleep | 8 |
Watching media (TV, DVD, Online content) | 9 |
Listening to music | 10 |
Engaged with social media (interacting, posting) | 11 |
Educational activities | 12 |
Dont know/can’t remember | 13 |
Other: please record | 14 |
Thinking about the last time that you experienced this negative emotion, where were you and who were you with? :
142 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C26 | Thinking about the last time that you experienced this negative emotion, where were you and who were you with? : | numeric | 142 | 0.8827415 | 1 | 5 | 15 | 5.993452 | 4.614234 | ▇▃▃▂▃ | F2.0 |
name | value |
---|---|
At home - Alone | 1 |
At home - Just with partner | 2 |
At home - Just with children | 3 |
At home - Just with partner and kids | 4 |
At home - Any other mix people (friends, family, partners, kids, etc) | 5 |
At work - Alone | 6 |
At work - Just with colleagues | 7 |
At work - Just with boss | 8 |
At work - Just with clients | 9 |
At work - Any other mix people (boss, clients, colleagues etc) | 10 |
Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction) | 11 |
Elsewhere (neither home nor work) - Just with partner and kids | 12 |
Elsewhere (neither home nor work) - Just with friends | 13 |
Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc) | 14 |
Don’t know/can’t remember | 15 |
Thinking about the last time you experienced this negative emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi
139 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C27 | Thinking about the last time you experienced this negative emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi | numeric | 139 | 0.8852188 | 1 | 3 | 6 | 3.018657 | 1.765852 | ▇▃▂▅▂ | F1.0 |
name | value |
---|---|
Just showed the feeling | 1 |
Tried to hide the feeling, but didnt succeed | 2 |
Tried to hide the feeling, and succeeded | 3 |
Tried to change the feeling into something else, didnt manage it | 4 |
Tried to change the feeling into something else, and succeeded | 5 |
Dont know/can’t remember | 6 |
I would now like to ask you about a few specific emotions that are less common, but might have come up in your life in the last week.Which one of the following emotions from the list below was the most common (if any) that you remember experiencing i
122 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C28 | I would now like to ask you about a few specific emotions that are less common, but might have come up in your life in the last week.Which one of the following emotions from the list below was the most common (if any) that you remember experiencing i | numeric | 122 | 0.8992568 | 1 | 7 | 9 | 5.37741 | 3.130419 | ▅▁▁▂▇ | F1.0 |
name | value |
---|---|
Angry | 1 |
Ashamed | 2 |
Guilty | 3 |
Jealous (of other’s relationships) | 4 |
Envious (of other’s things/ abilities/ lives) | 5 |
Embarrassed | 6 |
Afraid | 7 |
None – didnt experience any of these last week | 8 |
Dont know/can’t say | 9 |
Can you remember the last time that you experienced this specific emotion?Thinking back to that occasion, what was the main thing you were doing? :
256 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C29 | Can you remember the last time that you experienced this specific emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 256 | 0.7886045 | 1 | 6 | 14 | 7.313089 | 5.144188 | ▇▃▁▂▇ | F2.0 |
name | value |
---|---|
Paid work | 1 |
Care for children, adults, pets | 2 |
Unpaid work (housework, garden etc) | 3 |
Free time and leisure | 4 |
Travel | 5 |
Sports/Exercise | 6 |
Personal care | 7 |
Sleep | 8 |
Watching media (TV, DVD, Online content) | 9 |
Listening to music | 10 |
Engaged with social media (interacting, posting) | 11 |
Educational activities | 12 |
Dont know/can’t remember | 13 |
Other: please record | 14 |
Thinking about the last time that you experienced this specfic emotion, where were you and who were you with? :
249 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C30 | Thinking about the last time that you experienced this specfic emotion, where were you and who were you with? : | numeric | 249 | 0.7943848 | 1 | 7 | 15 | 7.952183 | 5.598591 | ▇▃▂▂▇ | F2.0 |
name | value |
---|---|
At home - Alone | 1 |
At home - Just with partner | 2 |
At home - Just with children | 3 |
At home - Just with partner and kids | 4 |
At home - Any other mix people (friends, family, partners, kids, etc) | 5 |
At work - Alone | 6 |
At work - Just with colleagues | 7 |
At work - Just with boss | 8 |
At work - Just with clients | 9 |
At work - Any other mix people (boss, clients, colleagues etc) | 10 |
Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction) | 11 |
Elsewhere (neither home nor work) - Just with partner and kids | 12 |
Elsewhere (neither home nor work) - Just with friends | 13 |
Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc) | 14 |
Don’t know/can’t remember | 15 |
Thinking about the last time you experienced this specific emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi
246 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C31 | Thinking about the last time you experienced this specific emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi | numeric | 246 | 0.7968621 | 1 | 3 | 6 | 3.55544 | 1.982361 | ▇▃▁▃▆ | F1.0 |
name | value |
---|---|
Just showed the feeling | 1 |
Tried to hide the feeling, but didnt succeed | 2 |
Tried to hide the feeling, and succeeded | 3 |
Tried to change the feeling into something else, didnt manage it | 4 |
Tried to change the feeling into something else, and succeeded | 5 |
Dont know/can’t remember | 6 |
In those times when you feel an emotion that you don’t like and want to change it into something else, what is the most common thing you can do that typically works to help you change how you feel? :
692 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
C32 | In those times when you feel an emotion that you don’t like and want to change it into something else, what is the most common thing you can do that typically works to help you change how you feel? : | numeric | 692 | 0.4285714 | 1 | 5 | 16 | 7.942196 | 4.978771 | ▇▇▂▅▅ | F2.0 |
name | value |
---|---|
Deep breathing | 1 |
Exercise or sports | 2 |
Meditation | 3 |
Prayer | 4 |
Positive thoughts | 5 |
Medication/natural remedy (over counter) | 6 |
Medication (prescription) | 7 |
Coffee | 8 |
Eat food | 9 |
Drink alcohol | 10 |
Smoke cigarette | 11 |
Use other substance | 12 |
Talk to a friend/family about problem | 13 |
Can’t do anything – nothing really works | 14 |
Dont know/can’t remember | 15 |
Other | 16 |
On a scale of zero-to-ten, with zero being no effect and ten being a large effect, to what extent do you think the learning experiences a child has in their first three years of life affects how well they will do at school? :
75 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
D1 | On a scale of zero-to-ten, with zero being no effect and ten being a large effect, to what extent do you think the learning experiences a child has in their first three years of life affects how well they will do at school? : | numeric | 75 | 0.9380677 | 0 | 8 | 10 | 7.509683 | 2.521781 | ▁▁▃▆▇ | F2.0 |
name | value |
---|---|
No effect - 0 | 0 |
1 | 1 |
2 | 2 |
3 | 3 |
4 | 4 |
Medium effect - 5 | 5 |
6 | 6 |
7 | 7 |
8 | 8 |
9 | 9 |
Large effect - 10 | 10 |
In Australia today most children attend some type of regular child care before they start school. Given this reality… A. What do you think is the best type of child care for childrenbirth – 2 years? :
74 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
D2 | In Australia today most children attend some type of regular child care before they start school. Given this reality… A. What do you think is the best type of child care for childrenbirth – 2 years? : | numeric | 74 | 0.9388935 | 1 | 3 | 5 | 2.751099 | 1.254766 | ▃▂▇▁▂ | F1.0 |
name | value |
---|---|
Family day care (home-based child care in the carers home) | 1 |
Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year) | 2 |
Child’s extended family (eg., grandparent) | 3 |
Nanny | 4 |
Not sure | 5 |
B. What do you think is the best type of child care for children 3 – 5 years? :
77 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
D3 | B. What do you think is the best type of child care for children 3 – 5 years? : | numeric | 77 | 0.9364162 | 1 | 4 | 6 | 3.430335 | 1.324625 | ▃▂▇▁▂ | F1.0 |
name | value |
---|---|
Family day care (home-based child care in the carers home) | 1 |
Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year) | 2 |
Child’s extended family (eg., grandparent) | 3 |
Preschool / kindergarten (centre-based child care that usually operates between 9am - 3pm during school terms) | 4 |
Nanny | 5 |
Not sure | 6 |
In all countries, there are differences or even conflicts between different social groups. In your opinion, in Australia how much conflict is there between older people and younger people? :
58 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E1 | In all countries, there are differences or even conflicts between different social groups. In your opinion, in Australia how much conflict is there between older people and younger people? : | numeric | 58 | 0.9521057 | 1 | 3 | 5 | 3.039029 | 0.8128972 | ▁▂▇▂▁ | F1.0 |
name | value |
---|---|
Very strong conflicts | 1 |
Strong conflicts | 2 |
Not very strong conflicts | 3 |
No conflicts | 4 |
Can’t choose | 5 |
Do you think older workers (those aged 50 years and older) are treated by employers better, worse or about the same as younger workers? :
65 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E2 | Do you think older workers (those aged 50 years and older) are treated by employers better, worse or about the same as younger workers? : | numeric | 65 | 0.9463254 | 1 | 2 | 3 | 2.136126 | 0.5566308 | ▁▁▇▁▃ | F1.0 |
name | value |
---|---|
Better | 1 |
About the same | 2 |
Worse | 3 |
Do you think older workers (those 50 years and older) on average contribute more or less to the workplace than younger workers? :
61 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E3 | Do you think older workers (those 50 years and older) on average contribute more or less to the workplace than younger workers? : | numeric | 61 | 0.9496284 | 1 | 1 | 3 | 1.897391 | 0.973939 | ▇▁▁▁▆ | F1.0 |
name | value |
---|---|
More | 1 |
Less | 2 |
The same | 3 |
Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : doctors, nurses or other health care professionals?
67 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E4A | Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : doctors, nurses or other health care professionals? | numeric | 67 | 0.9446738 | 1 | 3 | 3 | 2.375874 | 0.8615304 | ▃▁▂▁▇ | F1.0 |
name | value |
---|---|
Treated better | 1 |
Worse | 2 |
About the same | 3 |
Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : people they don’t know such as people in shops, on buses or in other public areas?
95 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E4B | Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : people they don’t know such as people in shops, on buses or in other public areas? | numeric | 95 | 0.9215524 | 1 | 2 | 3 | 2.286738 | 0.7624857 | ▃▁▆▁▇ | F1.0 |
name | value |
---|---|
Treated better | 1 |
Worse | 2 |
About the same | 3 |
Do you feel that people over 65 years get too much, too little, or about the right amount of respect from younger people these days? :
56 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E5 | Do you feel that people over 65 years get too much, too little, or about the right amount of respect from younger people these days? : | numeric | 56 | 0.9537572 | 1 | 2 | 4 | 2.446753 | 0.6887782 | ▁▇▁▃▂ | F1.0 |
name | value |
---|---|
Too much | 1 |
Too little | 2 |
Right amount | 3 |
Don’t know | 4 |
How much influence do you think retired older Australians have? :
71 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E6 | How much influence do you think retired older Australians have? : | numeric | 71 | 0.9413708 | 1 | 2 | 3 | 2.370175 | 0.5713268 | ▁▁▇▁▆ | F1.0 |
name | value |
---|---|
Too much | 1 |
Too little | 2 |
About the right amount | 3 |
Right now, do you think older people are getting more than their fair share, less than their fair share, or about their fair share of government benefits? :
70 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E7 | Right now, do you think older people are getting more than their fair share, less than their fair share, or about their fair share of government benefits? : | numeric | 70 | 0.9421965 | 1 | 2 | 3 | 2.333918 | 0.5726036 | ▁▁▇▁▆ | F1.0 |
name | value |
---|---|
More than their fair share | 1 |
Less than their fair share | 2 |
About their fair share | 3 |
Each generation has different social and economic opportunities over their lives. How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for younger people today? :
71 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E8 | Each generation has different social and economic opportunities over their lives. How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for younger people today? : | numeric | 71 | 0.9413708 | 1 | 2 | 3 | 1.820175 | 0.8547425 | ▇▁▅▁▅ | F1.0 |
name | value |
---|---|
Better for baby boomers | 1 |
About the same | 2 |
Better for younger people | 3 |
How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for older people who have already retired? :
73 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E9 | How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for older people who have already retired? : | numeric | 73 | 0.9397192 | 1 | 2 | 3 | 1.684534 | 0.7465828 | ▇▁▆▁▃ | F1.0 |
name | value |
---|---|
Better for baby boomers | 1 |
About the same | 2 |
Better for the already retired people | 3 |
The Australian Government is gradually raising the eligibility age for the pension to 67 years by 2023. Do you: :
55 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E10 | The Australian Government is gradually raising the eligibility age for the pension to 67 years by 2023. Do you: : | numeric | 55 | 0.954583 | 1 | 2 | 3 | 1.818339 | 0.6378069 | ▅▁▇▁▂ | F1.0 |
name | value |
---|---|
Support raising the pension age to 67 years | 1 |
Oppose raising the pension age to 67 years | 2 |
Don’t know or are not sure | 3 |
How often, in the past year… : has anyone shown prejudice against you or treated you unfairly because of your age?
63 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E11A | How often, in the past year… : has anyone shown prejudice against you or treated you unfairly because of your age? | numeric | 63 | 0.9479769 | 1 | 1 | 8 | 2.124564 | 1.919293 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Never 0 | 1 |
1 | 2 |
2 | 3 |
3 | 4 |
Very often 4 | 5 |
Dont know | 8 |
How often, in the past year… : have you felt that someone showed you a lack of respect because of your age, for instance by ignoring or patronising you?
63 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E11B | How often, in the past year… : have you felt that someone showed you a lack of respect because of your age, for instance by ignoring or patronising you? | numeric | 63 | 0.9479769 | 1 | 1 | 8 | 2.163763 | 1.694448 | ▇▂▂▁▁ | F1.0 |
name | value |
---|---|
Never 0 | 1 |
1 | 2 |
2 | 3 |
3 | 4 |
Very often 4 | 5 |
Dont know | 8 |
How often, in the past year… : has someone treated you badly because of your age, for example by insulting you or refusing you services?
69 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E11C | How often, in the past year… : has someone treated you badly because of your age, for example by insulting you or refusing you services? | numeric | 69 | 0.9430223 | 1 | 1 | 8 | 1.604203 | 1.456076 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Never 0 | 1 |
1 | 2 |
2 | 3 |
3 | 4 |
Very often 4 | 5 |
Dont know | 8 |
Thinking about everything you see and hear in the media (TV, online, radio, newspapers, magazines), do you think older adults (aged 65 years and older) are treated better, worse or about the same as younger people? :
67 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E12 | Thinking about everything you see and hear in the media (TV, online, radio, newspapers, magazines), do you think older adults (aged 65 years and older) are treated better, worse or about the same as younger people? : | numeric | 67 | 0.9446738 | 1 | 2 | 3 | 2.388112 | 0.6314022 | ▂▁▇▁▇ | F1.0 |
name | value |
---|---|
Better | 1 |
Worse | 2 |
About the same as younger people | 3 |
How much do you agree or disagree that… : The media portrays older people in diverse ways?
77 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E13A | How much do you agree or disagree that… : The media portrays older people in diverse ways? | numeric | 77 | 0.9364162 | 1 | 3 | 5 | 2.751323 | 0.8264563 | ▁▆▇▃▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neutral | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree that… : There are generally as many positive stories in the media about ageing as there are negative stories?
74 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E13B | How much do you agree or disagree that… : There are generally as many positive stories in the media about ageing as there are negative stories? | numeric | 74 | 0.9388935 | 1 | 3 | 5 | 3.014072 | 0.8770222 | ▁▆▇▆▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neutral | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How much do you agree or disagree that… : There are enough older role models portrayed in the media?
78 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E13C | How much do you agree or disagree that… : There are enough older role models portrayed in the media? | numeric | 78 | 0.9355904 | 1 | 3 | 5 | 3.145631 | 0.9019859 | ▁▆▇▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neutral | 3 |
Disagree | 4 |
Strongly disagree | 5 |
How common or uncommon do you feel age discrimination is in Australia? :
63 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E14 | How common or uncommon do you feel age discrimination is in Australia? : | numeric | 63 | 0.9479769 | 1 | 3 | 5 | 3.291812 | 0.9343036 | ▁▃▇▇▁ | F1.0 |
name | value |
---|---|
Very uncommon | 1 |
Uncommon | 2 |
Neither uncommon nor common | 3 |
Common | 4 |
Very common | 5 |
Because of your age, have you ever been… : Turned down for a position
120 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15A | Because of your age, have you ever been… : Turned down for a position | numeric | 120 | 0.9009083 | 1 | 2 | 2 | 1.793767 | 0.4047852 | ▂▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Ignored
129 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15B | Because of your age, have you ever been… : Ignored | numeric | 129 | 0.8934765 | 1 | 2 | 2 | 1.713494 | 0.4523379 | ▃▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Treated with disrespect
131 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15C | Because of your age, have you ever been… : Treated with disrespect | numeric | 131 | 0.8918249 | 1 | 2 | 2 | 1.712963 | 0.4525886 | ▃▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Subjected to jokes
130 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15D | Because of your age, have you ever been… : Subjected to jokes | numeric | 130 | 0.8926507 | 1 | 2 | 2 | 1.742831 | 0.4372758 | ▃▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Verbally insulted
135 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15E | Because of your age, have you ever been… : Verbally insulted | numeric | 135 | 0.8885219 | 1 | 2 | 2 | 1.876394 | 0.3292845 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Refused service/had difficulty making a purchase
131 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15F | Because of your age, have you ever been… : Refused service/had difficulty making a purchase | numeric | 131 | 0.8918249 | 1 | 2 | 2 | 1.887963 | 0.3155581 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Denied access to service/products
138 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15G | Because of your age, have you ever been… : Denied access to service/products | numeric | 138 | 0.8860446 | 1 | 2 | 2 | 1.924511 | 0.2643024 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Refused promotion
154 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15H | Because of your age, have you ever been… : Refused promotion | numeric | 154 | 0.8728324 | 1 | 2 | 2 | 1.892148 | 0.3103408 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Discriminated against in some other way
126 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15I | Because of your age, have you ever been… : Discriminated against in some other way | numeric | 126 | 0.8959538 | 1 | 2 | 2 | 1.84977 | 0.3574619 | ▂▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Because of your age, have you ever been… : Physically abused
131 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E15J | Because of your age, have you ever been… : Physically abused | numeric | 131 | 0.8918249 | 1 | 2 | 2 | 1.97963 | 0.1413291 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : At greater risk of being made redundant
65 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16A | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : At greater risk of being made redundant | numeric | 65 | 0.9463254 | 1 | 2 | 5 | 1.970332 | 0.7689335 | ▃▇▂▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to be promoted
72 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16B | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to be promoted | numeric | 72 | 0.940545 | 1 | 2 | 5 | 2.211589 | 0.8352972 | ▂▇▃▁▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More likely to have difficultly adapting to change
73 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16C | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More likely to have difficultly adapting to change | numeric | 73 | 0.9397192 | 1 | 2 | 5 | 2.502636 | 0.946452 | ▂▇▃▃▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Difficult to teach new things
78 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16D | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Difficult to teach new things | numeric | 78 | 0.9355904 | 1 | 3 | 5 | 3.042365 | 0.9649175 | ▁▇▆▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Not in the role as long
97 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16E | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Not in the role as long | numeric | 97 | 0.9199009 | 1 | 3 | 5 | 3.140036 | 0.8563249 | ▁▅▇▆▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to have the same technical skills
75 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16F | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to have the same technical skills | numeric | 75 | 0.9380677 | 1 | 3 | 5 | 3.049296 | 0.9894774 | ▁▇▆▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More expensive
76 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16G | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More expensive | numeric | 76 | 0.9372419 | 1 | 3 | 5 | 3.244053 | 0.8984591 | ▁▃▇▇▁ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less willing to work overtime
74 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16H | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less willing to work overtime | numeric | 74 | 0.9388935 | 1 | 4 | 5 | 3.444151 | 0.9413728 | ▁▂▅▇▂ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less productive
71 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
E16I | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less productive | numeric | 71 | 0.9413708 | 1 | 4 | 5 | 3.850877 | 0.8182773 | ▁▁▃▇▃ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Netural | 3 |
Disagree | 4 |
Strongly disagree | 5 |
You may have heard about the idea that the world’s temperature may have been going up over the past 100 years, a phenomenon sometimes called ‘global warming’. What is your personal opinion regarding whether or not this has been happening? :
56 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
F1 | You may have heard about the idea that the world’s temperature may have been going up over the past 100 years, a phenomenon sometimes called ‘global warming’. What is your personal opinion regarding whether or not this has been happening? : | numeric | 56 | 0.9537572 | 1 | 6 | 7 | 5.450216 | 1.775504 | ▁▁▁▂▇ | F1.0 |
name | value |
---|---|
Definitely has not been happening | 1 |
Probably has not been happening | 2 |
Unsure, but leaning toward it has not been happening | 3 |
Not sure either way | 4 |
Unsure, but leaning toward it has been happening | 5 |
Probably has been happening | 6 |
Definitely has been happening | 7 |
How serious a threat do you think global warming will pose to you or your way of life in your lifetime? :
54 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
F2 | How serious a threat do you think global warming will pose to you or your way of life in your lifetime? : | numeric | 54 | 0.9554088 | 1 | 3 | 4 | 2.50994 | 0.9389384 | ▃▇▁▇▃ | F1.0 |
name | value |
---|---|
Very serious | 1 |
Fairly serious | 2 |
Not very serious | 3 |
Not at all serious | 4 |
Please choose a statement from the following list that is closest to your own views on climate change. :
63 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
F3 | Please choose a statement from the following list that is closest to your own views on climate change. : | numeric | 63 | 0.9479769 | 1 | 1 | 4 | 1.671603 | 1.095761 | ▇▂▁▁▂ | F1.0 |
name | value |
---|---|
Climate change is happening now and is mainly caused by human activities | 1 |
Climate change is happening now but is not caused by humans | 2 |
Climate change is not happening now | 3 |
I dont know whether climate change is happening or not | 4 |
We would like to know what you think about the proposal to create an emissions trading scheme in order to reduce greenhouse gas emissions. Both Labor Party leader Bill Shorten and Liberal Party Minister Malcolm Turnbull have favoured this approach. D
95 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
F4 | We would like to know what you think about the proposal to create an emissions trading scheme in order to reduce greenhouse gas emissions. Both Labor Party leader Bill Shorten and Liberal Party Minister Malcolm Turnbull have favoured this approach. D | numeric | 95 | 0.9215524 | 1 | 1 | 2 | 1.287634 | 0.4528627 | ▇▁▁▁▃ | F1.0 |
name | value |
---|---|
Support the proposal | 1 |
Oppose the proposal | 2 |
Australias Renewable Energy Target sets a goal for the amount of power that will be supplied through solar, wind, and other renewable resources by the year 2020.Labor Party leader Bill Shorten has supported keeping this target at its current leve
101 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
F5 | Australias Renewable Energy Target sets a goal for the amount of power that will be supplied through solar, wind, and other renewable resources by the year 2020.Labor Party leader Bill Shorten has supported keeping this target at its current leve | numeric | 101 | 0.9165979 | 1 | 1 | 2 | 1.20991 | 0.4074276 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
Keep the Renewable Energy Target at its current level | 1 |
Reduce the Renewable Energy Target | 2 |
Over the past decade, some Aboriginal leaders have proposed new approaches to Aboriginal policy. For example, they have suggested that Aboriginal schools should become more mainstream, that the same laws should apply to both Aboriginal and non-Abo
79 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
G1 | Over the past decade, some Aboriginal leaders have proposed new approaches to Aboriginal policy. For example, they have suggested that Aboriginal schools should become more mainstream, that the same laws should apply to both Aboriginal and non-Abo | numeric | 79 | 0.9347647 | 1 | 3 | 4 | 2.738516 | 1.130949 | ▅▆▁▅▇ | F1.0 |
name | value |
---|---|
I am aware of these proposals and they make me feel more accepting of Aboriginal claims for government support. | 1 |
I am aware of these proposals but I already accept Aboriginal claims for government support. | 2 |
I am aware of these proposals, but they do not make me feel more accepting of Aboriginal claims for government support. | 3 |
No, I am not aware of these proposals. | 4 |
Thinking about your main place of residence, which of the following best describes the type of insurance cover that you or someone who lives with you has purchased? The residence is currently covered by… :
56 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
H1 | Thinking about your main place of residence, which of the following best describes the type of insurance cover that you or someone who lives with you has purchased? The residence is currently covered by… : | numeric | 56 | 0.9537572 | 1 | 1 | 5 | 1.500433 | 1.087486 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
House and contents insurance | 1 |
Contents insurance only | 2 |
House insurance only | 3 |
Neither house nor contents insurance | 4 |
Unsure | 5 |
If a natural disaster (e.g. bushfire, cyclone, major storm or flood) strikes your place of residence, how confident are you that your insurance will adequately cover repairs and/or replacement of losses? :
163 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
H2 | If a natural disaster (e.g. bushfire, cyclone, major storm or flood) strikes your place of residence, how confident are you that your insurance will adequately cover repairs and/or replacement of losses? : | numeric | 163 | 0.8654005 | 1 | 2 | 5 | 2.054389 | 0.9332548 | ▅▇▃▁▁ | F1.0 |
name | value |
---|---|
Very confident | 1 |
Somewhat confident | 2 |
Unsure | 3 |
Somewhat unconfident | 4 |
Very unconfident | 5 |
How likely is your place of residence to be struck by a natural disaster (e.g. bushfire, cyclone, major storm or flood)? :
57 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
H3 | How likely is your place of residence to be struck by a natural disaster (e.g. bushfire, cyclone, major storm or flood)? : | numeric | 57 | 0.9529315 | 1 | 4 | 5 | 3.532062 | 1.171841 | ▁▅▃▇▅ | F1.0 |
name | value |
---|---|
Very likely | 1 |
Somewhat likely | 2 |
Unsure | 3 |
Somewhat unlikely | 4 |
Very unlikely | 5 |
Are you … :
56 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I1 | Are you … : | numeric | 56 | 0.9537572 | 1 | 2 | 2 | 1.532468 | 0.4991609 | ▇▁▁▁▇ | F1.0 |
name | value |
---|---|
Male | 1 |
Female | 2 |
When were you born? : Year (YYYY)
86 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I2 | When were you born? : Year (YYYY) | numeric | 86 | 0.9289843 | 192 | 1959 | 1997 | 1958.881 | 54.8808 | ▁▁▁▁▇ | F4.0 |
What is the highest year of schooling you have completed? :
61 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I5 | What is the highest year of schooling you have completed? : | numeric | 61 | 0.9496284 | 1 | 1 | 6 | 1.708696 | 0.9888029 | ▇▃▁▁▁ | F1.0 |
name | value |
---|---|
Year 12 or equivalent | 1 |
Year 11 or equivalent | 2 |
Year 10 or equivalent | 3 |
Completed primary school | 4 |
Completed pre-primary school | 5 |
Did not go to school | 6 |
What is the highest educational qualification you have completed outside of school? :
102 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I6 | What is the highest educational qualification you have completed outside of school? : | numeric | 102 | 0.9157721 | 1 | 8 | 13 | 8.325518 | 3.496451 | ▂▂▇▃▇ | F2.0 |
name | value |
---|---|
Doctorate by research | 1 |
Doctorate by coursework | 2 |
Masters Degree | 3 |
Graduate Diploma | 4 |
Graduate Certificate | 5 |
Bachelor Degree | 6 |
Advanced Diploma or Associate Degree | 7 |
Diploma | 8 |
Certificate IV | 9 |
Certificate III | 10 |
Certificate II | 11 |
Certificate I | 12 |
No post-school qualification | 13 |
Are you currently working for pay, did you work for pay in the past, or have you never been in paid work? :
50 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I7 | Are you currently working for pay, did you work for pay in the past, or have you never been in paid work? : | numeric | 50 | 0.9587118 | 1 | 1 | 3 | 1.390181 | 0.518825 | ▇▁▅▁▁ | F1.0 |
name | value |
---|---|
I am currently in paid work | 1 |
I am currently not in paid work but I had paid work in the past | 2 |
I have never had paid work | 3 |
Code for group: ANZSCO2013v1.2 Level: 0
2 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I13ANZSCO1 | Code for group: ANZSCO2013v1.2 Level: 0 | numeric | 2 | 0.9983485 | 0 | 3 | 8 | 3.121588 | 2.160207 | ▆▇▂▆▂ | F2.0 |
name | value |
---|---|
Operational codes (Aus) | 0 |
Managers | 1 |
Professionals | 2 |
Technicians and Trades Workers | 3 |
Community and Personal Service Workers | 4 |
Clerical and Administrative Workers | 5 |
Sales Workers | 6 |
Machinery Operators and Drivers | 7 |
Labourers | 8 |
Operational codes (NZ) | 9 |
Code for group: ANZSIC Level: 0
1 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I15ANZSIC1 | Code for group: ANZSIC Level: 0 | numeric | 1 | 0.9991742 | 1 | 15 | 21 | 12.52149 | 6.017341 | ▅▃▃▇▅ | F2.0 |
name | value |
---|---|
Agriculture, Forestry and Fishing | 1 |
Mining | 2 |
Manufacturing | 3 |
Electricity, Gas, Water and Waste Services | 4 |
Construction | 5 |
Wholesale Trade | 6 |
Retail Trade | 7 |
Accommodation and Food Services | 8 |
Transport, Postal and Warehousing | 9 |
Information Media and Telecommunications | 10 |
Financial and Insurance Services | 11 |
Rental, Hiring and Real Estate Services | 12 |
Professional, Scientific and Technical Services | 13 |
Administrative and Support Services | 14 |
Public Administration and Safety | 15 |
Education and Training | 16 |
Health Care and Social Assistance | 17 |
Arts and Recreation Services | 18 |
Other Services | 19 |
Blank | 20 |
Not codeable | 21 |
Which of the following best describes your current situation? :
80 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I16 | Which of the following best describes your current situation? : | numeric | 80 | 0.9339389 | 1 | 1 | 9 | 2.824934 | 2.467369 | ▇▁▁▃▁ | F1.0 |
name | value |
---|---|
In paid work (as an employee, self-employed, or working for your own family’s business) | 1 |
Unemployed and looking for a job | 2 |
In education (not paid for by employer), in school/student/pupil even if on vacation | 3 |
Apprentice or trainee | 4 |
Permanently sick or disabled | 5 |
Retired | 6 |
Doing housework, looking after the home, children or other persons | 7 |
Other | 9 |
Do you have a spouse or a partner and, if yes, do you share the same household? :
57 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I17 | Do you have a spouse or a partner and, if yes, do you share the same household? : | numeric | 57 | 0.9529315 | 1 | 1 | 3 | 1.531196 | 0.8623255 | ▇▁▁▁▃ | F1.0 |
name | value |
---|---|
Yes, I have a spouse/partner and we share the same household | 1 |
Yes, I have a spouse/partner but we don’t share the same household | 2 |
No, I don’t have a spouse/partner | 3 |
Which of the following best describes your spouses/partners current situation? :
372 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I25 | Which of the following best describes your spouses/partners current situation? : | numeric | 372 | 0.6928159 | 1 | 1 | 8 | 2.984505 | 2.497922 | ▇▁▁▃▁ | F1.0 |
name | value |
---|---|
In paid work (as an employee, self-employed, or working for his/her own family’s business) | 1 |
Unemployed and looking for a job | 2 |
In education (not paid for by employer), in school/student/pupil even if on vacation | 3 |
Apprentice or trainee | 4 |
Permanently sick or disabled | 5 |
Retired | 6 |
Doing housework, looking after the home, children or other persons | 7 |
Other | 8 |
Are you or have you ever been a member of a trade union or similar organisation? If yes: is that currently or only previously? :
43 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I26 | Are you or have you ever been a member of a trade union or similar organisation? If yes: is that currently or only previously? : | numeric | 43 | 0.9644922 | 1 | 2 | 3 | 2.251712 | 0.7370688 | ▃▁▇▁▇ | F1.0 |
name | value |
---|---|
Yes, currently | 1 |
Yes, previously but not currently | 2 |
No, never | 3 |
Joining a union would benefit me personally. :
248 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I27 | Joining a union would benefit me personally. : | numeric | 248 | 0.7952106 | 1 | 4 | 5 | 3.505711 | 1.151117 | ▁▅▇▇▆ | F1.0 |
name | value |
---|---|
Strongly agree | 1 |
Agree | 2 |
Neither agree nor disagree | 3 |
Disagree | 4 |
Strongly disagree | 5 |
In your present job, have you ever been asked to join a union? :
345 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I28 | In your present job, have you ever been asked to join a union? : | numeric | 345 | 0.7151115 | 1 | 2 | 2 | 1.765589 | 0.423875 | ▂▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Which best describes you? :
145 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I29 | Which best describes you? : | numeric | 145 | 0.8802642 | 1 | 4 | 5 | 3.499062 | 1.29154 | ▂▁▁▇▂ | F1.0 |
name | value |
---|---|
I belong to a union and would prefer to stay in one | 1 |
I belong to a union but would prefer not to | 2 |
I do not belong to a union but would prefer to join one | 3 |
I do not belong to a union and would prefer not to | 4 |
Can’t choose | 5 |
Do you belong to a religion and, if yes, which religion do you belong to? :
54 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I30 | Do you belong to a religion and, if yes, which religion do you belong to? : | numeric | 54 | 0.9554088 | 1 | 2 | 14 | 3.259291 | 3.077462 | ▇▃▁▁▁ | F2.0 |
name | value |
---|---|
No religion | 1 |
Catholic | 2 |
Protestant | 3 |
Anglican/Church of England | 4 |
Uniting Church/Methodist | 5 |
Pentecostal | 6 |
Orthodox | 7 |
Other Christian | 8 |
Jewish | 9 |
Islamic | 10 |
Buddhist | 11 |
Hindu | 12 |
Other Asian religions | 13 |
Other religions - Please specify | 14 |
Apart from such special occasions as weddings, funerals, etc., how often do you attend religious services? :
53 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I31 | Apart from such special occasions as weddings, funerals, etc., how often do you attend religious services? : | numeric | 53 | 0.9562345 | 1 | 7 | 8 | 6.277202 | 2.143515 | ▂▁▂▁▇ | F1.0 |
name | value |
---|---|
Several times a week or more often | 1 |
Once a week | 2 |
2 or 3 times a month | 3 |
Once a month | 4 |
Several times a year | 5 |
Once a year | 6 |
Less frequently than once a year | 7 |
Never | 8 |
In our society, there are groups which tend to be towards the top and groups which tend to be towards the bottom.Below is a scale that runs from the top to the bottom.Where would you put yourself on this scale? :
140 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I32 | In our society, there are groups which tend to be towards the top and groups which tend to be towards the bottom.Below is a scale that runs from the top to the bottom.Where would you put yourself on this scale? : | numeric | 140 | 0.8843931 | 1 | 5 | 10 | 4.663865 | 1.639179 | ▁▇▇▂▁ | F2.0 |
name | value |
---|---|
Top - 10 | 1 |
9 | 2 |
8 | 3 |
7 | 4 |
6 | 5 |
5 | 6 |
4 | 7 |
3 | 8 |
2 | 9 |
Bottom - 1 | 10 |
Do you usually think of yourself as close to any particular political party and, if yes, which party is that? :
72 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I33 | Do you usually think of yourself as close to any particular political party and, if yes, which party is that? : | numeric | 72 | 0.940545 | 1 | 3 | 9 | 4.591747 | 3.087642 | ▇▁▂▁▇ | F1.0 |
name | value |
---|---|
Labor Party (ALP) | 1 |
Liberal Party | 2 |
National (Country) Party | 3 |
Greens | 5 |
No party affiliation | 8 |
Other party (please specify) | 9 |
Did you vote in Australias federal election in September 2013? :
48 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I34 | Did you vote in Australias federal election in September 2013? : | numeric | 48 | 0.9603633 | 1 | 1 | 3 | 1.05589 | 0.2924276 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Yes, I did vote | 1 |
No, I did not vote | 2 |
I was not eligible to vote in the last election | 3 |
Thinking back to the last general election in September 2013 - Which party did you vote for? :
185 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I35 | Thinking back to the last general election in September 2013 - Which party did you vote for? : | numeric | 185 | 0.8472337 | 1 | 2 | 9 | 2.402534 | 1.885698 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Labor Party (ALP) | 1 |
Liberal Party | 2 |
National (Country) Party | 3 |
Greens | 5 |
Other party (please specify) | 9 |
Did you vote early at the 2013 federal election? :
99 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I36 | Did you vote early at the 2013 federal election? : | numeric | 99 | 0.9182494 | 1 | 3 | 3 | 2.476619 | 0.8407875 | ▂▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes, I voted at an early voting centre | 1 |
Yes, I submitted a postal vote | 2 |
No, I voted on election day | 3 |
What was the main reason you cast your vote early? :
882 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I37 | What was the main reason you cast your vote early? : | numeric | 882 | 0.2716763 | 2 | 10 | 12 | 8.343465 | 3.774993 | ▅▂▂▂▇ | F2.0 |
name | value |
---|---|
I work on Saturdays and it was easier for me to vote during the week | 2 |
I was travelling interstate | 3 |
I was travelling overseas | 4 |
For health reasons | 5 |
I saw advertising telling me that I could vote early | 6 |
I saw an early voting centre near my place of work / home and dropped in to vote | 7 |
I wanted to avoid long queues at election day polling places | 8 |
I think that people should be permitted to vote whenever they like | 9 |
I might not have been able to vote if my only option was to vote on election day | 10 |
Another reason | 11 |
For convenience – it was easier for me to choose when to vote rather than vote on Saturday | 12 |
What country were you born in? :
50 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I38 | What country were you born in? : | numeric | 50 | 0.9587118 | 1 | 1 | 2 | 1.223083 | 0.4164933 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
Australia | 1 |
Overseas - Please specify country | 2 |
Code for group: SACC Level: 0
0 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I38SACC1 | Code for group: SACC Level: 0 | numeric | 0 | 1 | 0 | 1 | 9 | 1.510322 | 1.599747 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Error | 0 |
Oceania and Antarctica | 1 |
North-west Europe | 2 |
Southern and eastern Europe | 3 |
North Africa and the Middle East | 4 |
South-east Asia | 5 |
North-east Asia | 6 |
Southern and central Asia | 7 |
Americas | 8 |
Sub-Saharan Africa | 9 |
What country was your mother born in? :
57 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I39 | What country was your mother born in? : | numeric | 57 | 0.9529315 | 1 | 1 | 2 | 1.32669 | 0.4692061 | ▇▁▁▁▃ | F1.0 |
name | value |
---|---|
Australia | 1 |
Overseas - Please specify country | 2 |
Code for group: SACC Level: 0
0 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I39SACC1 | Code for group: SACC Level: 0 | numeric | 0 | 1 | 0 | 1 | 9 | 1.630058 | 1.602752 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Error | 0 |
Oceania and Antarctica | 1 |
North-west Europe | 2 |
Southern and eastern Europe | 3 |
North Africa and the Middle East | 4 |
South-east Asia | 5 |
North-east Asia | 6 |
Southern and central Asia | 7 |
Americas | 8 |
Sub-Saharan Africa | 9 |
And what country was your father born in? :
75 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I40 | And what country was your father born in? : | numeric | 75 | 0.9380677 | 1 | 1 | 2 | 1.370599 | 0.4831778 | ▇▁▁▁▅ | F1.0 |
name | value |
---|---|
Australia | 1 |
Overseas - Please specify country | 2 |
Code for group: SACC Level: 0
0 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I40SACC1 | Code for group: SACC Level: 0 | numeric | 0 | 1 | 0 | 1 | 9 | 1.650702 | 1.649254 | ▇▂▁▁▁ | F1.0 |
name | value |
---|---|
Error | 0 |
Oceania and Antarctica | 1 |
North-west Europe | 2 |
Southern and eastern Europe | 3 |
North Africa and the Middle East | 4 |
South-east Asia | 5 |
North-east Asia | 6 |
Southern and central Asia | 7 |
Americas | 8 |
Sub-Saharan Africa | 9 |
Do you identify yourself as Aboriginal or Torres Strait Islander? :
66 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I42 | Do you identify yourself as Aboriginal or Torres Strait Islander? : | numeric | 66 | 0.9454996 | 1 | 2 | 2 | 1.975546 | 0.1545218 | ▁▁▁▁▇ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Is there at least one telephone inside your home that is currently working and is not a mobile phone? :
67 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I45 | Is there at least one telephone inside your home that is currently working and is not a mobile phone? : | numeric | 67 | 0.9446738 | 1 | 1 | 3 | 1.236014 | 0.4268711 | ▇▁▂▁▁ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Dont know | 3 |
How many people in your household, including yourself, have a currently working mobile phone?
107 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I46 | How many people in your household, including yourself, have a currently working mobile phone? | numeric | 107 | 0.9116433 | 1 | 2 | 9 | 2.298913 | 1.125554 | ▇▃▁▁▁ | F2.0 |
In your home, do you have a computer (such as a PC, laptop or iPad) that is connected to the Internet? :
71 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I47 | In your home, do you have a computer (such as a PC, laptop or iPad) that is connected to the Internet? : | numeric | 71 | 0.9413708 | 1 | 1 | 3 | 1.077193 | 0.2735116 | ▇▁▁▁▁ | F1.0 |
name | value |
---|---|
Yes | 1 |
No | 2 |
Dont know | 3 |
Before taxes and other deductions, what on average is your own total monthly income? : $
401 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I48 | Before taxes and other deductions, what on average is your own total monthly income? : $ | numeric | 401 | 0.6688687 | 3 | 4000 | 3e+05 | 8723.841 | 21562.21 | ▇▁▁▁▁ | F7.0 |
Before taxes and other deductions, what on average is the total monthly income of your household? : $
428 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I49 | Before taxes and other deductions, what on average is the total monthly income of your household? : $ | numeric | 428 | 0.6465731 | 3 | 6720 | 2540000 | 13745.38 | 92091.47 | ▇▁▁▁▁ | F7.0 |
What is your current legal marital status? :
83 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I50 | What is your current legal marital status? : | numeric | 83 | 0.9314616 | 1 | 1 | 5 | 2.12766 | 1.614491 | ▇▁▁▁▂ | F1.0 |
name | value |
---|---|
Married | 1 |
Separated from my spouse but still legally married | 2 |
Divorced from spouse | 3 |
Widowed | 4 |
I have never been married | 5 |
Would you describe the place where you live as … :
69 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I51 | Would you describe the place where you live as … : | numeric | 69 | 0.9430223 | 1 | 2 | 5 | 2.463222 | 1.06492 | ▃▇▅▂▁ | F1.0 |
name | value |
---|---|
A big city | 1 |
The suburbs or outskirts of a big city | 2 |
A town or a small city | 3 |
A country village | 4 |
A farm or home in the country | 5 |
Do you own outright, are you buying or renting the dwelling in which you now live? :
81 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I52 | Do you own outright, are you buying or renting the dwelling in which you now live? : | numeric | 81 | 0.9331131 | 1 | 2 | 5 | 1.899115 | 1.062485 | ▇▆▂▁▁ | F1.0 |
name | value |
---|---|
Own outright | 1 |
Own, paying off mortgage | 2 |
Rent from private landlord | 3 |
Rent from public housing authority | 4 |
Other (boarding, living at home, etc) | 5 |
In general, would you say your health is… :
27 missing values.
name | label | data_type | n_missing | complete_rate | min | median | max | mean | sd | hist | format.spss |
---|---|---|---|---|---|---|---|---|---|---|---|
I53 | In general, would you say your health is… : | numeric | 27 | 0.9777044 | 1 | 2 | 6 | 2.581926 | 1.03614 | ▇▅▂▁▁ | F1.0 |
name | value |
---|---|
Excellent | 1 |
Very good | 2 |
Good | 3 |
Fair | 4 |
Poor | 5 |
Cant choose | 6 |
Booklet used (A or B)
0 missing values.
name | label | data_type | n_missing | complete_rate | n_unique | empty | min | max | whitespace | format.spss | display_width |
---|---|---|---|---|---|---|---|---|---|---|---|
split | Booklet used (A or B) | character | 0 | 1 | 2 | 0 | 1 | 1 | 0 | A1 | 1 |
name | label | data_type | value_labels | n_missing | complete_rate | n_unique | empty | min | median | max | mean | sd | whitespace | hist | format.spss | display_width |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A1A | Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : A job is just a way of earning money - no more | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
136 | 0.8876961 | NA | NA | 1 | 4.0 | 6 | 3.734884 | 1.159304e+00 | NA | ▃▂▇▅▁ | F1.0 | NA |
A1B | Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : I would enjoy having a paid job even if I did not need the money | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
81 | 0.9331131 | NA | NA | 1 | 2.0 | 6 | 2.349557 | 1.040766e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A2A | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … job security | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
41 | 0.9661437 | NA | NA | 1 | 1.0 | 6 | 1.484615 | 6.935010e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A2B | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … high income | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
52 | 0.9570603 | NA | NA | 1 | 2.0 | 6 | 2.343399 | 8.182541e-01 | NA | ▇▃▁▁▁ | F1.0 | NA |
A2C | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … good opportunities for advancement | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
50 | 0.9587118 | NA | NA | 1 | 2.0 | 6 | 2.095607 | 8.572146e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A2D | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … an interesting job | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
47 | 0.9611891 | NA | NA | 1 | 1.0 | 6 | 1.560137 | 6.704616e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A2E | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to work independently | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
48 | 0.9603633 | NA | NA | 1 | 2.0 | 6 | 2.161651 | 8.610973e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A2F | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to help other people | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
46 | 0.9620149 | NA | NA | 1 | 2.0 | 6 | 2.116738 | 9.006124e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A2G | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that is useful to society | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
46 | 0.9620149 | NA | NA | 1 | 2.0 | 6 | 2.058369 | 9.034256e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A2H | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that allows someone to decide their times or days of work | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
47 | 0.9611891 | NA | NA | 1 | 2.0 | 6 | 2.560138 | 9.675697e-01 | NA | ▇▅▂▁▁ | F1.0 | NA |
A2I | For each of the following, please cross one box to show how important you personally think it is in a job. How important is… : … a job that involves personal contact with other people | numeric | 1. Very important, 2. Important, 3. Neither important nor unimportant, 4. Not important, 5. Not important at all, 6. Cant choose |
49 | 0.9595376 | NA | NA | 1 | 2.0 | 6 | 2.238382 | 9.965350e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A3 | Have you ever given up or would you give up good job opportunities for the benefit of your family life? : | numeric | 1. Yes, I have done so and probably would do so again, 2. Yes, I have done so but probably would not do so again, 3. No, I have not done so but probably would do so, 4. No, I have not done so and probably would not do so, 5. Cant choose |
40 | 0.9669694 | NA | NA | 1 | 2.0 | 5 | 2.148591 | 1.214635e+00 | NA | ▇▁▆▁▁ | F1.0 | NA |
A4 | Have you ever remained or would you remain in a job that was not satisfying for you for the benefit of your family life? : | numeric | 1. Yes, I have done so and probably would do so again, 2. Yes, I have done so but probably would not do so again, 3. No, I have not done so but probably would do so, 4. No, I have not done so and probably would not do so, 5. Cant choose |
44 | 0.9636664 | NA | NA | 1 | 2.0 | 5 | 2.272494 | 1.213612e+00 | NA | ▇▃▆▃▁ | F1.0 | NA |
A5 | Over the past five years, have you been discriminated against with regard to work, for instance when applying for a job, or when being considered for a pay increase or promotion? : | numeric | 0. Did not work or did not seek work, 1. Yes, 2. No |
46 | 0.9620149 | NA | NA | 0 | 2.0 | 2 | 1.468670 | 7.655077e-01 | NA | ▂▁▂▁▇ | F1.0 | NA |
A6 | In your opinion, what was the main reason for the discrimination? : | numeric | 1. My age, 2. My race, ethnicity, 3. My nationality, 4. My sex, 5. My religion, 6. My disability/ mental or physical illness, 7. My family responsibilities, 8. My political beliefs, 9. Other reason, 10. Cant choose |
972 | 0.1973576 | NA | NA | 1 | 4.0 | 10 | 4.631799 | 3.460217e+00 | NA | ▇▂▂▂▆ | F2.0 | NA |
A7 | Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse? : | numeric | 0. Does not apply (I do not have a job/ superior/ co-worker), 1. Yes, 2. No |
46 | 0.9620149 | NA | NA | 0 | 2.0 | 2 | 1.368240 | 7.782618e-01 | NA | ▃▁▃▁▇ | F1.0 | NA |
A8A | To what extent do you agree or disagree with the following statements? : Workers need strong trade unions to protect their interests. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
52 | 0.9570603 | NA | NA | 1 | 3.0 | 6 | 2.817084 | 1.263689e+00 | NA | ▇▅▃▂▁ | F1.0 | NA |
A8B | To what extent do you agree or disagree with the following statements? : Strong trade unions are bad for Australias economy. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
107 | 0.9116433 | NA | NA | 1 | 3.0 | 6 | 3.256341 | 1.285407e+00 | NA | ▆▇▆▃▁ | F1.0 | NA |
A9 | Suppose you could decide on your work situation at present. Which of the following would you prefer? : | numeric | 1. A full-time job (35 hours or more per week), 2. A part-time job (10-34 hours per week), 3. A job with less than 10 hours a week, 4. No paid job at all, 5. Cant choose |
64 | 0.9471511 | NA | NA | 1 | 2.0 | 5 | 2.028771 | 1.130279e+00 | NA | ▇▇▂▂▁ | F1.0 | NA |
A10 | Are you currently working for pay? : | numeric | 1. Yes, 2. No |
56 | 0.9537572 | NA | NA | 1 | 1.0 | 2 | 1.376623 | 4.847491e-01 | NA | ▇▁▁▁▅ | F1.0 | NA |
A11 | Think of the number of hours you work, and the money you earn in your main job, including any regular overtime. If you had only one of these three choices, which of the following would you prefer? : | numeric | 1. Work longer hours and earn more money, 2. Work the same number of hours and earn the same money, 3. Work fewer hours and earn less money, 4. Can’t choose |
453 | 0.6259290 | NA | NA | 1 | 2.0 | 4 | 2.030343 | 7.898816e-01 | NA | ▃▇▁▂▁ | F1.0 | NA |
A12A | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is secure | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
460 | 0.6201486 | NA | NA | 1 | 2.0 | 6 | 2.472703 | 1.181632e+00 | NA | ▇▂▂▁▁ | F1.0 | NA |
A12B | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My income is high | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
461 | 0.6193229 | NA | NA | 1 | 3.0 | 6 | 3.188000 | 1.115788e+00 | NA | ▇▅▇▂▁ | F1.0 | NA |
A12C | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My opportunities for advancement are high | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
464 | 0.6168456 | NA | NA | 1 | 3.0 | 6 | 3.408300 | 1.060166e+00 | NA | ▅▇▇▂▁ | F1.0 | NA |
A12D | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is interesting | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
461 | 0.6193229 | NA | NA | 1 | 2.0 | 6 | 2.142667 | 9.761746e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A12E | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : I can work independently | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
461 | 0.6193229 | NA | NA | 1 | 2.0 | 6 | 1.965333 | 9.549944e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A12F | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job I can help other people | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
462 | 0.6184971 | NA | NA | 1 | 2.0 | 6 | 1.991989 | 9.618053e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A12G | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is useful to society | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
462 | 0.6184971 | NA | NA | 1 | 2.0 | 6 | 2.109479 | 1.037417e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A12H | For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job, I have personal contact with other people | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
463 | 0.6176713 | NA | NA | 1 | 2.0 | 6 | 1.639037 | 7.970327e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A13A | Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you have to do hard physical work? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
455 | 0.6242775 | NA | NA | 1 | 4.0 | 6 | 3.541005 | 1.302941e+00 | NA | ▆▆▆▇▁ | F1.0 | NA |
A13B | Now some more questions about your working conditions. Please cross one box for each item below to show how often it applies to your work. How often… : … do you find your work stressful? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
457 | 0.6226259 | NA | NA | 1 | 3.0 | 6 | 2.757294 | 9.618105e-01 | NA | ▆▇▂▁▁ | F1.0 | NA |
A14A | And how often… : … do you work at home during your usual working hours? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
464 | 0.6168456 | NA | NA | 1 | 4.0 | 6 | 3.942436 | 1.214592e+00 | NA | ▂▃▃▇▁ | F1.0 | NA |
A14B | And how often… : .…does your job involve working on weekends? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
464 | 0.6168456 | NA | NA | 1 | 3.0 | 6 | 3.160643 | 1.354529e+00 | NA | ▇▇▅▆▁ | F1.0 | NA |
A15 | Which of the following statements best describes how your working hours are decided? (By working hours we mean here the times you start and finish work, and not the total hours you work per week or month.) : | numeric | 1. Starting and finishing times are decided by my employer and I cannot change them on my own, 2. I can decide the time I start and finish work, within certain limits, 3. I am entirely free to decide when I start and finish work |
462 | 0.6184971 | NA | NA | 1 | 2.0 | 3 | 1.676902 | 6.680349e-01 | NA | ▇▁▇▁▂ | F1.0 | NA |
A16 | Which of the following statements best describes your usual working schedule in your main job? : | numeric | 1. I have a regular schedule or shift (daytime, evening, or night), 2. I have a schedule or shift which regularly changes (for example, from days to evenings or to nights), 3. I have a schedule where daily working times are decided at short notice by my employer, 4. Can’t choose |
465 | 0.6160198 | NA | NA | 1 | 1.0 | 4 | 1.459785 | 9.013737e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A17 | Which of the following statements best describes how your daily work is organised? : | numeric | 1. I am free to decide how my daily work is organised, 2. I can decide how my daily work is organised, within certain limits, 3. I am not free to decide how my daily work is organised, 4. Can’t choose |
459 | 0.6209744 | NA | NA | 1 | 2.0 | 4 | 1.909574 | 7.387425e-01 | NA | ▅▇▁▃▁ | F1.0 | NA |
A18 | How difficult would it be for you to take an hour or two off during working hours, to take care of personal or family matters? : | numeric | 1. Not difficult at all, 2. Not too difficult, 3. Somewhat difficult, 4. Very difficult, 5. Can’t choose |
448 | 0.6300578 | NA | NA | 1 | 2.0 | 5 | 2.011795 | 1.059202e+00 | NA | ▇▆▃▂▁ | F1.0 | NA |
A19A | How often do you feel that… : …the demands of your job interfere with your family life? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
449 | 0.6292320 | NA | NA | 1 | 3.0 | 6 | 3.282152 | 1.076775e+00 | NA | ▅▇▅▃▁ | F1.0 | NA |
A19B | How often do you feel that… : …the demands of your family life interfere with your job? | numeric | 1. Always, 2. Often, 3. Sometimes, 4. Hardly ever, 5. Never, 6. Can’t choose |
468 | 0.6135425 | NA | NA | 1 | 4.0 | 6 | 3.873486 | 9.171235e-01 | NA | ▁▆▇▆▁ | F1.0 | NA |
A20 | How much of your past work experience and/ or job skills can you make use of in your present job? : | numeric | 1. Almost none, 2. A little, 3. A lot, 4. Almost all, 5. Can’t choose |
447 | 0.6308836 | NA | NA | 1 | 3.0 | 5 | 3.209424 | 9.554233e-01 | NA | ▁▃▆▇▁ | F1.0 | NA |
A21 | Over the past 12 months, have you had any training to improve your job skills, either at the workplace or somewhere else? : | numeric | 1. Yes, 2. No, 3. Can’t choose |
448 | 0.6300578 | NA | NA | 1 | 1.0 | 3 | 1.479685 | 5.329499e-01 | NA | ▇▁▆▁▁ | F1.0 | NA |
A22A | In general, how would you describe relations at your workplace… : … between management and employees? | numeric | 1. Very good, 2. Quite good, 3. Neither good nor bad, 4. Quite bad, 5. Very bad, 6. Can’t choose |
453 | 0.6259290 | NA | NA | 1 | 2.0 | 6 | 2.279683 | 1.195935e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A22B | In general, how would you describe relations at your workplace… : … between workmates/ colleagues? | numeric | 1. Very good, 2. Quite good, 3. Neither good nor bad, 4. Quite bad, 5. Very bad, 6. Can’t choose |
455 | 0.6242775 | NA | NA | 1 | 2.0 | 6 | 1.940476 | 1.071189e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
A23 | How satisfied are you in your (main) job? : | numeric | 1. Completely satisfied, 2. Very satisfied, 3. Fairly satisfied, 4. Neither satisfied nor dissatisfied, 5. Fairly dissatisfied, 6. Very dissatisfied, 7. Completely dissatisfied, 8. Can’t choose |
449 | 0.6292320 | NA | NA | 1 | 3.0 | 8 | 2.849081 | 1.292678e+00 | NA | ▇▇▃▁▁ | F1.0 | NA |
A24A | To what extent do you agree or disagree with each of the following statements? : I am willing to work harder than I have to in order to help the firm or organisation I work for succeed. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
451 | 0.6275805 | NA | NA | 1 | 2.0 | 6 | 2.389474 | 1.064900e+00 | NA | ▇▃▁▁▁ | F1.0 | NA |
A24B | To what extent do you agree or disagree with each of the following statements? : I am proud to be working for my firm or organisation. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
454 | 0.6251032 | NA | NA | 1 | 2.0 | 6 | 2.262880 | 9.831160e-01 | NA | ▇▃▁▁▁ | F1.0 | NA |
A24C | To what extent do you agree or disagree with each of the following statements? : I would turn down another job that offered quite a bit more pay in order to stay with this organisation. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
458 | 0.6218002 | NA | NA | 1 | 4.0 | 6 | 3.494024 | 1.273828e+00 | NA | ▆▇▇▅▂ | F1.0 | NA |
A25A | Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : Given the chance, I would change my present type of work for something diffe | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
452 | 0.6267547 | NA | NA | 1 | 3.0 | 6 | 3.047431 | 1.248901e+00 | NA | ▇▅▅▂▁ | F1.0 | NA |
A25B | Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : I am proud of the type of work I do. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
451 | 0.6275805 | NA | NA | 1 | 2.0 | 6 | 1.973684 | 8.616203e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
A26 | How difficult or easy do you think it would be for you to find a job at least as good as your current one? : | numeric | 1. Very easy, 2. Fairly easy, 3. Neither easy nor difficult, 4. Fairly difficult, 5. Very difficult, 6. Can’t choose |
448 | 0.6300578 | NA | NA | 1 | 4.0 | 6 | 3.625164 | 1.174308e+00 | NA | ▅▅▇▅▁ | F1.0 | NA |
A27 | All in all, how likely is it that you will try to find a job with another firm or organisation within the next 12 months? : | numeric | 1. Very likely, 2. Likely, 3. Unlikely, 4. Very unlikely, 5. Can’t choose |
429 | 0.6457473 | NA | NA | 1 | 3.0 | 5 | 3.034527 | 1.102940e+00 | NA | ▃▃▆▇▁ | F1.0 | NA |
A28 | To what extent, if at all, do you worry about the possibility of losing your job? : | numeric | 1. I worry a great deal, 2. I worry to some extent, 3. I worry a little, 4. I don’t worry at all |
436 | 0.6399670 | NA | NA | 1 | 3.0 | 4 | 3.083871 | 9.574598e-01 | NA | ▂▃▁▆▇ | F1.0 | NA |
A29A | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a job that requires new skills. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
451 | 0.6275805 | NA | NA | 1 | 2.0 | 6 | 1.938158 | 9.140201e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A29B | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept a position with lower pay. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
449 | 0.6292320 | NA | NA | 1 | 2.0 | 6 | 2.757218 | 1.178032e+00 | NA | ▇▃▃▁▁ | F1.0 | NA |
A29C | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to accept temporary employment. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
449 | 0.6292320 | NA | NA | 1 | 2.0 | 6 | 2.312336 | 1.087296e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A29D | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to travel longer to get to work. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
452 | 0.6267547 | NA | NA | 1 | 2.0 | 6 | 2.752306 | 1.204342e+00 | NA | ▇▂▃▁▁ | F1.0 | NA |
A29E | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move within Australia. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
454 | 0.6251032 | NA | NA | 1 | 4.0 | 6 | 3.639366 | 1.237929e+00 | NA | ▆▃▇▆▁ | F1.0 | NA |
A29F | To what extent do you agree or disagree with the following statements? In order to avoid unemployment I would be willing … : to move to a different country. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Cant choose |
454 | 0.6251032 | NA | NA | 1 | 4.0 | 6 | 3.986790 | 1.201778e+00 | NA | ▃▂▅▇▁ | F1.0 | NA |
A30 | Over the past 12 months, in addition to your main job, have you done any other work for pay? : | numeric | 1. Yes, during all of that period, 2. Yes, during most of that period, 3. Yes, during some of that period, 4. No |
430 | 0.6449216 | NA | NA | 1 | 4.0 | 4 | 3.640205 | 8.179850e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
A31 | Over the entire 12 months, how much did you earn from your additional job(s) in total compared with your main job? From my additional job(s), I earned… : | numeric | 1. much less than from main job, 2. less than from main job, 3. about the same as from main job, 4. more than from main job, 5. much more than from main job, 6. Can’t choose |
1018 | 0.1593724 | NA | NA | 1 | 1.0 | 6 | 2.419689 | 1.883322e+00 | NA | ▇▁▁▁▂ | F1.0 | NA |
A32 | Have you ever had a paid job for one year or more? : | numeric | 1. Yes, 2. No |
707 | 0.4161850 | NA | NA | 1 | 1.0 | 2 | 1.176587 | 3.816979e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
A33A | When did your last paid job end? : Year (YYYY) | numeric | NA | 821 | 0.3220479 | NA | NA | 4 | 2007.0 | 2016 | 1994.035897 | 1.205337e+02 | NA | ▁▁▁▁▇ | F4.0 | NA |
A33B | When did your last paid job end? : Month (MM) | numeric | NA | 876 | 0.2766309 | NA | NA | 1 | 7.0 | 29 | 7.182090 | 3.562905e+00 | NA | ▆▇▁▁▁ | F2.0 | NA |
A34 | How satisfied were you in your last job? : | numeric | 1. Completely satisfied, 2. Very satisfied, 3. Fairly satisfied, 4. Neither satisfied nor dissatisfied, 5. Fairly dissatisfied, 6. Very dissatisfied, 7. Completely dissatisfied, 8. Can’t choose |
806 | 0.3344344 | NA | NA | 1 | 2.0 | 8 | 2.498765 | 1.401245e+00 | NA | ▇▃▂▁▁ | F1.0 | NA |
A35 | What was the main reason that your job ended? : | numeric | 1. I reached retirement age, 2. I retired early, by choice, 3. I retired early, not by choice, 4. I became (permanently) disabled, 5. My place of work shut down, 6. I was dismissed, 7. My term of employment/contract ended, 8. Family responsibilities, 9. I got married |
822 | 0.3212221 | NA | NA | 1 | 2.0 | 9 | 3.652956 | 2.592688e+00 | NA | ▇▂▁▂▂ | F1.0 | NA |
A36 | Would you like to have a paid job, either now or in the future? : | numeric | 1. Yes, 2. No |
774 | 0.3608588 | NA | NA | 1 | 2.0 | 2 | 1.638444 | 4.810018e-01 | NA | ▅▁▁▁▇ | F1.0 | NA |
A37 | How likely do you think it is that you would find a job? : | numeric | 1. Very likely, 2. Likely, 3. Unlikely, 4. Very unlikely, 5. Cant choose |
1016 | 0.1610239 | NA | NA | 1 | 3.0 | 5 | 2.717949 | 1.106418e+00 | NA | ▃▇▇▆▁ | F1.0 | NA |
A38 | To what extent, if at all, do you worry about the possibility of not finding a job? : | numeric | 1. I worry a great deal, 2. I worry to some extent, 3. I worry a little, 4. I don’t worry at all |
1017 | 0.1601982 | NA | NA | 1 | 3.0 | 4 | 3.000000 | 1.119771e+00 | NA | ▂▃▁▃▇ | F1.0 | NA |
A39A | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a job that requires new skills. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1034 | 0.1461602 | NA | NA | 1 | 2.0 | 6 | 2.214689 | 1.181875e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A39B | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept a position with low pay. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1035 | 0.1453344 | NA | NA | 1 | 3.0 | 6 | 3.272727 | 1.216339e+00 | NA | ▇▇▇▂▂ | F1.0 | NA |
A39C | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to accept temporary employment. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1033 | 0.1469860 | NA | NA | 1 | 2.0 | 6 | 2.269663 | 1.091974e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
A39D | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to travel a long time to get to work. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1036 | 0.1445087 | NA | NA | 1 | 4.0 | 6 | 4.034286 | 1.066184e+00 | NA | ▂▂▇▆▁ | F1.0 | NA |
A39E | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move within Australia. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1035 | 0.1453344 | NA | NA | 1 | 4.0 | 6 | 4.102273 | 1.200379e+00 | NA | ▃▂▆▇▁ | F1.0 | NA |
A39F | To what extent do you agree or disagree with the following statements? In order to get a job I would be willing… : to move to a different country. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
1035 | 0.1453344 | NA | NA | 1 | 5.0 | 6 | 4.215909 | 1.218419e+00 | NA | ▂▁▃▇▁ | F1.0 | NA |
A40A | Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a public employment agency? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1036 | 0.1445087 | NA | NA | 1 | 1.0 | 3 | 1.217143 | 5.238483e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A40B | Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a private employment agency? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1037 | 0.1436829 | NA | NA | 1 | 1.0 | 3 | 1.201149 | 5.154255e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A40C | Thinking about the past 12 months, have you done any of the following in order to find a job? : Answered advertisements for jobs? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1032 | 0.1478117 | NA | NA | 1 | 1.0 | 3 | 1.486034 | 7.596388e-01 | NA | ▇▁▂▁▂ | F1.0 | NA |
A40D | Thinking about the past 12 months, have you done any of the following in order to find a job? : Advertised yourself for a job, for example on the internet or in newspapers? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1035 | 0.1453344 | NA | NA | 1 | 1.0 | 3 | 1.142046 | 4.500721e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A40E | Thinking about the past 12 months, have you done any of the following in order to find a job? : Applied directly to employers? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1034 | 0.1461602 | NA | NA | 1 | 1.0 | 3 | 1.435028 | 7.210426e-01 | NA | ▇▁▂▁▂ | F1.0 | NA |
A40F | Thinking about the past 12 months, have you done any of the following in order to find a job? : Asked relatives, friends, or colleagues to help you find a job? | numeric | 1. No, 2. Yes, once or twice, 3. Yes, more than twice |
1032 | 0.1478117 | NA | NA | 1 | 1.0 | 3 | 1.463687 | 6.971610e-01 | NA | ▇▁▃▁▂ | F1.0 | NA |
A41 | Over the past 12 months, have you had any training to improve your job skills? : | numeric | 1. Yes, 2. No, 3. Can’t choose |
1022 | 0.1560694 | NA | NA | 1 | 2.0 | 3 | 1.724868 | 5.036733e-01 | NA | ▃▁▇▁▁ | F1.0 | NA |
A42 | Are you currently looking for a job? : | numeric | 1. Yes, 2. No |
1019 | 0.1585467 | NA | NA | 1 | 2.0 | 2 | 1.687500 | 4.647242e-01 | NA | ▃▁▁▁▇ | F1.0 | NA |
A43 | What is your main source of economic support? : | numeric | 1. Current spouse/ partner, 2. Other family members, 3. Pension (private/ state), 4. Unemployment benefits, 5. Social assistance/ welfare, 6. Occasional work, 7. Student loans/ stipends, 8. Savings, 9. Investments or rental income, 95. Other |
774 | 0.3608588 | NA | NA | 1 | 3.0 | 95 | 6.709382 | 1.681947e+01 | NA | ▇▁▁▁▁ | F2.0 | NA |
A44 | To what extent, if at all, do you worry about the possibility of losing this main economic support? : | numeric | 1. I worry a great deal, 2. I worry to some extent, 3. I worry a little, 4. I don’t worry at all |
747 | 0.3831544 | NA | NA | 1 | 3.0 | 4 | 2.814655 | 1.099833e+00 | NA | ▅▅▁▆▇ | F1.0 | NA |
A45 | Over the past five years, have you ever worked for pay? : | numeric | 1. Yes, 2. No |
717 | 0.4079273 | NA | NA | 1 | 2.0 | 2 | 1.544534 | 4.985176e-01 | NA | ▇▁▁▁▇ | F1.0 | NA |
A46A | Over the past five years, did you experience any of the following changes in your working life? : I was unemployed for a period longer than three months. | numeric | 1. No, 2. Yes, once, 3. Yes, twice, 4. Yes, three times, 5. Yes, more than three times, 6. Can’t choose |
315 | 0.7398844 | NA | NA | 1 | 1.0 | 6 | 1.440848 | 1.051131e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
A46B | Over the past five years, did you experience any of the following changes in your working life? : I changed my employer. | numeric | 1. No, 2. Yes, once, 3. Yes, twice, 4. Yes, three times, 5. Yes, more than three times, 6. Can’t choose |
314 | 0.7407102 | NA | NA | 1 | 1.0 | 6 | 1.681159 | 1.126394e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
A46C | Over the past five years, did you experience any of the following changes in your working life? : I changed my occupation. | numeric | 1. No, 2. Yes, once, 3. Yes, twice, 4. Yes, three times, 5. Yes, more than three times, 6. Can’t choose |
313 | 0.7415359 | NA | NA | 1 | 1.0 | 6 | 1.433185 | 8.924876e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A46D | Over the past five years, did you experience any of the following changes in your working life? : I started my own business/ became self-employed. | numeric | 1. No, 2. Yes, once, 3. Yes, twice, 4. Yes, three times, 5. Yes, more than three times, 6. Can’t choose |
309 | 0.7448390 | NA | NA | 1 | 1.0 | 6 | 1.212860 | 6.189128e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A46E | Over the past five years, did you experience any of the following changes in your working life? : I took up an additional job. | numeric | 1. No, 2. Yes, once, 3. Yes, twice, 4. Yes, three times, 5. Yes, more than three times, 6. Can’t choose |
322 | 0.7341040 | NA | NA | 1 | 1.0 | 6 | 1.264342 | 7.833283e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
A47 | How would you generally rate your current financial situation? My current financial situation is… : | numeric | 1. Very good, 2. Good, 3. Neither good nor bad, 4. Bad, 5. Very bad, 6. Can’t choose |
22 | 0.9818332 | NA | NA | 1 | 2.0 | 6 | 2.516400 | 9.670194e-01 | NA | ▇▆▁▁▁ | F1.0 | NA |
A48 | Compared to five years ago, how do you think your financial situation has changed? My current financial situation is… : | numeric | 1. much better than five years ago, 2. somewhat better than five years ago, 3. the same as five years ago, 4. somewhat worse than five years ago, 5. much worse than five years ago, 6. Can’t choose |
24 | 0.9801817 | NA | NA | 1 | 3.0 | 6 | 2.776748 | 1.288108e+00 | NA | ▇▅▃▂▁ | F1.0 | NA |
A49 | And what will your financial situation likely be in five years? My financial situation in five years will likely be… : | numeric | 1. much better than today, 2. somewhat better than today, 3. the same as today, 4. somewhat worse than today, 5. much worse than today, 6. Can’t choose |
24 | 0.9801817 | NA | NA | 1 | 3.0 | 6 | 2.925864 | 1.383313e+00 | NA | ▇▆▃▁▂ | F1.0 | NA |
A50A | To what extent do you agree or disagree with the following statements? : It is good for Australias economy that people aged 60 and over are employed. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
22 | 0.9818332 | NA | NA | 1 | 2.0 | 6 | 2.183347 | 1.090991e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
A50B | To what extent do you agree or disagree with the following statements? : When people aged 60 and over are employed, they take jobs away from younger people. | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree, 6. Can’t choose |
43 | 0.9644922 | NA | NA | 1 | 4.0 | 6 | 3.747431 | 1.109472e+00 | NA | ▃▃▇▅▁ | F1.0 | NA |
A51A | How much do you agree or disagree with the following statements? : Unions are active in my workplace | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
141 | 0.8835673 | NA | NA | 1 | 3.0 | 5 | 3.142056 | 1.197287e+00 | NA | ▂▇▇▇▅ | F1.0 | NA |
A51B | How much do you agree or disagree with the following statements? : My employer opposes unions in my workplace | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
164 | 0.8645747 | NA | NA | 1 | 3.0 | 5 | 3.232092 | 9.563123e-01 | NA | ▁▂▇▅▂ | F1.0 | NA |
A51C | How much do you agree or disagree with the following statements? : Unions should have a greater role in setting pay and working conditions | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
122 | 0.8992568 | NA | NA | 1 | 3.0 | 5 | 3.020202 | 1.034139e+00 | NA | ▁▅▇▃▂ | F1.0 | NA |
A51D | How much do you agree or disagree with the following statements? : When unions run public campaigns, I trust what they are saying | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
119 | 0.9017341 | NA | NA | 1 | 3.0 | 5 | 3.443223 | 1.003879e+00 | NA | ▁▂▇▅▃ | F1.0 | NA |
A51E | How much do you agree or disagree with the following statements? : These days, individuals can represent their own interests in the workplace without the help of unions | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
118 | 0.9025599 | NA | NA | 1 | 3.0 | 5 | 2.882891 | 1.023090e+00 | NA | ▂▇▇▅▂ | F1.0 | NA |
A51F | How much do you agree or disagree with the following statements? : Union corruption is a serious problem in Australia today | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
104 | 0.9141206 | NA | NA | 1 | 3.0 | 5 | 2.495935 | 1.050588e+00 | NA | ▅▅▇▂▁ | F1.0 | NA |
B1 | I feel connected with people at work (e.g. co-workers, customers, clients): : | numeric | 1. Disagree Strongly, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Agree Strongly |
331 | 0.7266722 | NA | NA | 1 | 5.0 | 6 | 4.745455 | 9.438031e-01 | NA | ▁▁▅▇▃ | F1.0 | NA |
B2 | I have caring responsibilities (e.g. at least 4 hours/week) for a friend or family member with a chronic disability or illness? : | numeric | 1. Yes, 2. No |
299 | 0.7530966 | NA | NA | 1 | 2.0 | 2 | 1.849781 | 3.574823e-01 | NA | ▂▁▁▁▇ | F1.0 | NA |
B3 | I believe my employer has a responsibility for my mental health and well-being? : | numeric | 1. Strongly Disagree, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Strongly Agree |
329 | 0.7283237 | NA | NA | 1 | 4.0 | 6 | 4.316326 | 1.269008e+00 | NA | ▃▂▇▇▃ | F1.0 | NA |
B4A | In the past 4 weeks how often have you felt: : Nervous | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
307 | 0.7464905 | NA | NA | 1 | 2.0 | 5 | 1.902655 | 9.278714e-01 | NA | ▇▆▃▁▁ | F1.0 | NA |
B4B | In the past 4 weeks how often have you felt: : Hopeless | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
314 | 0.7407102 | NA | NA | 1 | 1.0 | 5 | 1.510591 | 8.801820e-01 | NA | ▇▂▁▁▁ | F1.0 | NA |
B4C | In the past 4 weeks how often have you felt: : Restless or fidgety | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
314 | 0.7407102 | NA | NA | 1 | 2.0 | 5 | 1.857302 | 9.703959e-01 | NA | ▇▅▃▁▁ | F1.0 | NA |
B4D | In the past 4 weeks how often have you felt: : So depressed that nothing could cheer you up | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
314 | 0.7407102 | NA | NA | 1 | 1.0 | 5 | 1.376812 | 7.782175e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
B4E | In the past 4 weeks how often have you felt: : That everything was an effort | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
313 | 0.7415359 | NA | NA | 1 | 2.0 | 5 | 1.844098 | 9.724028e-01 | NA | ▇▅▃▁▁ | F1.0 | NA |
B4F | In the past 4 weeks how often have you felt: : Worthless | numeric | 1. None of the Time, 2. A Little of the Time, 3. Some of the Time, 4. Most of the Time, 5. All of the Time |
318 | 0.7374071 | NA | NA | 1 | 1.0 | 5 | 1.385218 | 8.293150e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
B5 | If you had a mental health issue (e.g. depression, anxiety), how likely would you be to tell your supervisor? : | numeric | 1. Very Unlikely, 2. Unlikely, 3. Unsure, 4. Likely, 5. Very likely |
327 | 0.7299752 | NA | NA | 1 | 3.0 | 5 | 2.857466 | 1.228226e+00 | NA | ▅▆▇▇▂ | F1.0 | NA |
B6 | How many days in the last 4 weeks did you go to work while suffering from health problems? : Days | numeric | NA | 929 | 0.2328654 | NA | NA | 0 | 4.0 | 70 | 6.982270 | 9.134603e+00 | NA | ▇▁▁▁▁ | F2.0 | NA |
B7 | On these days when you went to work suffering from health problems, what percentage of your time were you as productive as usual? | numeric | 1. 1, 2. 2, 3. 3, 4. 4, 5. 5, 6. 6, 7. 7, 8. 8, 9. 9, 10. 10, 11. 11, 12. 12, 13. 13, 14. 14, 15. 15, 16. 16, 17. 17, 18. 18, 19. 19, 20. 20, 21. 21, 22. 22, 23. 23, 24. 24, 25. 25, 26. 26, 27. 27, 28. 28, 29. 29, 30. 30, 31. 31, 32. 32, 33. 33, 34. 34, 35. 35, 36. 36, 37. 37, 38. 38, 39. 39, 40. 40, 41. 41, 42. 42, 43. 43, 44. 44, 45. 45, 46. 46, 47. 47, 48. 48, 49. 49, 50. 50, 51. 51, 52. 52, 53. 53, 54. 54, 55. 55, 56. 56, 57. 57, 58. 58, 59. 59, 60. 60, 61. 61, 62. 62, 63. 63, 64. 64, 65. 65, 66. 66, 67. 67, 68. 68, 69. 69, 70. 70, 71. 71, 72. 72, 73. 73, 74. 74, 75. 75, 76. 76, 77. 77, 78. 78, 79. 79, 80. 80, 81. 81, 82. 82, 83. 83, 84. 84, 85. 85, 86. 86, 87. 87, 88. 88, 89. 89, 90. 90, 91. 91, 92. 92, 93. 93, 94. 94, 95. 95, 96. 96, 97. 97, 98. 98, 99. 99, 100. 100 |
741 | 0.3881090 | NA | NA | 1 | 85.0 | 100 | 76.829787 | 2.663712e+01 | NA | ▁▁▂▂▇ | F3.0 | NA |
B8A | How much do you disagree or agree with the following statements? : I feel confident helping to set targets/goals in my work area | numeric | 1. Strongly Disagree, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Strongly Agree |
362 | 0.7010735 | NA | NA | 1 | 5.0 | 6 | 4.644287 | 1.094893e+00 | NA | ▁▁▃▇▃ | F1.0 | NA |
B8B | How much do you disagree or agree with the following statements? : I can think of many ways to reach my current work goals | numeric | 1. Strongly Disagree, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Strongly Agree |
368 | 0.6961189 | NA | NA | 1 | 5.0 | 6 | 4.571767 | 1.037542e+00 | NA | ▁▁▅▇▂ | F1.0 | NA |
B8C | How much do you disagree or agree with the following statements? : I can get through difficult times at work, because Ive experienced difficulty before | numeric | 1. Strongly Disagree, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Strongly Agree |
362 | 0.7010735 | NA | NA | 1 | 5.0 | 6 | 4.795053 | 1.023509e+00 | NA | ▁▁▃▇▃ | F1.0 | NA |
B8D | How much do you disagree or agree with the following statements? : I always look on the bright side of things regarding my job | numeric | 1. Strongly Disagree, 2. Disagree, 3. Somewhat Disagree, 4. Somewhat Agree, 5. Agree, 6. Strongly Agree |
358 | 0.7043765 | NA | NA | 1 | 5.0 | 6 | 4.525205 | 1.090241e+00 | NA | ▁▂▆▇▃ | F1.0 | NA |
B9A | How much do you disagree or agree with the following statements about your supervisor? : My supervisor treats me with kindness and consideration | numeric | 1. Strongly Disagree, 2. Disagree, 3. Neither Disagree or Agree, 4. Agree, 5. Strongly Agree |
383 | 0.6837325 | NA | NA | 1 | 4.0 | 5 | 3.747584 | 1.005574e+00 | NA | ▁▁▃▇▃ | F1.0 | NA |
B9B | How much do you disagree or agree with the following statements about your supervisor? : My supervisor shows concern for my rights as an employee | numeric | 1. Strongly Disagree, 2. Disagree, 3. Neither Disagree or Agree, 4. Agree, 5. Strongly Agree |
387 | 0.6804294 | NA | NA | 1 | 4.0 | 5 | 3.644417 | 1.016758e+00 | NA | ▁▂▅▇▃ | F1.0 | NA |
B9C | How much do you disagree or agree with the following statements about your supervisor? : My supervisor takes steps to deal with me in a truthful manner. | numeric | 1. Strongly Disagree, 2. Disagree, 3. Neither Disagree or Agree, 4. Agree, 5. Strongly Agree |
387 | 0.6804294 | NA | NA | 1 | 4.0 | 5 | 3.690534 | 1.025842e+00 | NA | ▁▁▅▇▃ | F1.0 | NA |
B10 | Generally speaking, – would you say that most people can be trusted or that you can’t be too careful in dealing with people? : | numeric | 1. Can be trusted, 2. Can’t be too careful |
341 | 0.7184145 | NA | NA | 1 | 1.0 | 2 | 1.435632 | 4.961247e-01 | NA | ▇▁▁▁▆ | F1.0 | NA |
B11 | Would you say that you can trust your manager(s) a lot, some, only a little or not at all? : | numeric | 1. Trust them a lot, 2. Trust them some, 3. Trust them only a little, 4. Trust them not at all, 5. Does not apply |
365 | 0.6985962 | NA | NA | 1 | 2.0 | 5 | 2.203310 | 1.168132e+00 | NA | ▆▇▃▁▂ | F1.0 | NA |
B12 | I feel extremely frustrated by how I have been treated by my organisation : | numeric | 1. Strongly Disagree, 2. Disagree, 3. Neither Disagree or Agree, 4. Agree, 5. Strongly Agree |
364 | 0.6994220 | NA | NA | 1 | 2.0 | 5 | 2.406139 | 1.166053e+00 | NA | ▇▇▆▃▁ | F1.0 | NA |
C1 | Have you trained/retrained for a particular occupation in the last five years? : | numeric | 1. No, 2. Yes, in: Please write the name or title the occupation |
98 | 0.9190751 | NA | NA | 1 | 1.0 | 2 | 1.178796 | 3.833537e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
C2 | Are you seeking paid work currently or will you be seeking paid work in the next five years? [NOTE- this need not be the occupation for which you have trained] : | numeric | 1. Currently seeking paid work, 2. Intend to seek paid work in the next five years, 3. Not seeking paid work now or in the next five years |
125 | 0.8967795 | NA | NA | 1 | 3.0 | 3 | 2.583794 | 6.774000e-01 | NA | ▁▁▂▁▇ | F1.0 | NA |
C4 | Are you currently working in an internship? : | numeric | 1. Yes, paid internship, 2. Yes, unpaid internship, 3. No |
82 | 0.9322874 | NA | NA | 1 | 3.0 | 3 | 2.986714 | 1.482783e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
C5 | How many internships (either paid or unpaid) have you completed in the last five years? | numeric | NA | 1176 | 0.0289017 | NA | NA | 0 | 1.0 | 7 | 1.771429 | 1.646489e+00 | NA | ▇▁▂▁▁ | F2.0 | NA |
C6 | How many of the people you know have helped you find paid work in the last five years? : | numeric | 1. None, 2. 1 or more? Please record the approximate number of people: |
171 | 0.8587944 | NA | NA | 1 | 1.0 | 2 | 1.189423 | 3.920328e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
C7 | How many of the people you know could you call on to help you find paid work within the next five years? : | numeric | 1. None, 2. 1 or more? Please record the approximate number of people: |
207 | 0.8290669 | NA | NA | 1 | 1.0 | 2 | 1.442231 | 4.968991e-01 | NA | ▇▁▁▁▆ | F1.0 | NA |
C8SB | We would now like to ask some questions about your closest friendDoes this friend regularly give you support in your life, and if so, what is the main type of support that they give you? : | numeric | 1. Does not regularly give me support, 2. Someone to confide in, emotional/positive support, 3. Advice and information, 4. Fun and good times, 5. Training or assistance with skills, 6. Favours - transport, repairs, lifting, errands, borrowing things, 7. Financial support, 8. Childcare, 9. Dont know, 10. Other: please record |
682 | 0.4368291 | NA | NA | 1 | 2.0 | 10 | 3.213611 | 2.184164e+00 | NA | ▇▅▁▁▁ | F2.0 | NA |
C8A | We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either | numeric | 1. Full time paid work (35+ hours/week) in the occupation for which I most recently trained, 2. Full time paid work (35+ hours/week) in another occupation, 3. Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained, 4. Part time paid work (less than 35 hours/week) in another occupation, 5. Dont know/not applicable (e.g. retired, disability, full time carer, etc) |
1028 | 0.1511148 | NA | NA | 1 | 4.0 | 5 | 3.311475 | 1.666156e+00 | NA | ▆▁▃▂▇ | F1.0 | NA |
C8B | We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either | numeric | 1. Full time paid work (35+ hours/week) in the occupation for which I most recently trained, 2. Full time paid work (35+ hours/week) in another occupation, 3. Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained, 4. Part time paid work (less than 35 hours/week) in another occupation, 5. Dont know/not applicable (e.g. retired, disability, full time carer, etc) |
954 | 0.2122213 | NA | NA | 1 | 3.0 | 5 | 2.980545 | 1.611607e+00 | NA | ▇▂▆▂▇ | F1.0 | NA |
C9SB | Do you regularly give this friend support in their life, and if so, what is the main type of support that you give them? : | numeric | 1. Do not regularly give support, 2. Someone to confide in, emotional/positive support, 3. Advice and information, 4. Fun and good times, 5. Training or assistance with skills, 6. Favours - transport, repairs, lifting, errands, borrowing things, 7. Financial support, 8. Childcare, 9. Dont know, 10. Other: please record |
679 | 0.4393064 | NA | NA | 1 | 2.0 | 10 | 3.150376 | 2.097425e+00 | NA | ▇▅▁▁▁ | F2.0 | NA |
C9A | Did/could they help or support you in finding a permanent or a contract job? : If helped you in last five years: OR | numeric | 1. Permanent paid work, 2. Contracted paid work |
1103 | 0.0891825 | NA | NA | 1 | 1.0 | 2 | 1.398148 | 4.917984e-01 | NA | ▇▁▁▁▅ | F1.0 | NA |
C9B | Did/could they help or support you in finding a permanent or a contract job? : Most likely help you in future | numeric | 1. Permanent paid work, 2. Contracted paid work |
960 | 0.2072667 | NA | NA | 1 | 1.0 | 2 | 1.155379 | 3.629889e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
C10SB | Did this friend help or support you in finding paid work in the last five years, and if so, what was the main way in which they helped/supported you? : | numeric | 1. Did not help or support me in finding paid work in the last five years, 2. Told me about the work or vacancy, 3. Referred or recommended me to someone that they personally knew who then employed me, 4. Got or gave me work directly, 5. Gave me emotional/positive support in applying for the work, 6. Gave or helped me with training for the work, 7. Helped me with tasks relevant to getting the work (such as preparing a CV etc), 8. Helped me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 9. Helped me with transport to the job interview or in commencing the work, 10. Helped me with childcare during the job interview or commencing the work, 11. Dont know/not applicable (e.g. retired, disability, full time carer, etc), 12. Other: please record |
687 | 0.4327002 | NA | NA | 1 | 1.0 | 12 | 2.994275 | 3.556424e+00 | NA | ▇▁▁▁▂ | F2.0 | NA |
C10A | How many months and/or years was the contract for? : Months | numeric | NA | 1165 | 0.0379851 | NA | NA | 1 | 6.0 | 21 | 7.108696 | 4.624708e+00 | NA | ▆▇▅▁▁ | F2.0 | NA |
C10B | How many months and/or years was the contract for? : Years | numeric | NA | 1182 | 0.0239472 | NA | NA | 1 | 2.0 | 15 | 4.000000 | 4.183300e+00 | NA | ▇▃▁▁▁ | F2.0 | NA |
C11SB | Did you help or support this friend to find paid work in the last five years, and if so, what was the main way in which you helped/supported them? : | numeric | 1. Did not help or support them in finding paid work in the last five years, 2. Told them about the work or vacancy, 3. Referred or recommended them to someone that I personally knew who then employed them, 4. Got or gave them work directly, 5. Gave or helped them with training for the work, 6. Helped them with tasks relevant to getting the work (such as preparing a CV etc), 7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 8. Helped them with transport to the job interview or in commencing the work, 9. Helped them with childcare during the job interview or commencing the work, 10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc), 12. Other: please record |
690 | 0.4302230 | NA | NA | 1 | 1.0 | 12 | 2.992323 | 3.509868e+00 | NA | ▇▁▁▁▂ | F2.0 | NA |
C11A | What was/would be the main form of help or support that they gave/would give you to find paid work? : If helped you in last five years: OR | numeric | 1. Tell me about a particular job or vacancy, 2. Refer or recommend me to someone that they personally knew who then employed me, 3. Give me emotional/positive support in applying for the work, 4. Give or help me with training for the work, 5. Help me with tasks relevant to getting the work (such as preparing a CV etc), 6. Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 7. Help me with transport to the job interview or in commencing the work, 8. Help me with childcare during the job interview or commencing the work, 9. Dont know/not applicable (e.g. retired, disability, full time carer, etc), 10. Other: please record |
1065 | 0.1205615 | NA | NA | 1 | 2.0 | 10 | 4.253425 | 3.409544e+00 | NA | ▇▁▁▁▅ | F2.0 | NA |
C11B | What was/would be the main form of help or support that they gave/would give you to find paid work? : Most likely help you in future | numeric | 1. Tell me about a particular job or vacancy, 2. Refer or recommend me to someone that they personally knew who then employed me, 3. Give me emotional/positive support in applying for the work, 4. Give or help me with training for the work, 5. Help me with tasks relevant to getting the work (such as preparing a CV etc), 6. Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 7. Help me with transport to the job interview or in commencing the work, 8. Help me with childcare during the job interview or commencing the work, 9. Dont know/not applicable (e.g. retired, disability, full time carer, etc), 10. Other: please record |
1004 | 0.1709331 | NA | NA | 1 | 2.0 | 10 | 3.545894 | 3.052386e+00 | NA | ▇▂▁▁▃ | F2.0 | NA |
C12SB | What is the main thing your friend does with their time? : | numeric | 1. Employed full-time (works 30+ paid hours/wk), 2. Employed part-time (works ls 30 paid hours/wk), 3. No paid work - internship, 5. No paid work - volunteer, 6. No paid work - unemployed, looking for work, 7. No paid work - unemployed, not looking for work, 8. No paid work - cares for children, 9. No paid work - cares for adults, 10. No paid work - retired, 11. Dont know, 12. Other: please record |
665 | 0.4508671 | NA | NA | 1 | 2.0 | 12 | 4.520147 | 4.225366e+00 | NA | ▇▁▁▁▃ | F2.0 | NA |
C12A | Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : If you helped in last five years | numeric | 1. Did not/would not be able to help or support them in finding paid work in the last/next five years, 2. Told them about the work or vacancy, 3. Referred or recommended them to someone that I personally knew who then employed them, 4. Got or gave them work directly, 5. Gave or helped them with training for the work, 6. Helped them with tasks relevant to getting the work (such as preparing a CV etc), 7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 8. Helped them with transport to the job interview or in commencing the work, 9. Helped them with childcare during the job interview or commencing the work, 10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc), 11. Other: please record |
1059 | 0.1255161 | NA | NA | 1 | 6.0 | 11 | 5.611842 | 3.928246e+00 | NA | ▇▁▂▁▆ | F2.0 | NA |
C12B | Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : Most likely to help in future | numeric | 1. Did not/would not be able to help or support them in finding paid work in the last/next five years, 2. Told them about the work or vacancy, 3. Referred or recommended them to someone that I personally knew who then employed them, 4. Got or gave them work directly, 5. Gave or helped them with training for the work, 6. Helped them with tasks relevant to getting the work (such as preparing a CV etc), 7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc), 8. Helped them with transport to the job interview or in commencing the work, 9. Helped them with childcare during the job interview or commencing the work, 10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc), 11. Other: please record |
983 | 0.1882742 | NA | NA | 1 | 3.0 | 11 | 4.600877 | 3.650285e+00 | NA | ▇▁▁▁▃ | F2.0 | NA |
C13SB | What is your friend’s sex and partner status? : | numeric | 1. Single male, no children, 2. Single female, no children, 3. Single male with children (that live with them at least some of the time), 4. Single female with children (that live with them at least some of the time), 5. Partnered male, no children, 6. Partnered female, no children, 7. Partnered male with children (that live with them at least some of the time), 8. Partnered female with children (that live with them at least some of the time), 9. Dont know |
687 | 0.4327002 | NA | NA | 1 | 6.5 | 9 | 5.753817 | 2.449975e+00 | NA | ▅▂▃▇▇ | F1.0 | NA |
C13A | When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only | numeric | 1. Employed full-time (works 30+ paid hours/wk), 2. Employed part-time (works ls 30 paid hours/wk), 3. No paid work - internship, 5. No paid work - volunteer, 6. No paid work - unemployed, looking for work, 7. No paid work - unemployed, not looking for work, 8. No paid work - cares for children, 9. No paid work - cares for adults, 10. No paid work - retired, 11. Dont know, 12. Other: please record |
1033 | 0.1469860 | NA | NA | 1 | 2.0 | 12 | 4.151685 | 4.260517e+00 | NA | ▇▁▁▁▃ | F2.0 | NA |
C13B | When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only | numeric | 1. Employed full-time (works 30+ paid hours/wk), 2. Employed part-time (works ls 30 paid hours/wk), 3. No paid work - internship, 5. No paid work - volunteer, 6. No paid work - unemployed, looking for work, 7. No paid work - unemployed, not looking for work, 8. No paid work - cares for children, 9. No paid work - cares for adults, 10. No paid work - retired, 11. Dont know, 12. Other: please record |
999 | 0.1750619 | NA | NA | 1 | 1.0 | 12 | 3.665094 | 4.179175e+00 | NA | ▇▁▁▁▃ | F2.0 | NA |
C14A | What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1. Single male, no children, 2. Single female, no children, 3. Single male with children (that live with them at least some of the time), 4. Single female with children (that live with them at least some of the time), 5. Partnered male, no children, 6. Partnered female, no children, 7. Partnered male with children (that live with them at least some of the time), 8. Partnered female with children (that live with them at least some of the time), 9. Dont know |
1039 | 0.1420314 | NA | NA | 1 | 7.0 | 9 | 6.139535 | 2.618704e+00 | NA | ▃▂▂▆▇ | F1.0 | NA |
C14B | What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1. Single male, no children, 2. Single female, no children, 3. Single male with children (that live with them at least some of the time), 4. Single female with children (that live with them at least some of the time), 5. Partnered male, no children, 6. Partnered female, no children, 7. Partnered male with children (that live with them at least some of the time), 8. Partnered female with children (that live with them at least some of the time), 9. Dont know |
1006 | 0.1692816 | NA | NA | 1 | 7.0 | 9 | 6.760976 | 2.321350e+00 | NA | ▂▁▁▅▇ | F1.0 | NA |
C15SB | What term would you use to best describe your relationship to this person? : | numeric | 1. Just close friend (no other relation), 2. Close school friend, 3. Close university, Tafe or college friend, 4. Partner, 5. Ex-partner, 6. Child, 7. Aunt or uncle, 8. Cousin, 9. Grandparent, 10. Colleague - met through internship program, 11. Colleague - other, 12. Boss - met through internship program, 13. Boss - other, 14. Team-mate, 15. Church or religious connection, 16. Dont know, 17. Other: please record |
673 | 0.4442609 | NA | NA | 1 | 1.0 | 17 | 3.804833 | 4.889564e+00 | NA | ▇▁▁▁▁ | F2.0 | NA |
C16SB | How close do you feel to this person? (As in now, not when they might or might not have helped in the past) : | numeric | 1. Extremely close - 10, 2. 9, 3. 8, 4. 7, 5. 6, 6. 5, 7. 4, 8. 3, 10. 2, 11. 1, 12. Not close at all - 0, 13. Dont know |
659 | 0.4558216 | NA | NA | 1 | 3.0 | 13 | 3.423913 | 2.677731e+00 | NA | ▇▃▁▁▁ | F2.0 | NA |
C16A | What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1. Friend of a friend, 2. Distant friend, 3. Close friend, 4. School friend, 5. University, Tafe or college friend, 6. Partner, 7. Ex-partner, 8. Child, 9. Aunt/uncle/cousin/grandparent, 10. Colleague - met through internship program, 11. Colleague - other, 12. Boss - met through internship program, 13. Boss - other, 14. Team-mate, 15. Church or religious connection, 16. Dont know, 17. Other: please record |
1032 | 0.1478117 | NA | NA | 1 | 11.0 | 17 | 9.050279 | 5.491847e+00 | NA | ▇▅▁▆▇ | F2.0 | NA |
C16B | What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1. Friend of a friend, 2. Distant friend, 3. Close friend, 4. School friend, 5. University, Tafe or college friend, 6. Partner, 7. Ex-partner, 8. Child, 9. Aunt/uncle/cousin/grandparent, 10. Colleague - met through internship program, 11. Colleague - other, 12. Boss - met through internship program, 13. Boss - other, 14. Team-mate, 15. Church or religious connection, 16. Dont know, 17. Other: please record |
1007 | 0.1684558 | NA | NA | 1 | 6.5 | 17 | 8.857843 | 5.609140e+00 | NA | ▇▅▁▅▇ | F2.0 | NA |
C17A | How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR | numeric | 1. Extremely close - 10, 2. 9, 3. 8, 4. 7, 5. 6, 6. 5, 7. 4, 8. 3, 10. 2, 11. 1, 12. Not close at all - 0, 13. Dont know |
1038 | 0.1428571 | NA | NA | 1 | 5.0 | 13 | 5.670520 | 4.056447e+00 | NA | ▇▅▃▁▅ | F2.0 | NA |
C17B | How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future) | numeric | 1. Extremely close - 10, 2. 9, 3. 8, 4. 7, 5. 6, 6. 5, 7. 4, 8. 3, 10. 2, 11. 1, 12. Not close at all - 0, 13. Dont know |
1005 | 0.1701073 | NA | NA | 1 | 4.0 | 13 | 4.825243 | 4.032616e+00 | NA | ▇▃▂▁▃ | F2.0 | NA |
C18 | All things considered, how happy are you with your life in general? : | numeric | 1. Extremely happy - 10, 2. 9, 3. 8, 4. 7, 5. 6, 6. 5, 7. 4, 8. 3, 9. 2, 10. 1, 11. Not happy at all - 0, 12. Dont know |
98 | 0.9190751 | NA | NA | 1 | 3.0 | 12 | 3.373765 | 2.003260e+00 | NA | ▇▃▁▁▁ | F2.0 | NA |
C19 | What was the most common emotion you remember experiencing in the last week (from today)? : | numeric | 1. Enthusiastic, 2. Caring and sympathetic, 3. Ashamed, 4. Calm and peaceful, 5. Envious (of other’s things/ abilities/ lives), 6. Interested and/or absorbed, 7. Embarrassed, 8. Confident, 9. Assertive and empowered, 10. Love for others, 11. Loved by others, 12. Hope, 13. Depressed, 14. Enjoyment and fun, 15. Surprised, 16. Sad, 17. Anxious, 18. Disgusted, 19. Tired, 20. Stressed, 21. Jealous (of other’s relationships), 22. Happy, 23. Bored and distracted, 24. Awkward, 25. Energetic, 26. Lonely, 27. Angry, 28. Agreeable and receptive, 29. Guilty, 30. Proud, 31. Afraid, 32. Frustrated, 33. Other (Please describe): |
696 | 0.4252684 | NA | NA | 1 | 14.0 | 33 | 13.879612 | 9.001355e+00 | NA | ▇▅▇▃▂ | F2.0 | NA |
C20 | We would now like to ask you about some emotions that are often described as ‘positive’ emotions.What was the most common positive emotion that you remember experiencing in the last week (from today)? : | numeric | 1. Confident, 2. Enthusiastic, 3. Proud, 4. Caring and sympathetic, 5. Calm and peaceful, 6. Energetic, 7. Happy, 8. Interested and/or absorbed, 9. Agreeable and receptive, 10. Assertive and empowered, 11. Love for others, 12. Loved by others, 13. Hope, 14. Enjoyment and fun, 15. Other (Please describe): |
680 | 0.4384806 | NA | NA | 1 | 7.0 | 15 | 7.248588 | 3.923607e+00 | NA | ▅▆▇▅▃ | F2.0 | NA |
C21 | Can you remember the last time that you experienced this positive emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 1. Paid work, 2. Care for children, adults, pets, 3. Unpaid work (housework, garden etc), 4. Free time and leisure, 5. Travel, 6. Sports/Exercise, 7. Personal care, 8. Sleep, 9. Watching media (TV, DVD, Online content), 10. Listening to music, 11. Engaged with social media (interacting, posting), 12. Educational activities, 13. Dont know/can’t remember, 14. Other: please record |
150 | 0.8761354 | NA | NA | 1 | 4.0 | 14 | 4.976437 | 3.909882e+00 | NA | ▇▇▁▁▃ | F2.0 | NA |
C22 | Thinking about the last time that you experienced this positive emotion, where were you and who were you with? : | numeric | 1. At home - Alone, 2. At home - Just with partner, 3. At home - Just with children, 4. At home - Just with partner and kids, 5. At home - Any other mix people (friends, family, partners, kids, etc), 6. At work - Alone, 7. At work - Just with colleagues, 8. At work - Just with boss, 9. At work - Just with clients, 10. At work - Any other mix people (boss, clients, colleagues etc), 11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction), 12. Elsewhere (neither home nor work) - Just with partner and kids, 13. Elsewhere (neither home nor work) - Just with friends, 14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc), 15. Don’t know/can’t remember |
123 | 0.8984310 | NA | NA | 1 | 5.0 | 15 | 6.638787 | 4.849439e+00 | NA | ▇▆▂▂▅ | F2.0 | NA |
C23 | Thinking about the last time you experienced this positive emotion, did you have to work to make yourself feel that way, or did you just feel that way naturally? Or was it a bit of both? : | numeric | 1. Worked to make myself feel that way, 2. Just felt that way naturally, 3. Bit of both, 4. Dont know/can’t remember |
107 | 0.9116433 | NA | NA | 1 | 2.0 | 4 | 2.283514 | 6.008908e-01 | NA | ▁▇▁▃▁ | F1.0 | NA |
C24 | We would now like to ask you about some emotions that are often described as ‘negative’ emotions.What was the most common negative emotion that you remember experiencing in the last week (from today)? : | numeric | 1. Sad, 2. Anxious, 3. Disgusted, 4. Tired, 5. Stressed, 6. Bored and distracted, 7. Awkward, 8. Depressed, 9. Lonely, 10. Angry, 11. Ashamed, 12. Guilty, 13. Jealous (of other’s relationships), 14. Envious (of other’s things/ abilities/ lives), 15. Embarrassed, 16. Afraid, 17. Hopeless, 18. Frustrated, 19. Other (Please describe): |
667 | 0.4492155 | NA | NA | 1 | 4.0 | 19 | 6.926471 | 5.631250e+00 | NA | ▇▃▁▁▂ | F2.0 | NA |
C25 | Can you remember the last time that you experienced this negative emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 1. Paid work, 2. Care for children, adults, pets, 3. Unpaid work (housework, garden etc), 4. Free time and leisure, 5. Travel, 6. Sports/Exercise, 7. Personal care, 8. Sleep, 9. Watching media (TV, DVD, Online content), 10. Listening to music, 11. Engaged with social media (interacting, posting), 12. Educational activities, 13. Dont know/can’t remember, 14. Other: please record |
160 | 0.8678778 | NA | NA | 1 | 3.0 | 14 | 5.308278 | 4.765563e+00 | NA | ▇▂▁▁▃ | F2.0 | NA |
C26 | Thinking about the last time that you experienced this negative emotion, where were you and who were you with? : | numeric | 1. At home - Alone, 2. At home - Just with partner, 3. At home - Just with children, 4. At home - Just with partner and kids, 5. At home - Any other mix people (friends, family, partners, kids, etc), 6. At work - Alone, 7. At work - Just with colleagues, 8. At work - Just with boss, 9. At work - Just with clients, 10. At work - Any other mix people (boss, clients, colleagues etc), 11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction), 12. Elsewhere (neither home nor work) - Just with partner and kids, 13. Elsewhere (neither home nor work) - Just with friends, 14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc), 15. Don’t know/can’t remember |
142 | 0.8827415 | NA | NA | 1 | 5.0 | 15 | 5.993452 | 4.614234e+00 | NA | ▇▃▃▂▃ | F2.0 | NA |
C27 | Thinking about the last time you experienced this negative emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi | numeric | 1. Just showed the feeling, 2. Tried to hide the feeling, but didnt succeed, 3. Tried to hide the feeling, and succeeded, 4. Tried to change the feeling into something else, didnt manage it, 5. Tried to change the feeling into something else, and succeeded, 6. Dont know/can’t remember |
139 | 0.8852188 | NA | NA | 1 | 3.0 | 6 | 3.018657 | 1.765852e+00 | NA | ▇▃▂▅▂ | F1.0 | NA |
C28 | I would now like to ask you about a few specific emotions that are less common, but might have come up in your life in the last week.Which one of the following emotions from the list below was the most common (if any) that you remember experiencing i | numeric | 1. Angry, 2. Ashamed, 3. Guilty, 4. Jealous (of other’s relationships), 5. Envious (of other’s things/ abilities/ lives), 6. Embarrassed, 7. Afraid, 8. None – didnt experience any of these last week, 9. Dont know/can’t say |
122 | 0.8992568 | NA | NA | 1 | 7.0 | 9 | 5.377410 | 3.130419e+00 | NA | ▅▁▁▂▇ | F1.0 | NA |
C29 | Can you remember the last time that you experienced this specific emotion?Thinking back to that occasion, what was the main thing you were doing? : | numeric | 1. Paid work, 2. Care for children, adults, pets, 3. Unpaid work (housework, garden etc), 4. Free time and leisure, 5. Travel, 6. Sports/Exercise, 7. Personal care, 8. Sleep, 9. Watching media (TV, DVD, Online content), 10. Listening to music, 11. Engaged with social media (interacting, posting), 12. Educational activities, 13. Dont know/can’t remember, 14. Other: please record |
256 | 0.7886045 | NA | NA | 1 | 6.0 | 14 | 7.313089 | 5.144188e+00 | NA | ▇▃▁▂▇ | F2.0 | NA |
C30 | Thinking about the last time that you experienced this specfic emotion, where were you and who were you with? : | numeric | 1. At home - Alone, 2. At home - Just with partner, 3. At home - Just with children, 4. At home - Just with partner and kids, 5. At home - Any other mix people (friends, family, partners, kids, etc), 6. At work - Alone, 7. At work - Just with colleagues, 8. At work - Just with boss, 9. At work - Just with clients, 10. At work - Any other mix people (boss, clients, colleagues etc), 11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction), 12. Elsewhere (neither home nor work) - Just with partner and kids, 13. Elsewhere (neither home nor work) - Just with friends, 14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc), 15. Don’t know/can’t remember |
249 | 0.7943848 | NA | NA | 1 | 7.0 | 15 | 7.952183 | 5.598591e+00 | NA | ▇▃▂▂▇ | F2.0 | NA |
C31 | Thinking about the last time you experienced this specific emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi | numeric | 1. Just showed the feeling, 2. Tried to hide the feeling, but didnt succeed, 3. Tried to hide the feeling, and succeeded, 4. Tried to change the feeling into something else, didnt manage it, 5. Tried to change the feeling into something else, and succeeded, 6. Dont know/can’t remember |
246 | 0.7968621 | NA | NA | 1 | 3.0 | 6 | 3.555440 | 1.982361e+00 | NA | ▇▃▁▃▆ | F1.0 | NA |
C32 | In those times when you feel an emotion that you don’t like and want to change it into something else, what is the most common thing you can do that typically works to help you change how you feel? : | numeric | 1. Deep breathing, 2. Exercise or sports, 3. Meditation, 4. Prayer, 5. Positive thoughts, 6. Medication/natural remedy (over counter), 7. Medication (prescription), 8. Coffee, 9. Eat food, 10. Drink alcohol, 11. Smoke cigarette, 12. Use other substance, 13. Talk to a friend/family about problem, 14. Can’t do anything – nothing really works, 15. Dont know/can’t remember, 16. Other |
692 | 0.4285714 | NA | NA | 1 | 5.0 | 16 | 7.942196 | 4.978771e+00 | NA | ▇▇▂▅▅ | F2.0 | NA |
D1 | On a scale of zero-to-ten, with zero being no effect and ten being a large effect, to what extent do you think the learning experiences a child has in their first three years of life affects how well they will do at school? : | numeric | 0. No effect - 0, 1. 1, 2. 2, 3. 3, 4. 4, 5. Medium effect - 5, 6. 6, 7. 7, 8. 8, 9. 9, 10. Large effect - 10 |
75 | 0.9380677 | NA | NA | 0 | 8.0 | 10 | 7.509683 | 2.521781e+00 | NA | ▁▁▃▆▇ | F2.0 | NA |
D2 | In Australia today most children attend some type of regular child care before they start school. Given this reality… A. What do you think is the best type of child care for childrenbirth – 2 years? : | numeric | 1. Family day care (home-based child care in the carers home), 2. Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year), 3. Child’s extended family (eg., grandparent), 4. Nanny, 5. Not sure |
74 | 0.9388935 | NA | NA | 1 | 3.0 | 5 | 2.751099 | 1.254766e+00 | NA | ▃▂▇▁▂ | F1.0 | NA |
D3 | B. What do you think is the best type of child care for children 3 – 5 years? : | numeric | 1. Family day care (home-based child care in the carers home), 2. Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year), 3. Child’s extended family (eg., grandparent), 4. Preschool / kindergarten (centre-based child care that usually operates between 9am - 3pm during school terms), 5. Nanny, 6. Not sure |
77 | 0.9364162 | NA | NA | 1 | 4.0 | 6 | 3.430335 | 1.324625e+00 | NA | ▃▂▇▁▂ | F1.0 | NA |
E1 | In all countries, there are differences or even conflicts between different social groups. In your opinion, in Australia how much conflict is there between older people and younger people? : | numeric | 1. Very strong conflicts, 2. Strong conflicts, 3. Not very strong conflicts, 4. No conflicts, 5. Can’t choose |
58 | 0.9521057 | NA | NA | 1 | 3.0 | 5 | 3.039029 | 8.128972e-01 | NA | ▁▂▇▂▁ | F1.0 | NA |
E2 | Do you think older workers (those aged 50 years and older) are treated by employers better, worse or about the same as younger workers? : | numeric | 1. Better, 2. About the same, 3. Worse |
65 | 0.9463254 | NA | NA | 1 | 2.0 | 3 | 2.136126 | 5.566308e-01 | NA | ▁▁▇▁▃ | F1.0 | NA |
E3 | Do you think older workers (those 50 years and older) on average contribute more or less to the workplace than younger workers? : | numeric | 1. More, 2. Less, 3. The same |
61 | 0.9496284 | NA | NA | 1 | 1.0 | 3 | 1.897391 | 9.739390e-01 | NA | ▇▁▁▁▆ | F1.0 | NA |
E4A | Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : doctors, nurses or other health care professionals? | numeric | 1. Treated better, 2. Worse, 3. About the same |
67 | 0.9446738 | NA | NA | 1 | 3.0 | 3 | 2.375874 | 8.615304e-01 | NA | ▃▁▂▁▇ | F1.0 | NA |
E4B | Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by… : people they don’t know such as people in shops, on buses or in other public areas? | numeric | 1. Treated better, 2. Worse, 3. About the same |
95 | 0.9215524 | NA | NA | 1 | 2.0 | 3 | 2.286738 | 7.624857e-01 | NA | ▃▁▆▁▇ | F1.0 | NA |
E5 | Do you feel that people over 65 years get too much, too little, or about the right amount of respect from younger people these days? : | numeric | 1. Too much, 2. Too little, 3. Right amount, 4. Don’t know |
56 | 0.9537572 | NA | NA | 1 | 2.0 | 4 | 2.446753 | 6.887782e-01 | NA | ▁▇▁▃▂ | F1.0 | NA |
E6 | How much influence do you think retired older Australians have? : | numeric | 1. Too much, 2. Too little, 3. About the right amount |
71 | 0.9413708 | NA | NA | 1 | 2.0 | 3 | 2.370175 | 5.713268e-01 | NA | ▁▁▇▁▆ | F1.0 | NA |
E7 | Right now, do you think older people are getting more than their fair share, less than their fair share, or about their fair share of government benefits? : | numeric | 1. More than their fair share, 2. Less than their fair share, 3. About their fair share |
70 | 0.9421965 | NA | NA | 1 | 2.0 | 3 | 2.333918 | 5.726036e-01 | NA | ▁▁▇▁▆ | F1.0 | NA |
E8 | Each generation has different social and economic opportunities over their lives. How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for younger people today? : | numeric | 1. Better for baby boomers, 2. About the same, 3. Better for younger people |
71 | 0.9413708 | NA | NA | 1 | 2.0 | 3 | 1.820175 | 8.547425e-01 | NA | ▇▁▅▁▅ | F1.0 | NA |
E9 | How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for older people who have already retired? : | numeric | 1. Better for baby boomers, 2. About the same, 3. Better for the already retired people |
73 | 0.9397192 | NA | NA | 1 | 2.0 | 3 | 1.684534 | 7.465828e-01 | NA | ▇▁▆▁▃ | F1.0 | NA |
E10 | The Australian Government is gradually raising the eligibility age for the pension to 67 years by 2023. Do you: : | numeric | 1. Support raising the pension age to 67 years, 2. Oppose raising the pension age to 67 years, 3. Don’t know or are not sure |
55 | 0.9545830 | NA | NA | 1 | 2.0 | 3 | 1.818339 | 6.378069e-01 | NA | ▅▁▇▁▂ | F1.0 | NA |
E11A | How often, in the past year… : has anyone shown prejudice against you or treated you unfairly because of your age? | numeric | 1. Never 0, 2. 1, 3. 2, 4. 3, 5. Very often 4, 8. Dont know |
63 | 0.9479769 | NA | NA | 1 | 1.0 | 8 | 2.124564 | 1.919293e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
E11B | How often, in the past year… : have you felt that someone showed you a lack of respect because of your age, for instance by ignoring or patronising you? | numeric | 1. Never 0, 2. 1, 3. 2, 4. 3, 5. Very often 4, 8. Dont know |
63 | 0.9479769 | NA | NA | 1 | 1.0 | 8 | 2.163763 | 1.694448e+00 | NA | ▇▂▂▁▁ | F1.0 | NA |
E11C | How often, in the past year… : has someone treated you badly because of your age, for example by insulting you or refusing you services? | numeric | 1. Never 0, 2. 1, 3. 2, 4. 3, 5. Very often 4, 8. Dont know |
69 | 0.9430223 | NA | NA | 1 | 1.0 | 8 | 1.604203 | 1.456076e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
E12 | Thinking about everything you see and hear in the media (TV, online, radio, newspapers, magazines), do you think older adults (aged 65 years and older) are treated better, worse or about the same as younger people? : | numeric | 1. Better, 2. Worse, 3. About the same as younger people |
67 | 0.9446738 | NA | NA | 1 | 2.0 | 3 | 2.388112 | 6.314022e-01 | NA | ▂▁▇▁▇ | F1.0 | NA |
E13A | How much do you agree or disagree that… : The media portrays older people in diverse ways? | numeric | 1. Strongly agree, 2. Agree, 3. Neutral, 4. Disagree, 5. Strongly disagree |
77 | 0.9364162 | NA | NA | 1 | 3.0 | 5 | 2.751323 | 8.264563e-01 | NA | ▁▆▇▃▁ | F1.0 | NA |
E13B | How much do you agree or disagree that… : There are generally as many positive stories in the media about ageing as there are negative stories? | numeric | 1. Strongly agree, 2. Agree, 3. Neutral, 4. Disagree, 5. Strongly disagree |
74 | 0.9388935 | NA | NA | 1 | 3.0 | 5 | 3.014072 | 8.770222e-01 | NA | ▁▆▇▆▁ | F1.0 | NA |
E13C | How much do you agree or disagree that… : There are enough older role models portrayed in the media? | numeric | 1. Strongly agree, 2. Agree, 3. Neutral, 4. Disagree, 5. Strongly disagree |
78 | 0.9355904 | NA | NA | 1 | 3.0 | 5 | 3.145631 | 9.019859e-01 | NA | ▁▆▇▇▁ | F1.0 | NA |
E14 | How common or uncommon do you feel age discrimination is in Australia? : | numeric | 1. Very uncommon, 2. Uncommon, 3. Neither uncommon nor common, 4. Common, 5. Very common |
63 | 0.9479769 | NA | NA | 1 | 3.0 | 5 | 3.291812 | 9.343036e-01 | NA | ▁▃▇▇▁ | F1.0 | NA |
E15A | Because of your age, have you ever been… : Turned down for a position | numeric | 1. Yes, 2. No |
120 | 0.9009083 | NA | NA | 1 | 2.0 | 2 | 1.793767 | 4.047852e-01 | NA | ▂▁▁▁▇ | F1.0 | NA |
E15B | Because of your age, have you ever been… : Ignored | numeric | 1. Yes, 2. No |
129 | 0.8934765 | NA | NA | 1 | 2.0 | 2 | 1.713494 | 4.523379e-01 | NA | ▃▁▁▁▇ | F1.0 | NA |
E15C | Because of your age, have you ever been… : Treated with disrespect | numeric | 1. Yes, 2. No |
131 | 0.8918249 | NA | NA | 1 | 2.0 | 2 | 1.712963 | 4.525886e-01 | NA | ▃▁▁▁▇ | F1.0 | NA |
E15D | Because of your age, have you ever been… : Subjected to jokes | numeric | 1. Yes, 2. No |
130 | 0.8926507 | NA | NA | 1 | 2.0 | 2 | 1.742831 | 4.372758e-01 | NA | ▃▁▁▁▇ | F1.0 | NA |
E15E | Because of your age, have you ever been… : Verbally insulted | numeric | 1. Yes, 2. No |
135 | 0.8885219 | NA | NA | 1 | 2.0 | 2 | 1.876394 | 3.292845e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
E15F | Because of your age, have you ever been… : Refused service/had difficulty making a purchase | numeric | 1. Yes, 2. No |
131 | 0.8918249 | NA | NA | 1 | 2.0 | 2 | 1.887963 | 3.155581e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
E15G | Because of your age, have you ever been… : Denied access to service/products | numeric | 1. Yes, 2. No |
138 | 0.8860446 | NA | NA | 1 | 2.0 | 2 | 1.924511 | 2.643024e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
E15H | Because of your age, have you ever been… : Refused promotion | numeric | 1. Yes, 2. No |
154 | 0.8728324 | NA | NA | 1 | 2.0 | 2 | 1.892148 | 3.103408e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
E15I | Because of your age, have you ever been… : Discriminated against in some other way | numeric | 1. Yes, 2. No |
126 | 0.8959538 | NA | NA | 1 | 2.0 | 2 | 1.849770 | 3.574619e-01 | NA | ▂▁▁▁▇ | F1.0 | NA |
E15J | Because of your age, have you ever been… : Physically abused | numeric | 1. Yes, 2. No |
131 | 0.8918249 | NA | NA | 1 | 2.0 | 2 | 1.979630 | 1.413291e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
E16A | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : At greater risk of being made redundant | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
65 | 0.9463254 | NA | NA | 1 | 2.0 | 5 | 1.970332 | 7.689335e-01 | NA | ▃▇▂▁▁ | F1.0 | NA |
E16B | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to be promoted | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
72 | 0.9405450 | NA | NA | 1 | 2.0 | 5 | 2.211589 | 8.352972e-01 | NA | ▂▇▃▁▁ | F1.0 | NA |
E16C | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More likely to have difficultly adapting to change | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
73 | 0.9397192 | NA | NA | 1 | 2.0 | 5 | 2.502636 | 9.464520e-01 | NA | ▂▇▃▃▁ | F1.0 | NA |
E16D | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Difficult to teach new things | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
78 | 0.9355904 | NA | NA | 1 | 3.0 | 5 | 3.042365 | 9.649175e-01 | NA | ▁▇▆▇▁ | F1.0 | NA |
E16E | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Not in the role as long | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
97 | 0.9199009 | NA | NA | 1 | 3.0 | 5 | 3.140036 | 8.563249e-01 | NA | ▁▅▇▆▁ | F1.0 | NA |
E16F | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less likely to have the same technical skills | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
75 | 0.9380677 | NA | NA | 1 | 3.0 | 5 | 3.049296 | 9.894774e-01 | NA | ▁▇▆▇▁ | F1.0 | NA |
E16G | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : More expensive | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
76 | 0.9372419 | NA | NA | 1 | 3.0 | 5 | 3.244053 | 8.984591e-01 | NA | ▁▃▇▇▁ | F1.0 | NA |
E16H | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less willing to work overtime | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
74 | 0.9388935 | NA | NA | 1 | 4.0 | 5 | 3.444151 | 9.413728e-01 | NA | ▁▂▅▇▂ | F1.0 | NA |
E16I | Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are… : Less productive | numeric | 1. Strongly agree, 2. Agree, 3. Netural, 4. Disagree, 5. Strongly disagree |
71 | 0.9413708 | NA | NA | 1 | 4.0 | 5 | 3.850877 | 8.182773e-01 | NA | ▁▁▃▇▃ | F1.0 | NA |
F1 | You may have heard about the idea that the world’s temperature may have been going up over the past 100 years, a phenomenon sometimes called ‘global warming’. What is your personal opinion regarding whether or not this has been happening? : | numeric | 1. Definitely has not been happening, 2. Probably has not been happening, 3. Unsure, but leaning toward it has not been happening, 4. Not sure either way, 5. Unsure, but leaning toward it has been happening, 6. Probably has been happening, 7. Definitely has been happening |
56 | 0.9537572 | NA | NA | 1 | 6.0 | 7 | 5.450216 | 1.775504e+00 | NA | ▁▁▁▂▇ | F1.0 | NA |
F2 | How serious a threat do you think global warming will pose to you or your way of life in your lifetime? : | numeric | 1. Very serious, 2. Fairly serious, 3. Not very serious, 4. Not at all serious |
54 | 0.9554088 | NA | NA | 1 | 3.0 | 4 | 2.509940 | 9.389384e-01 | NA | ▃▇▁▇▃ | F1.0 | NA |
F3 | Please choose a statement from the following list that is closest to your own views on climate change. : | numeric | 1. Climate change is happening now and is mainly caused by human activities, 2. Climate change is happening now but is not caused by humans, 3. Climate change is not happening now, 4. I dont know whether climate change is happening or not |
63 | 0.9479769 | NA | NA | 1 | 1.0 | 4 | 1.671603 | 1.095761e+00 | NA | ▇▂▁▁▂ | F1.0 | NA |
F4 | We would like to know what you think about the proposal to create an emissions trading scheme in order to reduce greenhouse gas emissions. Both Labor Party leader Bill Shorten and Liberal Party Minister Malcolm Turnbull have favoured this approach. D | numeric | 1. Support the proposal, 2. Oppose the proposal |
95 | 0.9215524 | NA | NA | 1 | 1.0 | 2 | 1.287634 | 4.528627e-01 | NA | ▇▁▁▁▃ | F1.0 | NA |
F5 | Australias Renewable Energy Target sets a goal for the amount of power that will be supplied through solar, wind, and other renewable resources by the year 2020.Labor Party leader Bill Shorten has supported keeping this target at its current leve | numeric | 1. Keep the Renewable Energy Target at its current level, 2. Reduce the Renewable Energy Target |
101 | 0.9165979 | NA | NA | 1 | 1.0 | 2 | 1.209910 | 4.074276e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
G1 | Over the past decade, some Aboriginal leaders have proposed new approaches to Aboriginal policy. For example, they have suggested that Aboriginal schools should become more mainstream, that the same laws should apply to both Aboriginal and non-Abo | numeric | 1. I am aware of these proposals and they make me feel more accepting of Aboriginal claims for government support., 2. I am aware of these proposals but I already accept Aboriginal claims for government support., 3. I am aware of these proposals, but they do not make me feel more accepting of Aboriginal claims for government support., 4. No, I am not aware of these proposals. |
79 | 0.9347647 | NA | NA | 1 | 3.0 | 4 | 2.738516 | 1.130949e+00 | NA | ▅▆▁▅▇ | F1.0 | NA |
H1 | Thinking about your main place of residence, which of the following best describes the type of insurance cover that you or someone who lives with you has purchased? The residence is currently covered by… : | numeric | 1. House and contents insurance, 2. Contents insurance only, 3. House insurance only, 4. Neither house nor contents insurance, 5. Unsure |
56 | 0.9537572 | NA | NA | 1 | 1.0 | 5 | 1.500433 | 1.087486e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
H2 | If a natural disaster (e.g. bushfire, cyclone, major storm or flood) strikes your place of residence, how confident are you that your insurance will adequately cover repairs and/or replacement of losses? : | numeric | 1. Very confident, 2. Somewhat confident, 3. Unsure, 4. Somewhat unconfident, 5. Very unconfident |
163 | 0.8654005 | NA | NA | 1 | 2.0 | 5 | 2.054389 | 9.332548e-01 | NA | ▅▇▃▁▁ | F1.0 | NA |
H3 | How likely is your place of residence to be struck by a natural disaster (e.g. bushfire, cyclone, major storm or flood)? : | numeric | 1. Very likely, 2. Somewhat likely, 3. Unsure, 4. Somewhat unlikely, 5. Very unlikely |
57 | 0.9529315 | NA | NA | 1 | 4.0 | 5 | 3.532062 | 1.171841e+00 | NA | ▁▅▃▇▅ | F1.0 | NA |
I1 | Are you … : | numeric | 1. Male, 2. Female |
56 | 0.9537572 | NA | NA | 1 | 2.0 | 2 | 1.532468 | 4.991609e-01 | NA | ▇▁▁▁▇ | F1.0 | NA |
I2 | When were you born? : Year (YYYY) | numeric | NA | 86 | 0.9289843 | NA | NA | 192 | 1959.0 | 1997 | 1958.880889 | 5.488080e+01 | NA | ▁▁▁▁▇ | F4.0 | NA |
I5 | What is the highest year of schooling you have completed? : | numeric | 1. Year 12 or equivalent, 2. Year 11 or equivalent, 3. Year 10 or equivalent, 4. Completed primary school, 5. Completed pre-primary school, 6. Did not go to school |
61 | 0.9496284 | NA | NA | 1 | 1.0 | 6 | 1.708696 | 9.888029e-01 | NA | ▇▃▁▁▁ | F1.0 | NA |
I6 | What is the highest educational qualification you have completed outside of school? : | numeric | 1. Doctorate by research, 2. Doctorate by coursework, 3. Masters Degree, 4. Graduate Diploma, 5. Graduate Certificate, 6. Bachelor Degree, 7. Advanced Diploma or Associate Degree, 8. Diploma, 9. Certificate IV, 10. Certificate III, 11. Certificate II, 12. Certificate I, 13. No post-school qualification |
102 | 0.9157721 | NA | NA | 1 | 8.0 | 13 | 8.325518 | 3.496451e+00 | NA | ▂▂▇▃▇ | F2.0 | NA |
I7 | Are you currently working for pay, did you work for pay in the past, or have you never been in paid work? : | numeric | 1. I am currently in paid work, 2. I am currently not in paid work but I had paid work in the past, 3. I have never had paid work |
50 | 0.9587118 | NA | NA | 1 | 1.0 | 3 | 1.390181 | 5.188250e-01 | NA | ▇▁▅▁▁ | F1.0 | NA |
I13ANZSCO1 | Code for group: ANZSCO2013v1.2 Level: 0 | numeric | 0. Operational codes (Aus), 1. Managers, 2. Professionals, 3. Technicians and Trades Workers, 4. Community and Personal Service Workers, 5. Clerical and Administrative Workers, 6. Sales Workers, 7. Machinery Operators and Drivers, 8. Labourers, 9. Operational codes (NZ) |
2 | 0.9983485 | NA | NA | 0 | 3.0 | 8 | 3.121588 | 2.160207e+00 | NA | ▆▇▂▆▂ | F2.0 | NA |
I15ANZSIC1 | Code for group: ANZSIC Level: 0 | numeric | 1. Agriculture, Forestry and Fishing, 2. Mining, 3. Manufacturing, 4. Electricity, Gas, Water and Waste Services, 5. Construction, 6. Wholesale Trade, 7. Retail Trade, 8. Accommodation and Food Services, 9. Transport, Postal and Warehousing, 10. Information Media and Telecommunications, 11. Financial and Insurance Services, 12. Rental, Hiring and Real Estate Services, 13. Professional, Scientific and Technical Services, 14. Administrative and Support Services, 15. Public Administration and Safety, 16. Education and Training, 17. Health Care and Social Assistance, 18. Arts and Recreation Services, 19. Other Services, 20. Blank, 21. Not codeable |
1 | 0.9991742 | NA | NA | 1 | 15.0 | 21 | 12.521488 | 6.017341e+00 | NA | ▅▃▃▇▅ | F2.0 | NA |
I16 | Which of the following best describes your current situation? : | numeric | 1. In paid work (as an employee, self-employed, or working for your own family’s business), 2. Unemployed and looking for a job, 3. In education (not paid for by employer), in school/student/pupil even if on vacation, 4. Apprentice or trainee, 5. Permanently sick or disabled, 6. Retired, 7. Doing housework, looking after the home, children or other persons, 9. Other |
80 | 0.9339389 | NA | NA | 1 | 1.0 | 9 | 2.824934 | 2.467369e+00 | NA | ▇▁▁▃▁ | F1.0 | NA |
I17 | Do you have a spouse or a partner and, if yes, do you share the same household? : | numeric | 1. Yes, I have a spouse/partner and we share the same household, 2. Yes, I have a spouse/partner but we don’t share the same household, 3. No, I don’t have a spouse/partner |
57 | 0.9529315 | NA | NA | 1 | 1.0 | 3 | 1.531196 | 8.623255e-01 | NA | ▇▁▁▁▃ | F1.0 | NA |
I25 | Which of the following best describes your spouses/partners current situation? : | numeric | 1. In paid work (as an employee, self-employed, or working for his/her own family’s business), 2. Unemployed and looking for a job, 3. In education (not paid for by employer), in school/student/pupil even if on vacation, 4. Apprentice or trainee, 5. Permanently sick or disabled, 6. Retired, 7. Doing housework, looking after the home, children or other persons, 8. Other |
372 | 0.6928159 | NA | NA | 1 | 1.0 | 8 | 2.984505 | 2.497922e+00 | NA | ▇▁▁▃▁ | F1.0 | NA |
I26 | Are you or have you ever been a member of a trade union or similar organisation? If yes: is that currently or only previously? : | numeric | 1. Yes, currently, 2. Yes, previously but not currently, 3. No, never |
43 | 0.9644922 | NA | NA | 1 | 2.0 | 3 | 2.251712 | 7.370688e-01 | NA | ▃▁▇▁▇ | F1.0 | NA |
I27 | Joining a union would benefit me personally. : | numeric | 1. Strongly agree, 2. Agree, 3. Neither agree nor disagree, 4. Disagree, 5. Strongly disagree |
248 | 0.7952106 | NA | NA | 1 | 4.0 | 5 | 3.505711 | 1.151117e+00 | NA | ▁▅▇▇▆ | F1.0 | NA |
I28 | In your present job, have you ever been asked to join a union? : | numeric | 1. Yes, 2. No |
345 | 0.7151115 | NA | NA | 1 | 2.0 | 2 | 1.765589 | 4.238750e-01 | NA | ▂▁▁▁▇ | F1.0 | NA |
I29 | Which best describes you? : | numeric | 1. I belong to a union and would prefer to stay in one, 2. I belong to a union but would prefer not to, 3. I do not belong to a union but would prefer to join one, 4. I do not belong to a union and would prefer not to, 5. Can’t choose |
145 | 0.8802642 | NA | NA | 1 | 4.0 | 5 | 3.499062 | 1.291540e+00 | NA | ▂▁▁▇▂ | F1.0 | NA |
I30 | Do you belong to a religion and, if yes, which religion do you belong to? : | numeric | 1. No religion, 2. Catholic, 3. Protestant, 4. Anglican/Church of England, 5. Uniting Church/Methodist, 6. Pentecostal, 7. Orthodox, 8. Other Christian, 9. Jewish, 10. Islamic, 11. Buddhist, 12. Hindu, 13. Other Asian religions, 14. Other religions - Please specify |
54 | 0.9554088 | NA | NA | 1 | 2.0 | 14 | 3.259291 | 3.077462e+00 | NA | ▇▃▁▁▁ | F2.0 | NA |
I31 | Apart from such special occasions as weddings, funerals, etc., how often do you attend religious services? : | numeric | 1. Several times a week or more often, 2. Once a week, 3. 2 or 3 times a month, 4. Once a month, 5. Several times a year, 6. Once a year, 7. Less frequently than once a year, 8. Never |
53 | 0.9562345 | NA | NA | 1 | 7.0 | 8 | 6.277202 | 2.143515e+00 | NA | ▂▁▂▁▇ | F1.0 | NA |
I32 | In our society, there are groups which tend to be towards the top and groups which tend to be towards the bottom.Below is a scale that runs from the top to the bottom.Where would you put yourself on this scale? : | numeric | 1. Top - 10, 2. 9, 3. 8, 4. 7, 5. 6, 6. 5, 7. 4, 8. 3, 9. 2, 10. Bottom - 1 |
140 | 0.8843931 | NA | NA | 1 | 5.0 | 10 | 4.663865 | 1.639179e+00 | NA | ▁▇▇▂▁ | F2.0 | NA |
I33 | Do you usually think of yourself as close to any particular political party and, if yes, which party is that? : | numeric | 1. Labor Party (ALP), 2. Liberal Party, 3. National (Country) Party, 5. Greens, 8. No party affiliation, 9. Other party (please specify) |
72 | 0.9405450 | NA | NA | 1 | 3.0 | 9 | 4.591747 | 3.087642e+00 | NA | ▇▁▂▁▇ | F1.0 | NA |
I34 | Did you vote in Australias federal election in September 2013? : | numeric | 1. Yes, I did vote, 2. No, I did not vote, 3. I was not eligible to vote in the last election |
48 | 0.9603633 | NA | NA | 1 | 1.0 | 3 | 1.055890 | 2.924276e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
I35 | Thinking back to the last general election in September 2013 - Which party did you vote for? : | numeric | 1. Labor Party (ALP), 2. Liberal Party, 3. National (Country) Party, 5. Greens, 9. Other party (please specify) |
185 | 0.8472337 | NA | NA | 1 | 2.0 | 9 | 2.402534 | 1.885698e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
I36 | Did you vote early at the 2013 federal election? : | numeric | 1. Yes, I voted at an early voting centre, 2. Yes, I submitted a postal vote, 3. No, I voted on election day |
99 | 0.9182494 | NA | NA | 1 | 3.0 | 3 | 2.476619 | 8.407875e-01 | NA | ▂▁▁▁▇ | F1.0 | NA |
I37 | What was the main reason you cast your vote early? : | numeric | 2. I work on Saturdays and it was easier for me to vote during the week, 3. I was travelling interstate, 4. I was travelling overseas, 5. For health reasons, 6. I saw advertising telling me that I could vote early, 7. I saw an early voting centre near my place of work / home and dropped in to vote, 8. I wanted to avoid long queues at election day polling places, 9. I think that people should be permitted to vote whenever they like, 10. I might not have been able to vote if my only option was to vote on election day, 11. Another reason, 12. For convenience – it was easier for me to choose when to vote rather than vote on Saturday |
882 | 0.2716763 | NA | NA | 2 | 10.0 | 12 | 8.343465 | 3.774993e+00 | NA | ▅▂▂▂▇ | F2.0 | NA |
I38 | What country were you born in? : | numeric | 1. Australia, 2. Overseas - Please specify country |
50 | 0.9587118 | NA | NA | 1 | 1.0 | 2 | 1.223083 | 4.164933e-01 | NA | ▇▁▁▁▂ | F1.0 | NA |
I38SACC1 | Code for group: SACC Level: 0 | numeric | 0. Error, 1. Oceania and Antarctica, 2. North-west Europe, 3. Southern and eastern Europe, 4. North Africa and the Middle East, 5. South-east Asia, 6. North-east Asia, 7. Southern and central Asia, 8. Americas, 9. Sub-Saharan Africa |
0 | 1.0000000 | NA | NA | 0 | 1.0 | 9 | 1.510322 | 1.599747e+00 | NA | ▇▁▁▁▁ | F1.0 | NA |
I39 | What country was your mother born in? : | numeric | 1. Australia, 2. Overseas - Please specify country |
57 | 0.9529315 | NA | NA | 1 | 1.0 | 2 | 1.326690 | 4.692061e-01 | NA | ▇▁▁▁▃ | F1.0 | NA |
I39SACC1 | Code for group: SACC Level: 0 | numeric | 0. Error, 1. Oceania and Antarctica, 2. North-west Europe, 3. Southern and eastern Europe, 4. North Africa and the Middle East, 5. South-east Asia, 6. North-east Asia, 7. Southern and central Asia, 8. Americas, 9. Sub-Saharan Africa |
0 | 1.0000000 | NA | NA | 0 | 1.0 | 9 | 1.630058 | 1.602752e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
I40 | And what country was your father born in? : | numeric | 1. Australia, 2. Overseas - Please specify country |
75 | 0.9380677 | NA | NA | 1 | 1.0 | 2 | 1.370599 | 4.831778e-01 | NA | ▇▁▁▁▅ | F1.0 | NA |
I40SACC1 | Code for group: SACC Level: 0 | numeric | 0. Error, 1. Oceania and Antarctica, 2. North-west Europe, 3. Southern and eastern Europe, 4. North Africa and the Middle East, 5. South-east Asia, 6. North-east Asia, 7. Southern and central Asia, 8. Americas, 9. Sub-Saharan Africa |
0 | 1.0000000 | NA | NA | 0 | 1.0 | 9 | 1.650702 | 1.649254e+00 | NA | ▇▂▁▁▁ | F1.0 | NA |
I42 | Do you identify yourself as Aboriginal or Torres Strait Islander? : | numeric | 1. Yes, 2. No |
66 | 0.9454996 | NA | NA | 1 | 2.0 | 2 | 1.975546 | 1.545218e-01 | NA | ▁▁▁▁▇ | F1.0 | NA |
I45 | Is there at least one telephone inside your home that is currently working and is not a mobile phone? : | numeric | 1. Yes, 2. No, 3. Dont know |
67 | 0.9446738 | NA | NA | 1 | 1.0 | 3 | 1.236014 | 4.268711e-01 | NA | ▇▁▂▁▁ | F1.0 | NA |
I46 | How many people in your household, including yourself, have a currently working mobile phone? | numeric | NA | 107 | 0.9116433 | NA | NA | 1 | 2.0 | 9 | 2.298913 | 1.125554e+00 | NA | ▇▃▁▁▁ | F2.0 | NA |
I47 | In your home, do you have a computer (such as a PC, laptop or iPad) that is connected to the Internet? : | numeric | 1. Yes, 2. No, 3. Dont know |
71 | 0.9413708 | NA | NA | 1 | 1.0 | 3 | 1.077193 | 2.735116e-01 | NA | ▇▁▁▁▁ | F1.0 | NA |
I48 | Before taxes and other deductions, what on average is your own total monthly income? : $ | numeric | NA | 401 | 0.6688687 | NA | NA | 3 | 4000.0 | 300000 | 8723.840827 | 2.156221e+04 | NA | ▇▁▁▁▁ | F7.0 | NA |
I49 | Before taxes and other deductions, what on average is the total monthly income of your household? : $ | numeric | NA | 428 | 0.6465731 | NA | NA | 3 | 6720.0 | 2540000 | 13745.383487 | 9.209147e+04 | NA | ▇▁▁▁▁ | F7.0 | NA |
I50 | What is your current legal marital status? : | numeric | 1. Married, 2. Separated from my spouse but still legally married, 3. Divorced from spouse, 4. Widowed, 5. I have never been married |
83 | 0.9314616 | NA | NA | 1 | 1.0 | 5 | 2.127660 | 1.614491e+00 | NA | ▇▁▁▁▂ | F1.0 | NA |
I51 | Would you describe the place where you live as … : | numeric | 1. A big city, 2. The suburbs or outskirts of a big city, 3. A town or a small city, 4. A country village, 5. A farm or home in the country |
69 | 0.9430223 | NA | NA | 1 | 2.0 | 5 | 2.463222 | 1.064920e+00 | NA | ▃▇▅▂▁ | F1.0 | NA |
I52 | Do you own outright, are you buying or renting the dwelling in which you now live? : | numeric | 1. Own outright, 2. Own, paying off mortgage, 3. Rent from private landlord, 4. Rent from public housing authority, 5. Other (boarding, living at home, etc) |
81 | 0.9331131 | NA | NA | 1 | 2.0 | 5 | 1.899115 | 1.062485e+00 | NA | ▇▆▂▁▁ | F1.0 | NA |
I53 | In general, would you say your health is… : | numeric | 1. Excellent, 2. Very good, 3. Good, 4. Fair, 5. Poor, 6. Cant choose |
27 | 0.9777044 | NA | NA | 1 | 2.0 | 6 | 2.581926 | 1.036140e+00 | NA | ▇▅▂▁▁ | F1.0 | NA |
split | Booklet used (A or B) | character | NA | 0 | 1.0000000 | 2 | 0 | 1 | NA | 1 | NA | NA | 0 | NA | A1 | 1 |
JSON-LD metadata
The following JSON-LD can be found by search engines, if you share this codebook publicly on the web.
{
"name": "Australian Survey of Social Attitudes 2015 - Work orientations",
"description": "The Australian Survey of Social Attitudes (AuSSA) is Australia’s main source of data for the scientific study of the social attitudes, beliefs and opinions of Australians, how they change over time, and how they compare with other societies. The survey is used to help researchers better understand how Australians think and feel about their lives. It produces important information about the changing views and attitudes of Australians as we move through the 21st century. Similar surveys are run in other countries, so data from the AuSSA also allows us to compare Australia with countries all over the world. The aims of the survey are to discover: the range of Australians' views on topics that are important to all of us, how these views differ for people in different circumstances, how they have changed over the past quarter century, and how they compare with people in other countries. AuSSA is also the Australian component of the International Social Survey Project (ISSP). The ISSP is a cross-national collaboration on surveys covering important topics. Each year, survey researchers in some 40 countries each do a national survey using the same questions. The ISSP focuses on a special topic each year, repeating that topic from time to time. The topic for 2015 is 'Work Orientations'. This is the fourth time this has been the topic of the survey, having previously been the theme for the survey in 1989, 1997 and 2005. The AuSSA 2015 questionnaire was split into two booklets. Booklet A and Booklet B. Both booklets contained identical ISSP module and Personal Background sections, but some contributor sections had alternate questions. Within each wave, Booklet A was randomly assigned to half of the respondents, Booklet B to the remaining half. Waves 1 and 2 were conducted simultaneously in time (August) due to delays in Ethics approval, while Waves 3 and 4 were conducted on schedule in November 2015 and February 2016 respectively. Topics covered were work orientation, Health and work, Work, Support and Emotional Wellbeing, Early childhood, Ageing, Environment, Aboriginal policy, Insurance, Personal background.\n\n\n## Table of variables\nThis table contains variable names, labels, and number of missing values.\nSee the complete codebook for more.\n\n[truncated]\n\n### Note\nThis dataset was automatically described using the [codebook R package](https://rubenarslan.github.io/codebook/) (version 0.9.4.9000).",
"identifier": "doi:10.4225/87/T5BNZ7",
"datePublished": "2017-08-01",
"creator": {
"@type": "Person",
"givenName": "Adam",
"familyName": "Zammit",
"email": "adam.zammit@acspri.org.au",
"affiliation": {
"@type": "Organization",
"name": "Australian Consortium for Social and Political Research Incorporated (ACSPRI)"
}
},
"citation": "ACSPRI (2021). AuSSA 2015 Codebook.",
"url": "https://www.acspri.org.au/sites/acspri.org.au/files/aussa2015codebook.html",
"temporalCoverage": "2015",
"spatialCoverage": "Australia",
"keywords": ["A1A", "A1B", "A2A", "A2B", "A2C", "A2D", "A2E", "A2F", "A2G", "A2H", "A2I", "A3", "A4", "A5", "A6", "A7", "A8A", "A8B", "A9", "A10", "A11", "A12A", "A12B", "A12C", "A12D", "A12E", "A12F", "A12G", "A12H", "A13A", "A13B", "A14A", "A14B", "A15", "A16", "A17", "A18", "A19A", "A19B", "A20", "A21", "A22A", "A22B", "A23", "A24A", "A24B", "A24C", "A25A", "A25B", "A26", "A27", "A28", "A29A", "A29B", "A29C", "A29D", "A29E", "A29F", "A30", "A31", "A32", "A33A", "A33B", "A34", "A35", "A36", "A37", "A38", "A39A", "A39B", "A39C", "A39D", "A39E", "A39F", "A40A", "A40B", "A40C", "A40D", "A40E", "A40F", "A41", "A42", "A43", "A44", "A45", "A46A", "A46B", "A46C", "A46D", "A46E", "A47", "A48", "A49", "A50A", "A50B", "A51A", "A51B", "A51C", "A51D", "A51E", "A51F", "B1", "B2", "B3", "B4A", "B4B", "B4C", "B4D", "B4E", "B4F", "B5", "B6", "B7", "B8A", "B8B", "B8C", "B8D", "B9A", "B9B", "B9C", "B10", "B11", "B12", "C1", "C2", "C4", "C5", "C6", "C7", "C8SB", "C8A", "C8B", "C9SB", "C9A", "C9B", "C10SB", "C10A", "C10B", "C11SB", "C11A", "C11B", "C12SB", "C12A", "C12B", "C13SB", "C13A", "C13B", "C14A", "C14B", "C15SB", "C16SB", "C16A", "C16B", "C17A", "C17B", "C18", "C19", "C20", "C21", "C22", "C23", "C24", "C25", "C26", "C27", "C28", "C29", "C30", "C31", "C32", "D1", "D2", "D3", "E1", "E2", "E3", "E4A", "E4B", "E5", "E6", "E7", "E8", "E9", "E10", "E11A", "E11B", "E11C", "E12", "E13A", "E13B", "E13C", "E14", "E15A", "E15B", "E15C", "E15D", "E15E", "E15F", "E15G", "E15H", "E15I", "E15J", "E16A", "E16B", "E16C", "E16D", "E16E", "E16F", "E16G", "E16H", "E16I", "F1", "F2", "F3", "F4", "F5", "G1", "H1", "H2", "H3", "I1", "I2", "I5", "I6", "I7", "I13ANZSCO1", "I15ANZSIC1", "I16", "I17", "I25", "I26", "I27", "I28", "I29", "I30", "I31", "I32", "I33", "I34", "I35", "I36", "I37", "I38", "I38SACC1", "I39", "I39SACC1", "I40", "I40SACC1", "I42", "I45", "I46", "I47", "I48", "I49", "I50", "I51", "I52", "I53", "split"],
"@context": "http://schema.org/",
"@type": "Dataset",
"variableMeasured": [
{
"name": "A1A",
"description": "Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : A job is just a way of earning money - no more",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A1B",
"description": "Please cross one box for each statement below to show how much you agree or disagree with it, thinking of work in general. : I would enjoy having a paid job even if I did not need the money",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2A",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … job security",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2B",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … high income",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2C",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … good opportunities for advancement",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2D",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … an interesting job",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2E",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … a job that allows someone to work independently",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2F",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … a job that allows someone to help other people",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2G",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … a job that is useful to society",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2H",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … a job that allows someone to decide their times or days of work",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A2I",
"description": "For each of the following, please cross one box to show how important you personally think it is in a job.\tHow important is... : … a job that involves personal contact with other people",
"value": "1. Very important,\n2. Important,\n3. Neither important nor unimportant,\n4. Not important,\n5. Not important at all,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A3",
"description": "Have you ever given up or would you give up good job opportunities for the benefit of your family life? :",
"value": "1. Yes, I have done so and probably would do so again,\n2. Yes, I have done so but probably would not do so again,\n3. No, I have not done so but probably would do so,\n4. No, I have not done so and probably would not do so,\n5. Cant choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A4",
"description": "Have you ever remained or would you remain in a job that was not satisfying for you for the benefit of your family life? :",
"value": "1. Yes, I have done so and probably would do so again,\n2. Yes, I have done so but probably would not do so again,\n3. No, I have not done so but probably would do so,\n4. No, I have not done so and probably would not do so,\n5. Cant choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A5",
"description": "Over the past five years, have you been discriminated against with regard to work, for instance when applying for a job, or when being considered for a pay increase or promotion? :",
"value": "0. Did not work or did not seek work,\n1. Yes,\n2. No",
"maxValue": 2,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "A6",
"description": "In your opinion, what was the main reason for the discrimination? :",
"value": "1. My age,\n2. My race, ethnicity,\n3. My nationality,\n4. My sex,\n5. My religion,\n6. My disability/ mental or physical illness,\n7. My family responsibilities,\n8. My political beliefs,\n9. Other reason,\n10. Cant choose",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A7",
"description": "Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse? :",
"value": "0. Does not apply (I do not have a job/ superior/ co-worker),\n1. Yes,\n2. No",
"maxValue": 2,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "A8A",
"description": "To what extent do you agree or disagree with the following statements? : Workers need strong trade unions to protect their interests.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A8B",
"description": "To what extent do you agree or disagree with the following statements? : Strong trade unions are bad for Australias economy.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A9",
"description": "Suppose you could decide on your work situation at present. Which of the following would you prefer? :",
"value": "1. A full-time job (35 hours or more per week),\n2. A part-time job (10-34 hours per week),\n3. A job with less than 10 hours a week,\n4. No paid job at all,\n5. Cant choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A10",
"description": "Are you currently working for pay? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A11",
"description": "Think of the number of hours you work, and the money you earn in your main job, including any regular overtime.\tIf you had only one of these three choices, which of the following would you prefer? :",
"value": "1. Work longer hours and earn more money,\n2. Work the same number of hours and earn the same money,\n3. Work fewer hours and earn less money,\n4. Can’t choose",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12A",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is secure",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12B",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My income is high",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12C",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My opportunities for advancement are high",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12D",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is interesting",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12E",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : I can work independently",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12F",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job I can help other people",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12G",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : My job is useful to society",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A12H",
"description": "For each of these statements about your (main) job, please tick one box to show how much you agree or disagree that it applies to your job. : In my job, I have personal contact with other people",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A13A",
"description": "Now some more questions about your working conditions.\tPlease cross one box for each item below to show how often it applies to your work.\tHow often... : ... do you have to do hard physical work?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A13B",
"description": "Now some more questions about your working conditions.\tPlease cross one box for each item below to show how often it applies to your work.\tHow often... : ... do you find your work stressful?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A14A",
"description": "And how often... : … do you work at home during your usual working hours?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A14B",
"description": "And how often... : .…does your job involve working on weekends?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A15",
"description": "Which of the following statements best describes how your working hours are decided? (By working hours we mean here the times you start and finish work, and not the total hours you work per week or month.) :",
"value": "1. Starting and finishing times are decided by my employer and I cannot change them on my own,\n2. I can decide the time I start and finish work, within certain limits,\n3. I am entirely free to decide when I start and finish work",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A16",
"description": "Which of the following statements best describes your usual working schedule in your main job? :",
"value": "1. I have a regular schedule or shift (daytime, evening, or night),\n2. I have a schedule or shift which regularly changes (for example, from days to evenings or to nights),\n3. I have a schedule where daily working times are decided at short notice by my employer,\n4. Can’t choose",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A17",
"description": "Which of the following statements best describes how your daily work is organised? :",
"value": "1. I am free to decide how my daily work is organised,\n2. I can decide how my daily work is organised, within certain limits,\n3. I am not free to decide how my daily work is organised,\n4. Can’t choose",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A18",
"description": "How difficult would it be for you to take an hour or two off during working hours, to take care of personal or family matters? :",
"value": "1. Not difficult at all,\n2. Not too difficult,\n3. Somewhat difficult,\n4. Very difficult,\n5. Can’t choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A19A",
"description": "How often do you feel that... : …the demands of your job interfere with your family life?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A19B",
"description": "How often do you feel that... : …the demands of your family life interfere with your job?",
"value": "1. Always,\n2. Often,\n3. Sometimes,\n4. Hardly ever,\n5. Never,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A20",
"description": "How much of your past work experience and/ or job skills can you make use of in your present job? :",
"value": "1. Almost none,\n2. A little,\n3. A lot,\n4. Almost all,\n5. Can’t choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A21",
"description": "Over the past 12 months, have you had any training to improve your job skills, either at the workplace or somewhere else? :",
"value": "1. Yes,\n2. No,\n3. Can’t choose",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A22A",
"description": "In general, how would you describe relations at your workplace… : ... between management and employees?",
"value": "1. Very good,\n2. Quite good,\n3. Neither good nor bad,\n4. Quite bad,\n5. Very bad,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A22B",
"description": "In general, how would you describe relations at your workplace… : ... between workmates/ colleagues?",
"value": "1. Very good,\n2. Quite good,\n3. Neither good nor bad,\n4. Quite bad,\n5. Very bad,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A23",
"description": "How satisfied are you in your (main) job? :",
"value": "1. Completely satisfied,\n2. Very satisfied,\n3. Fairly satisfied,\n4. Neither satisfied nor dissatisfied,\n5. Fairly dissatisfied,\n6. Very dissatisfied,\n7. Completely dissatisfied,\n8. Can’t choose",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A24A",
"description": "To what extent do you agree or disagree with each of the following statements? : I am willing to work harder than I have to in order to help the firm or organisation I work for succeed.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A24B",
"description": "To what extent do you agree or disagree with each of the following statements? : I am proud to be working for my firm or organisation.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A24C",
"description": "To what extent do you agree or disagree with each of the following statements? : I would turn down another job that offered quite a bit more pay in order to stay with this organisation.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A25A",
"description": "Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : Given the chance, I would change my present type of work for something diffe",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A25B",
"description": "Now think of the type of work you do, irrespective of the firm or organisation you work for.To what extent do you agree or disagree with each of the following statements? : I am proud of the type of work I do.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A26",
"description": "How difficult or easy do you think it would be for you to find a job at least as good as your current one? :",
"value": "1. Very easy,\n2. Fairly easy,\n3. Neither easy nor difficult,\n4. Fairly difficult,\n5. Very difficult,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A27",
"description": "All in all, how likely is it that you will try to find a job with another firm or organisation within the next 12 months? :",
"value": "1. Very likely,\n2. Likely,\n3. Unlikely,\n4. Very unlikely,\n5. Can’t choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A28",
"description": "To what extent, if at all, do you worry about the possibility of losing your job? :",
"value": "1. I worry a great deal,\n2. I worry to some extent,\n3. I worry a little,\n4. I don’t worry at all",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29A",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to accept a job that requires new skills.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29B",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to accept a position with lower pay.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29C",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to accept temporary employment.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29D",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to travel longer to get to work.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29E",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to move within Australia.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A29F",
"description": "To what extent do you agree or disagree with the following statements?\tIn order to avoid unemployment I would be willing … : to move to a different country.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A30",
"description": "Over the past 12 months, in addition to your main job, have you done any other work for pay? :",
"value": "1. Yes, during all of that period,\n2. Yes, during most of that period,\n3. Yes, during some of that period,\n4. No",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A31",
"description": "Over the entire 12 months, how much did you earn from your additional job(s) in total compared with your main job? From my additional job(s), I earned... :",
"value": "1. much less than from main job,\n2. less than from main job,\n3. about the same as from main job,\n4. more than from main job,\n5. much more than from main job,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A32",
"description": "Have you ever had a paid job for one year or more? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A33A",
"description": "When did your last paid job end? : Year (YYYY)",
"@type": "propertyValue"
},
{
"name": "A33B",
"description": "When did your last paid job end? : Month (MM)",
"@type": "propertyValue"
},
{
"name": "A34",
"description": "How satisfied were you in your last job? :",
"value": "1. Completely satisfied,\n2. Very satisfied,\n3. Fairly satisfied,\n4. Neither satisfied nor dissatisfied,\n5. Fairly dissatisfied,\n6. Very dissatisfied,\n7. Completely dissatisfied,\n8. Can’t choose",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A35",
"description": "What was the main reason that your job ended? :",
"value": "1. I reached retirement age,\n2. I retired early, by choice,\n3. I retired early, not by choice,\n4. I became (permanently) disabled,\n5. My place of work shut down,\n6. I was dismissed,\n7. My term of employment/contract ended,\n8. Family responsibilities,\n9. I got married",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A36",
"description": "Would you like to have a paid job, either now or in the future? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A37",
"description": "How likely do you think it is that you would find a job? :",
"value": "1. Very likely,\n2. Likely,\n3. Unlikely,\n4. Very unlikely,\n5. Cant choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A38",
"description": "To what extent, if at all, do you worry about the possibility of not finding a job? :",
"value": "1. I worry a great deal,\n2. I worry to some extent,\n3. I worry a little,\n4. I don’t worry at all",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39A",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to accept a job that requires new skills.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39B",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to accept a position with low pay.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39C",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to accept temporary employment.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39D",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to travel a long time to get to work.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39E",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to move within Australia.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A39F",
"description": "To what extent do you agree or disagree with the following statements? \tIn order to get a job I would be willing... : to move to a different country.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40A",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a public employment agency?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40B",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Registered at a private employment agency?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40C",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Answered advertisements for jobs?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40D",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Advertised yourself for a job, for example on the internet or in newspapers?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40E",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Applied directly to employers?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A40F",
"description": "Thinking about the past 12 months, have you done any of the following in order to find a job? : Asked relatives, friends, or colleagues to help you find a job?",
"value": "1. No,\n2. Yes, once or twice,\n3. Yes, more than twice",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A41",
"description": "Over the past 12 months, have you had any training to improve your job skills? :",
"value": "1. Yes,\n2. No,\n3. Can’t choose",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A42",
"description": "Are you currently looking for a job? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A43",
"description": "What is your main source of economic support? :",
"value": "1. Current spouse/ partner,\n2. Other family members,\n3. Pension (private/ state),\n4. Unemployment benefits,\n5. Social assistance/ welfare,\n6. Occasional work,\n7. Student loans/ stipends,\n8. Savings,\n9. Investments or rental income,\n95. Other",
"maxValue": 95,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A44",
"description": "To what extent, if at all, do you worry about the possibility of losing this main economic support? :",
"value": "1. I worry a great deal,\n2. I worry to some extent,\n3. I worry a little,\n4. I don’t worry at all",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A45",
"description": "Over the past five years, have you ever worked for pay? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A46A",
"description": "Over the past five years, did you experience any of the following changes in your working life? : I was unemployed for a period longer than three months.",
"value": "1. No,\n2. Yes, once,\n3. Yes, twice,\n4. Yes, three times,\n5. Yes, more than three times,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A46B",
"description": "Over the past five years, did you experience any of the following changes in your working life? : I changed my employer.",
"value": "1. No,\n2. Yes, once,\n3. Yes, twice,\n4. Yes, three times,\n5. Yes, more than three times,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A46C",
"description": "Over the past five years, did you experience any of the following changes in your working life? : I changed my occupation.",
"value": "1. No,\n2. Yes, once,\n3. Yes, twice,\n4. Yes, three times,\n5. Yes, more than three times,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A46D",
"description": "Over the past five years, did you experience any of the following changes in your working life? : I started my own business/ became self-employed.",
"value": "1. No,\n2. Yes, once,\n3. Yes, twice,\n4. Yes, three times,\n5. Yes, more than three times,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A46E",
"description": "Over the past five years, did you experience any of the following changes in your working life? : I took up an additional job.",
"value": "1. No,\n2. Yes, once,\n3. Yes, twice,\n4. Yes, three times,\n5. Yes, more than three times,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A47",
"description": "How would you generally rate your current financial situation?\tMy current financial situation is… :",
"value": "1. Very good,\n2. Good,\n3. Neither good nor bad,\n4. Bad,\n5. Very bad,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A48",
"description": "Compared to five years ago, how do you think your financial situation has changed?\tMy current financial situation is… :",
"value": "1. much better than five years ago,\n2. somewhat better than five years ago,\n3. the same as five years ago,\n4. somewhat worse than five years ago,\n5. much worse than five years ago,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A49",
"description": "And what will your financial situation likely be in five years?\tMy financial situation in five years will likely be… :",
"value": "1. much better than today,\n2. somewhat better than today,\n3. the same as today,\n4. somewhat worse than today,\n5. much worse than today,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A50A",
"description": "To what extent do you agree or disagree with the following statements? : It is good for Australias economy that people aged 60 and over are employed.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A50B",
"description": "To what extent do you agree or disagree with the following statements? : When people aged 60 and over are employed, they take jobs away from younger people.",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree,\n6. Can’t choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51A",
"description": "How much do you agree or disagree with the following statements? : Unions are active in my workplace",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51B",
"description": "How much do you agree or disagree with the following statements? : My employer opposes unions in my workplace",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51C",
"description": "How much do you agree or disagree with the following statements? : Unions should have a greater role in setting pay and working conditions",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51D",
"description": "How much do you agree or disagree with the following statements? : When unions run public campaigns, I trust what they are saying",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51E",
"description": "How much do you agree or disagree with the following statements? : These days, individuals can represent their own interests in the workplace without the help of unions",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "A51F",
"description": "How much do you agree or disagree with the following statements? : Union corruption is a serious problem in Australia today",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B1",
"description": "I feel connected with people at work (e.g. co-workers, customers, clients): :",
"value": "1. Disagree Strongly,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Agree Strongly",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B2",
"description": "I have caring responsibilities (e.g. at least 4 hours/week) for a friend or family member with a chronic disability or illness? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B3",
"description": "I believe my employer has a responsibility for my mental health and well-being? :",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Strongly Agree",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4A",
"description": "In the past 4 weeks how often have you felt: : Nervous",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4B",
"description": "In the past 4 weeks how often have you felt: : Hopeless",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4C",
"description": "In the past 4 weeks how often have you felt: : Restless or fidgety",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4D",
"description": "In the past 4 weeks how often have you felt: : So depressed that nothing could cheer you up",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4E",
"description": "In the past 4 weeks how often have you felt: : That everything was an effort",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B4F",
"description": "In the past 4 weeks how often have you felt: : Worthless",
"value": "1. None of the Time,\n2. A Little of the Time,\n3. Some of the Time,\n4. Most of the Time,\n5. All of the Time",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B5",
"description": "If you had a mental health issue (e.g. depression, anxiety), how likely would you be to tell your supervisor? :",
"value": "1. Very Unlikely,\n2. Unlikely,\n3. Unsure,\n4. Likely,\n5. Very likely",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B6",
"description": "How many days in the last 4 weeks did you go to work while suffering from health problems? : Days",
"@type": "propertyValue"
},
{
"name": "B7",
"description": "On these days when you went to work suffering from health problems, what percentage of your time were you as productive as usual?",
"value": "1. 1,\n2. 2,\n3. 3,\n4. 4,\n5. 5,\n6. 6,\n7. 7,\n8. 8,\n9. 9,\n10. 10,\n11. 11,\n12. 12,\n13. 13,\n14. 14,\n15. 15,\n16. 16,\n17. 17,\n18. 18,\n19. 19,\n20. 20,\n21. 21,\n22. 22,\n23. 23,\n24. 24,\n25. 25,\n26. 26,\n27. 27,\n28. 28,\n29. 29,\n30. 30,\n31. 31,\n32. 32,\n33. 33,\n34. 34,\n35. 35,\n36. 36,\n37. 37,\n38. 38,\n39. 39,\n40. 40,\n41. 41,\n42. 42,\n43. 43,\n44. 44,\n45. 45,\n46. 46,\n47. 47,\n48. 48,\n49. 49,\n50. 50,\n51. 51,\n52. 52,\n53. 53,\n54. 54,\n55. 55,\n56. 56,\n57. 57,\n58. 58,\n59. 59,\n60. 60,\n61. 61,\n62. 62,\n63. 63,\n64. 64,\n65. 65,\n66. 66,\n67. 67,\n68. 68,\n69. 69,\n70. 70,\n71. 71,\n72. 72,\n73. 73,\n74. 74,\n75. 75,\n76. 76,\n77. 77,\n78. 78,\n79. 79,\n80. 80,\n81. 81,\n82. 82,\n83. 83,\n84. 84,\n85. 85,\n86. 86,\n87. 87,\n88. 88,\n89. 89,\n90. 90,\n91. 91,\n92. 92,\n93. 93,\n94. 94,\n95. 95,\n96. 96,\n97. 97,\n98. 98,\n99. 99,\n100. 100",
"maxValue": 100,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B8A",
"description": "How much do you disagree or agree with the following statements? : I feel confident helping to set targets/goals in my work area",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Strongly Agree",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B8B",
"description": "How much do you disagree or agree with the following statements? : I can think of many ways to reach my current work goals",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Strongly Agree",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B8C",
"description": "How much do you disagree or agree with the following statements? : I can get through difficult times at work, because Ive experienced difficulty before",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Strongly Agree",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B8D",
"description": "How much do you disagree or agree with the following statements? : I always look on the bright side of things regarding my job",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Somewhat Disagree,\n4. Somewhat Agree,\n5. Agree,\n6. Strongly Agree",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B9A",
"description": "How much do you disagree or agree with the following statements about your supervisor? : My supervisor treats me with kindness and consideration",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Neither Disagree or Agree,\n4. Agree,\n5. Strongly Agree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B9B",
"description": "How much do you disagree or agree with the following statements about your supervisor? : My supervisor shows concern for my rights as an employee",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Neither Disagree or Agree,\n4. Agree,\n5. Strongly Agree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B9C",
"description": "How much do you disagree or agree with the following statements about your supervisor? : My supervisor takes steps to deal with me in a truthful manner.",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Neither Disagree or Agree,\n4. Agree,\n5. Strongly Agree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B10",
"description": "Generally speaking, – would you say that most people can be trusted or that you can’t be too careful in dealing with people? :",
"value": "1. Can be trusted,\n2. Can’t be too careful",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B11",
"description": "Would you say that you can trust your manager(s) a lot, some, only a little or not at all? :",
"value": "1. Trust them a lot,\n2. Trust them some,\n3. Trust them only a little,\n4. Trust them not at all,\n5. Does not apply",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "B12",
"description": "I feel extremely frustrated by how I have been treated by my organisation :",
"value": "1. Strongly Disagree,\n2. Disagree,\n3. Neither Disagree or Agree,\n4. Agree,\n5. Strongly Agree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C1",
"description": "Have you trained/retrained for a particular occupation in the last five years? :",
"value": "1. No,\n2. Yes, in: Please write the name or title the occupation",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C2",
"description": "Are you seeking paid work currently or will you be seeking paid work in the next five years? [NOTE- this need not be the occupation for which you have trained] :",
"value": "1. Currently seeking paid work,\n2. Intend to seek paid work in the next five years,\n3. Not seeking paid work now or in the next five years",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C4",
"description": " Are you currently working in an internship? :",
"value": "1. Yes, paid internship,\n2. Yes, unpaid internship,\n3. No",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C5",
"description": "How many internships (either paid or unpaid) have you completed in the last five years?",
"@type": "propertyValue"
},
{
"name": "C6",
"description": "How many of the people you know have helped you find paid work in the last five years? :",
"value": "1. None,\n2. 1 or more? Please record the approximate number of people:",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C7",
"description": "How many of the people you know could you call on to help you find paid work within the next five years? :",
"value": "1. None,\n2. 1 or more? Please record the approximate number of people:",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C8SB",
"description": "We would now like to ask some questions about your closest friendDoes this friend regularly give you support in your life, and if so, what is the main type of support that they give you? :",
"value": "1. Does not regularly give me support,\n2. Someone to confide in, emotional/positive support,\n3. Advice and information,\n4. Fun and good times,\n5. Training or assistance with skills,\n6. Favours - transport, repairs, lifting, errands, borrowing things,\n7. Financial support,\n8. Childcare,\n9. Dont know,\n10. Other: please record",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C8A",
"description": "We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either",
"value": "1. Full time paid work (35+ hours/week) in the occupation for which I most recently trained,\n2. Full time paid work (35+ hours/week) in another occupation,\n3. Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained,\n4. Part time paid work (less than 35 hours/week) in another occupation,\n5. Dont know/not applicable (e.g. retired, disability, full time carer, etc)",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C8B",
"description": "We would now like to ask some questions about the last person to help or support you in finding work in the last five years.If no one has helped you in this time, please tell us about the person most likely to help or support you in future.In either",
"value": "1. Full time paid work (35+ hours/week) in the occupation for which I most recently trained,\n2. Full time paid work (35+ hours/week) in another occupation,\n3. Part time paid work (less than 35 hours/week) in the occupation for which I most recently trained,\n4. Part time paid work (less than 35 hours/week) in another occupation,\n5. Dont know/not applicable (e.g. retired, disability, full time carer, etc)",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C9SB",
"description": "Do you regularly give this friend support in their life, and if so, what is the main type of support that you give them? :",
"value": "1. Do not regularly give support,\n2. Someone to confide in, emotional/positive support,\n3. Advice and information,\n4. Fun and good times,\n5. Training or assistance with skills,\n6. Favours - transport, repairs, lifting, errands, borrowing things,\n7. Financial support,\n8. Childcare,\n9. Dont know,\n10. Other: please record",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C9A",
"description": "Did/could they help or support you in finding a permanent or a contract job? : If helped you in last five years: OR",
"value": "1. Permanent paid work,\n2. Contracted paid work",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C9B",
"description": "Did/could they help or support you in finding a permanent or a contract job? : Most likely help you in future",
"value": "1. Permanent paid work,\n2. Contracted paid work",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C10SB",
"description": "Did this friend help or support you in finding paid work in the last five years, and if so, what was the main way in which they helped/supported you? :",
"value": "1. Did not help or support me in finding paid work in the last five years,\n2. Told me about the work or vacancy,\n3. Referred or recommended me to someone that they personally knew who then employed me,\n4. Got or gave me work directly,\n5. Gave me emotional/positive support in applying for the work,\n6. Gave or helped me with training for the work,\n7. Helped me with tasks relevant to getting the work (such as preparing a CV etc),\n8. Helped me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n9. Helped me with transport to the job interview or in commencing the work,\n10. Helped me with childcare during the job interview or commencing the work,\n11. Dont know/not applicable (e.g. retired, disability, full time carer, etc),\n12. Other: please record",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C10A",
"description": "How many months and/or years was the contract for? : Months",
"@type": "propertyValue"
},
{
"name": "C10B",
"description": "How many months and/or years was the contract for? : Years",
"@type": "propertyValue"
},
{
"name": "C11SB",
"description": "Did you help or support this friend to find paid work in the last five years, and if so, what was the main way in which you helped/supported them? :",
"value": "1. Did not help or support them in finding paid work in the last five years,\n2. Told them about the work or vacancy,\n3. Referred or recommended them to someone that I personally knew who then employed them,\n4. Got or gave them work directly,\n5. Gave or helped them with training for the work,\n6. Helped them with tasks relevant to getting the work (such as preparing a CV etc),\n7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n8. Helped them with transport to the job interview or in commencing the work,\n9. Helped them with childcare during the job interview or commencing the work,\n10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc),\n12. Other: please record",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C11A",
"description": "What was/would be the main form of help or support that they gave/would give you to find paid work? : If helped you in last five years: OR",
"value": "1. Tell me about a particular job or vacancy,\n2. Refer or recommend me to someone that they personally knew who then employed me,\n3. Give me emotional/positive support in applying for the work,\n4. Give or help me with training for the work,\n5. Help me with tasks relevant to getting the work (such as preparing a CV etc),\n6. Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n7. Help me with transport to the job interview or in commencing the work,\n8. Help me with childcare during the job interview or commencing the work,\n9. Dont know/not applicable (e.g. retired, disability, full time carer, etc),\n10. Other: please record",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C11B",
"description": "What was/would be the main form of help or support that they gave/would give you to find paid work? : Most likely help you in future",
"value": "1. Tell me about a particular job or vacancy,\n2. Refer or recommend me to someone that they personally knew who then employed me,\n3. Give me emotional/positive support in applying for the work,\n4. Give or help me with training for the work,\n5. Help me with tasks relevant to getting the work (such as preparing a CV etc),\n6. Help me financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n7. Help me with transport to the job interview or in commencing the work,\n8. Help me with childcare during the job interview or commencing the work,\n9. Dont know/not applicable (e.g. retired, disability, full time carer, etc),\n10. Other: please record",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C12SB",
"description": "What is the main thing your friend does with their time? :",
"value": "1. Employed full-time (works 30+ paid hours/wk),\n2. Employed part-time (works ls 30 paid hours/wk),\n3. No paid work - internship,\n5. No paid work - volunteer,\n6. No paid work - unemployed, looking for work,\n7. No paid work - unemployed, not looking for work,\n8. No paid work - cares for children,\n9. No paid work - cares for adults,\n10. No paid work - retired,\n11. Dont know,\n12. Other: please record",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C12A",
"description": "Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : If you helped in last five years",
"value": "1. Did not/would not be able to help or support them in finding paid work in the last/next five years,\n2. Told them about the work or vacancy,\n3. Referred or recommended them to someone that I personally knew who then employed them,\n4. Got or gave them work directly,\n5. Gave or helped them with training for the work,\n6. Helped them with tasks relevant to getting the work (such as preparing a CV etc),\n7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n8. Helped them with transport to the job interview or in commencing the work,\n9. Helped them with childcare during the job interview or commencing the work,\n10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc),\n11. Other: please record",
"maxValue": 11,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C12B",
"description": "Did you help or support this person to find paid work in the last five years, or if not, would you be likely to support them in the future?If yes, what is the main way in which you did or would help or support them? : Most likely to help in future",
"value": "1. Did not/would not be able to help or support them in finding paid work in the last/next five years,\n2. Told them about the work or vacancy,\n3. Referred or recommended them to someone that I personally knew who then employed them,\n4. Got or gave them work directly,\n5. Gave or helped them with training for the work,\n6. Helped them with tasks relevant to getting the work (such as preparing a CV etc),\n7. Helped them financially with things related to the work (buying uniforms, tools, gave or lent me money or housing while I looked for work, etc),\n8. Helped them with transport to the job interview or in commencing the work,\n9. Helped them with childcare during the job interview or commencing the work,\n10. Dont know/not applicable (e.g. they are retired, disability, full time carer, etc),\n11. Other: please record",
"maxValue": 11,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C13SB",
"description": "What is your friend’s sex and partner status? :",
"value": "1. Single male, no children,\n2. Single female, no children,\n3. Single male with children (that live with them at least some of the time),\n4. Single female with children (that live with them at least some of the time),\n5. Partnered male, no children,\n6. Partnered female, no children,\n7. Partnered male with children (that live with them at least some of the time),\n8. Partnered female with children (that live with them at least some of the time),\n9. Dont know",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C13A",
"description": "When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only",
"value": "1. Employed full-time (works 30+ paid hours/wk),\n2. Employed part-time (works ls 30 paid hours/wk),\n3. No paid work - internship,\n5. No paid work - volunteer,\n6. No paid work - unemployed, looking for work,\n7. No paid work - unemployed, not looking for work,\n8. No paid work - cares for children,\n9. No paid work - cares for adults,\n10. No paid work - retired,\n11. Dont know,\n12. Other: please record",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C13B",
"description": "When this person helped you in the past five years, what was the main thing they did at the time when they helped you?OR: If referring to the person most likely to help you in future, what is the main thing that they do now? Please cross ONE box only",
"value": "1. Employed full-time (works 30+ paid hours/wk),\n2. Employed part-time (works ls 30 paid hours/wk),\n3. No paid work - internship,\n5. No paid work - volunteer,\n6. No paid work - unemployed, looking for work,\n7. No paid work - unemployed, not looking for work,\n8. No paid work - cares for children,\n9. No paid work - cares for adults,\n10. No paid work - retired,\n11. Dont know,\n12. Other: please record",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C14A",
"description": "What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR",
"value": "1. Single male, no children,\n2. Single female, no children,\n3. Single male with children (that live with them at least some of the time),\n4. Single female with children (that live with them at least some of the time),\n5. Partnered male, no children,\n6. Partnered female, no children,\n7. Partnered male with children (that live with them at least some of the time),\n8. Partnered female with children (that live with them at least some of the time),\n9. Dont know",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C14B",
"description": "What was this persons sex and partner status at the time when they helped you?Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)",
"value": "1. Single male, no children,\n2. Single female, no children,\n3. Single male with children (that live with them at least some of the time),\n4. Single female with children (that live with them at least some of the time),\n5. Partnered male, no children,\n6. Partnered female, no children,\n7. Partnered male with children (that live with them at least some of the time),\n8. Partnered female with children (that live with them at least some of the time),\n9. Dont know",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C15SB",
"description": "What term would you use to best describe your relationship to this person? :",
"value": "1. Just close friend (no other relation),\n2. Close school friend,\n3. Close university, Tafe or college friend,\n4. Partner,\n5. Ex-partner,\n6. Child,\n7. Aunt or uncle,\n8. Cousin,\n9. Grandparent,\n10. Colleague - met through internship program,\n11. Colleague - other,\n12. Boss - met through internship program,\n13. Boss - other,\n14. Team-mate,\n15. Church or religious connection,\n16. Dont know,\n17. Other: please record",
"maxValue": 17,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C16SB",
"description": "How close do you feel to this person? (As in now, not when they might or might not have helped in the past) :",
"value": "1. Extremely close - 10,\n2. 9,\n3. 8,\n4. 7,\n5. 6,\n6. 5,\n7. 4,\n8. 3,\n10. 2,\n11. 1,\n12. Not close at all - 0,\n13. Dont know",
"maxValue": 13,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C16A",
"description": "What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR",
"value": "1. Friend of a friend,\n2. Distant friend,\n3. Close friend,\n4. School friend,\n5. University, Tafe or college friend,\n6. Partner,\n7. Ex-partner,\n8. Child,\n9. Aunt/uncle/cousin/grandparent,\n10. Colleague - met through internship program,\n11. Colleague - other,\n12. Boss - met through internship program,\n13. Boss - other,\n14. Team-mate,\n15. Church or religious connection,\n16. Dont know,\n17. Other: please record",
"maxValue": 17,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C16B",
"description": "What term would you use to best describe your relationship to this person at the time when they helped you? Or what is it now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)",
"value": "1. Friend of a friend,\n2. Distant friend,\n3. Close friend,\n4. School friend,\n5. University, Tafe or college friend,\n6. Partner,\n7. Ex-partner,\n8. Child,\n9. Aunt/uncle/cousin/grandparent,\n10. Colleague - met through internship program,\n11. Colleague - other,\n12. Boss - met through internship program,\n13. Boss - other,\n14. Team-mate,\n15. Church or religious connection,\n16. Dont know,\n17. Other: please record",
"maxValue": 17,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C17A",
"description": "How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They were: (If helped you in last five years): OR",
"value": "1. Extremely close - 10,\n2. 9,\n3. 8,\n4. 7,\n5. 6,\n6. 5,\n7. 4,\n8. 3,\n10. 2,\n11. 1,\n12. Not close at all - 0,\n13. Dont know",
"maxValue": 13,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C17B",
"description": "How close did you feel to this person at the time when they helped you?Or how close do you feel to them now, if you are referring to the person most likely to help you in future? : They are: (If most likely help you in future)",
"value": "1. Extremely close - 10,\n2. 9,\n3. 8,\n4. 7,\n5. 6,\n6. 5,\n7. 4,\n8. 3,\n10. 2,\n11. 1,\n12. Not close at all - 0,\n13. Dont know",
"maxValue": 13,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C18",
"description": "All things considered, how happy are you with your life in general? :",
"value": "1. Extremely happy - 10,\n2. 9,\n3. 8,\n4. 7,\n5. 6,\n6. 5,\n7. 4,\n8. 3,\n9. 2,\n10. 1,\n11. Not happy at all - 0,\n12. Dont know",
"maxValue": 12,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C19",
"description": "What was the most common emotion you remember experiencing in the last week (from today)? :",
"value": "1. Enthusiastic,\n2. Caring and sympathetic,\n3. Ashamed,\n4. Calm and peaceful,\n5. Envious (of other’s things/ abilities/ lives),\n6. Interested and/or absorbed,\n7. Embarrassed,\n8. Confident,\n9. Assertive and empowered,\n10. Love for others,\n11. Loved by others,\n12. Hope,\n13. Depressed,\n14. Enjoyment and fun,\n15. Surprised,\n16. Sad,\n17. Anxious,\n18. Disgusted,\n19. Tired,\n20. Stressed,\n21. Jealous (of other’s relationships),\n22. Happy,\n23. Bored and distracted,\n24. Awkward,\n25. Energetic,\n26. Lonely,\n27. Angry,\n28. Agreeable and receptive,\n29. Guilty,\n30. Proud,\n31. Afraid,\n32. Frustrated,\n33. Other (Please describe):",
"maxValue": 33,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C20",
"description": "We would now like to ask you about some emotions that are often described as ‘positive’ emotions.What was the most common positive emotion that you remember experiencing in the last week (from today)? :",
"value": "1. Confident,\n2. Enthusiastic,\n3. Proud,\n4. Caring and sympathetic,\n5. Calm and peaceful,\n6. Energetic,\n7. Happy,\n8. Interested and/or absorbed,\n9. Agreeable and receptive,\n10. Assertive and empowered,\n11. Love for others,\n12. Loved by others,\n13. Hope,\n14. Enjoyment and fun,\n15. Other (Please describe):",
"maxValue": 15,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C21",
"description": "Can you remember the last time that you experienced this positive emotion?Thinking back to that occasion, what was the main thing you were doing? :",
"value": "1. Paid work,\n2. Care for children, adults, pets,\n3. Unpaid work (housework, garden etc),\n4. Free time and leisure,\n5. Travel,\n6. Sports/Exercise,\n7. Personal care,\n8. Sleep,\n9. Watching media (TV, DVD, Online content),\n10. Listening to music,\n11. Engaged with social media (interacting, posting),\n12. Educational activities,\n13. Dont know/can’t remember,\n14. Other: please record",
"maxValue": 14,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C22",
"description": "Thinking about the last time that you experienced this positive emotion, where were you and who were you with? :",
"value": "1. At home - Alone,\n2. At home - Just with partner,\n3. At home - Just with children,\n4. At home - Just with partner and kids,\n5. At home - Any other mix people (friends, family, partners, kids, etc),\n6. At work - Alone,\n7. At work - Just with colleagues,\n8. At work - Just with boss,\n9. At work - Just with clients,\n10. At work - Any other mix people (boss, clients, colleagues etc),\n11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction),\n12. Elsewhere (neither home nor work) - Just with partner and kids,\n13. Elsewhere (neither home nor work) - Just with friends,\n14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc),\n15. Don’t know/can’t remember",
"maxValue": 15,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C23",
"description": "Thinking about the last time you experienced this positive emotion, did you have to work to make yourself feel that way, or did you just feel that way naturally? Or was it a bit of both? :",
"value": "1. Worked to make myself feel that way,\n2. Just felt that way naturally,\n3. Bit of both,\n4. Dont know/can’t remember",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C24",
"description": "We would now like to ask you about some emotions that are often described as ‘negative’ emotions.What was the most common negative emotion that you remember experiencing in the last week (from today)? :",
"value": "1. Sad,\n2. Anxious,\n3. Disgusted,\n4. Tired,\n5. Stressed,\n6. Bored and distracted,\n7. Awkward,\n8. Depressed,\n9. Lonely,\n10. Angry,\n11. Ashamed,\n12. Guilty,\n13. Jealous (of other’s relationships),\n14. Envious (of other’s things/ abilities/ lives),\n15. Embarrassed,\n16. Afraid,\n17. Hopeless,\n18. Frustrated,\n19. Other (Please describe):",
"maxValue": 19,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C25",
"description": "Can you remember the last time that you experienced this negative emotion?Thinking back to that occasion, what was the main thing you were doing? :",
"value": "1. Paid work,\n2. Care for children, adults, pets,\n3. Unpaid work (housework, garden etc),\n4. Free time and leisure,\n5. Travel,\n6. Sports/Exercise,\n7. Personal care,\n8. Sleep,\n9. Watching media (TV, DVD, Online content),\n10. Listening to music,\n11. Engaged with social media (interacting, posting),\n12. Educational activities,\n13. Dont know/can’t remember,\n14. Other: please record",
"maxValue": 14,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C26",
"description": "Thinking about the last time that you experienced this negative emotion, where were you and who were you with? :",
"value": "1. At home - Alone,\n2. At home - Just with partner,\n3. At home - Just with children,\n4. At home - Just with partner and kids,\n5. At home - Any other mix people (friends, family, partners, kids, etc),\n6. At work - Alone,\n7. At work - Just with colleagues,\n8. At work - Just with boss,\n9. At work - Just with clients,\n10. At work - Any other mix people (boss, clients, colleagues etc),\n11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction),\n12. Elsewhere (neither home nor work) - Just with partner and kids,\n13. Elsewhere (neither home nor work) - Just with friends,\n14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc),\n15. Don’t know/can’t remember",
"maxValue": 15,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C27",
"description": "Thinking about the last time you experienced this negative emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi",
"value": "1. Just showed the feeling,\n2. Tried to hide the feeling, but didnt succeed,\n3. Tried to hide the feeling, and succeeded,\n4. Tried to change the feeling into something else, didnt manage it,\n5. Tried to change the feeling into something else, and succeeded,\n6. Dont know/can’t remember",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C28",
"description": "I would now like to ask you about a few specific emotions that are less common, but might have come up in your life in the last week.Which one of the following emotions from the list below was the most common (if any) that you remember experiencing i",
"value": "1. Angry,\n2. Ashamed,\n3. Guilty,\n4. Jealous (of other’s relationships),\n5. Envious (of other’s things/ abilities/ lives),\n6. Embarrassed,\n7. Afraid,\n8. None – didnt experience any of these last week,\n9. Dont know/can’t say",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C29",
"description": "Can you remember the last time that you experienced this specific emotion?Thinking back to that occasion, what was the main thing you were doing? :",
"value": "1. Paid work,\n2. Care for children, adults, pets,\n3. Unpaid work (housework, garden etc),\n4. Free time and leisure,\n5. Travel,\n6. Sports/Exercise,\n7. Personal care,\n8. Sleep,\n9. Watching media (TV, DVD, Online content),\n10. Listening to music,\n11. Engaged with social media (interacting, posting),\n12. Educational activities,\n13. Dont know/can’t remember,\n14. Other: please record",
"maxValue": 14,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C30",
"description": "Thinking about the last time that you experienced this specfic emotion, where were you and who were you with? :",
"value": "1. At home - Alone,\n2. At home - Just with partner,\n3. At home - Just with children,\n4. At home - Just with partner and kids,\n5. At home - Any other mix people (friends, family, partners, kids, etc),\n6. At work - Alone,\n7. At work - Just with colleagues,\n8. At work - Just with boss,\n9. At work - Just with clients,\n10. At work - Any other mix people (boss, clients, colleagues etc),\n11. Elsewhere (neither home nor work) - Alone (including in crowds, strangers, no interaction),\n12. Elsewhere (neither home nor work) - Just with partner and kids,\n13. Elsewhere (neither home nor work) - Just with friends,\n14. Elsewhere (neither home nor work) - Any other mix people (friends, family, partners, kids, etc),\n15. Don’t know/can’t remember",
"maxValue": 15,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C31",
"description": "Thinking about the last time you experienced this specific emotion, did you:a) just let it out and show it,b) try to hide this emotion from the people around you,c) try to change the feeling into something else, ANDd) did you succeed or not at hidi",
"value": "1. Just showed the feeling,\n2. Tried to hide the feeling, but didnt succeed,\n3. Tried to hide the feeling, and succeeded,\n4. Tried to change the feeling into something else, didnt manage it,\n5. Tried to change the feeling into something else, and succeeded,\n6. Dont know/can’t remember",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "C32",
"description": "In those times when you feel an emotion that you don’t like and want to change it into something else, what is the most common thing you can do that typically works to help you change how you feel? :",
"value": "1. Deep breathing,\n2. Exercise or sports,\n3. Meditation,\n4. Prayer,\n5. Positive thoughts,\n6. Medication/natural remedy (over counter),\n7. Medication (prescription),\n8. Coffee,\n9. Eat food,\n10. Drink alcohol,\n11. Smoke cigarette,\n12. Use other substance,\n13. Talk to a friend/family about problem,\n14. Can’t do anything – nothing really works,\n15. Dont know/can’t remember,\n16. Other",
"maxValue": 16,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "D1",
"description": "On a scale of zero-to-ten, with zero being no effect and ten being a large effect, to what extent do you think the learning experiences a child has in their first three years of life affects how well they will do at school? :",
"value": "0. No effect - 0,\n1. 1,\n2. 2,\n3. 3,\n4. 4,\n5. Medium effect - 5,\n6. 6,\n7. 7,\n8. 8,\n9. 9,\n10. Large effect - 10",
"maxValue": 10,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "D2",
"description": "In Australia today most children attend some type of regular child care before they start school. Given this reality...\tA. What do you think is the best type of child care for childrenbirth – 2 years? :",
"value": "1. Family day care (home-based child care in the carers home),\n2. Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year),\n3. Child’s extended family (eg., grandparent),\n4. Nanny,\n5. Not sure",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "D3",
"description": "B. What do you think is the best type of child care for children 3 – 5 years? :",
"value": "1. Family day care (home-based child care in the carers home),\n2. Long day care (centre-based child care that usually operates from 7am - 6pm, 48 weeks of the year),\n3. Child’s extended family (eg., grandparent),\n4. Preschool / kindergarten (centre-based child care that usually operates between 9am - 3pm during school terms),\n5. Nanny,\n6. Not sure",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E1",
"description": "In all countries, there are differences or even conflicts between different social groups. In your opinion, in Australia how much conflict is there between older people and younger people? :",
"value": "1. Very strong conflicts,\n2. Strong conflicts,\n3. Not very strong conflicts,\n4. No conflicts,\n5. Can’t choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E2",
"description": "Do you think older workers (those aged 50 years and older) are treated by employers better, worse or about the same as younger workers? :",
"value": "1. Better,\n2. About the same,\n3. Worse",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E3",
"description": "Do you think older workers (those 50 years and older) on average contribute more or less to the workplace than younger workers? :",
"value": "1. More,\n2. Less,\n3. The same",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E4A",
"description": "Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by... : doctors, nurses or other health care professionals?",
"value": "1. Treated better,\n2. Worse,\n3. About the same",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E4B",
"description": "Do you think older people (aged 65 years and older) are treated better, worse or about the same as younger people by... : people they don’t know such as people in shops, on buses or in other public areas?",
"value": "1. Treated better,\n2. Worse,\n3. About the same",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E5",
"description": "Do you feel that people over 65 years get too much, too little, or about the right amount of respect from younger people these days? :",
"value": "1. Too much,\n2. Too little,\n3. Right amount,\n4. Don’t know",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E6",
"description": "How much influence do you think retired older Australians have? :",
"value": "1. Too much,\n2. Too little,\n3. About the right amount",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E7",
"description": "Right now, do you think older people are getting more than their fair share, less than their fair share, or about their fair share of government benefits? :",
"value": "1. More than their fair share,\n2. Less than their fair share,\n3. About their fair share",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E8",
"description": "Each generation has different social and economic opportunities over their lives. How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for younger people today? :",
"value": "1. Better for baby boomers,\n2. About the same,\n3. Better for younger people",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E9",
"description": "How would you say the life-long opportunities for baby boomers (aged 50 to 64 years now) compare to those for older people who have already retired? :",
"value": "1. Better for baby boomers,\n2. About the same,\n3. Better for the already retired people",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E10",
"description": "The Australian Government is gradually raising the eligibility age for the pension to 67 years by 2023. Do you: :",
"value": "1. Support raising the pension age to 67 years,\n2. Oppose raising the pension age to 67 years,\n3. Don’t know or are not sure",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E11A",
"description": "How often, in the past year... : has anyone shown prejudice against you or treated you unfairly because of your age?",
"value": "1. Never 0,\n2. 1,\n3. 2,\n4. 3,\n5. Very often 4,\n8. Dont know",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E11B",
"description": "How often, in the past year... : have you felt that someone showed you a lack of respect because of your age, for instance by ignoring or patronising you?",
"value": "1. Never 0,\n2. 1,\n3. 2,\n4. 3,\n5. Very often 4,\n8. Dont know",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E11C",
"description": "How often, in the past year... : has someone treated you badly because of your age, for example by insulting you or refusing you services?",
"value": "1. Never 0,\n2. 1,\n3. 2,\n4. 3,\n5. Very often 4,\n8. Dont know",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E12",
"description": "Thinking about everything you see and hear in the media (TV, online, radio, newspapers, magazines), do you think older adults (aged 65 years and older) are treated better, worse or about the same as younger people? :",
"value": "1. Better,\n2. Worse,\n3. About the same as younger people",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E13A",
"description": "How much do you agree or disagree that... : The media portrays older people in diverse ways?",
"value": "1. Strongly agree,\n2. Agree,\n3. Neutral,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E13B",
"description": "How much do you agree or disagree that... : There are generally as many positive stories in the media about ageing as there are negative stories?",
"value": "1. Strongly agree,\n2. Agree,\n3. Neutral,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E13C",
"description": "How much do you agree or disagree that... : There are enough older role models portrayed in the media?",
"value": "1. Strongly agree,\n2. Agree,\n3. Neutral,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E14",
"description": "How common or uncommon do you feel age discrimination is in Australia? :",
"value": "1. Very uncommon,\n2. Uncommon,\n3. Neither uncommon nor common,\n4. Common,\n5. Very common",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15A",
"description": "Because of your age, have you ever been... : Turned down for a position",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15B",
"description": "Because of your age, have you ever been... : Ignored",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15C",
"description": "Because of your age, have you ever been... : Treated with disrespect",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15D",
"description": "Because of your age, have you ever been... : Subjected to jokes",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15E",
"description": "Because of your age, have you ever been... : Verbally insulted",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15F",
"description": "Because of your age, have you ever been... : Refused service/had difficulty making a purchase",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15G",
"description": "Because of your age, have you ever been... : Denied access to service/products",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15H",
"description": "Because of your age, have you ever been... : Refused promotion",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15I",
"description": "Because of your age, have you ever been... : Discriminated against in some other way",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E15J",
"description": "Because of your age, have you ever been... : Physically abused",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16A",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : At greater risk of being made redundant",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16B",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Less likely to be promoted",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16C",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : More likely to have difficultly adapting to change",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16D",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Difficult to teach new things",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16E",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Not in the role as long",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16F",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Less likely to have the same technical skills",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16G",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : More expensive",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16H",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Less willing to work overtime",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "E16I",
"description": "Thinking about older workers (someone aged 55+ years), how strongly do you agree or disagree that, compared to younger workers they are... : Less productive",
"value": "1. Strongly agree,\n2. Agree,\n3. Netural,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "F1",
"description": "You may have heard about the idea that the world’s temperature may have been going up over the past 100 years, a phenomenon sometimes called ‘global warming’. What is your personal opinion regarding whether or not this has been happening? :",
"value": "1. Definitely has not been happening,\n2. Probably has not been happening,\n3. Unsure, but leaning toward it has not been happening,\n4. Not sure either way,\n5. Unsure, but leaning toward it has been happening,\n6. Probably has been happening,\n7. Definitely has been happening",
"maxValue": 7,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "F2",
"description": "How serious a threat do you think global warming will pose to you or your way of life in your lifetime? :",
"value": "1. Very serious,\n2. Fairly serious,\n3. Not very serious,\n4. Not at all serious",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "F3",
"description": "Please choose a statement from the following list that is closest to your own views on climate change. :",
"value": "1. Climate change is happening now and is mainly caused by human activities,\n2. Climate change is happening now but is not caused by humans,\n3. Climate change is not happening now,\n4. I dont know whether climate change is happening or not",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "F4",
"description": "We would like to know what you think about the proposal to create an emissions trading scheme in order to reduce greenhouse gas emissions. Both Labor Party leader Bill Shorten and Liberal Party Minister Malcolm Turnbull have favoured this approach. D",
"value": "1. Support the proposal,\n2. Oppose the proposal",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "F5",
"description": "Australias Renewable Energy Target sets a goal for the amount of power that will be supplied through solar, wind, and other renewable resources by the year 2020.Labor Party leader Bill Shorten has supported keeping this target at its current leve",
"value": "1. Keep the Renewable Energy Target at its current level,\n2. Reduce the Renewable Energy Target",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "G1",
"description": "Over the past decade, some Aboriginal leaders have proposed new approaches to Aboriginal policy. For example, they have suggested that Aboriginal schools should become more mainstream, that the same laws should apply to both Aboriginal and non-Abo",
"value": "1. I am aware of these proposals and they make me feel more accepting of Aboriginal claims for government support.,\n2. I am aware of these proposals but I already accept Aboriginal claims for government support.,\n3. I am aware of these proposals, but they do not make me feel more accepting of Aboriginal claims for government support.,\n4. No, I am not aware of these proposals.",
"maxValue": 4,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "H1",
"description": "Thinking about your main place of residence, which of the following best describes the type of insurance cover that you or someone who lives with you has purchased? The residence is currently covered by... :",
"value": "1. House and contents insurance,\n2. Contents insurance only,\n3. House insurance only,\n4. Neither house nor contents insurance,\n5. Unsure",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "H2",
"description": "If a natural disaster (e.g. bushfire, cyclone, major storm or flood) strikes your place of residence, how confident are you that your insurance will adequately cover repairs and/or replacement of losses? :",
"value": "1. Very confident,\n2. Somewhat confident,\n3. Unsure,\n4. Somewhat unconfident,\n5. Very unconfident",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "H3",
"description": "How likely is your place of residence to be struck by a natural disaster (e.g. bushfire, cyclone, major storm or flood)? :",
"value": "1. Very likely,\n2. Somewhat likely,\n3. Unsure,\n4. Somewhat unlikely,\n5. Very unlikely",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I1",
"description": "Are you ... :",
"value": "1. Male,\n2. Female",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I2",
"description": "When were you born? : Year (YYYY)",
"@type": "propertyValue"
},
{
"name": "I5",
"description": "What is the highest year of schooling you have completed? :",
"value": "1. Year 12 or equivalent,\n2. Year 11 or equivalent,\n3. Year 10 or equivalent,\n4. Completed primary school,\n5. Completed pre-primary school,\n6. Did not go to school",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I6",
"description": "What is the highest educational qualification you have completed outside of school? :",
"value": "1. Doctorate by research,\n2. Doctorate by coursework,\n3. Masters Degree,\n4. Graduate Diploma,\n5. Graduate Certificate,\n6. Bachelor Degree,\n7. Advanced Diploma or Associate Degree,\n8. Diploma,\n9. Certificate IV,\n10. Certificate III,\n11. Certificate II,\n12. Certificate I,\n13. No post-school qualification",
"maxValue": 13,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I7",
"description": "Are you currently working for pay, did you work for pay in the past, or have you never been in paid work? :",
"value": "1. I am currently in paid work,\n2. I am currently not in paid work but I had paid work in the past,\n3. I have never had paid work",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I13ANZSCO1",
"description": "Code for group: ANZSCO2013v1.2 Level: 0",
"value": "0. Operational codes (Aus),\n1. Managers,\n2. Professionals,\n3. Technicians and Trades Workers,\n4. Community and Personal Service Workers,\n5. Clerical and Administrative Workers,\n6. Sales Workers,\n7. Machinery Operators and Drivers,\n8. Labourers,\n9. Operational codes (NZ)",
"maxValue": 9,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "I15ANZSIC1",
"description": "Code for group: ANZSIC Level: 0",
"value": "1. Agriculture, Forestry and Fishing,\n2. Mining,\n3. Manufacturing,\n4. Electricity, Gas, Water and Waste Services,\n5. Construction,\n6. Wholesale Trade,\n7. Retail Trade,\n8. Accommodation and Food Services,\n9. Transport, Postal and Warehousing,\n10. Information Media and Telecommunications,\n11. Financial and Insurance Services,\n12. Rental, Hiring and Real Estate Services,\n13. Professional, Scientific and Technical Services,\n14. Administrative and Support Services,\n15. Public Administration and Safety,\n16. Education and Training,\n17. Health Care and Social Assistance,\n18. Arts and Recreation Services,\n19. Other Services,\n20. Blank,\n21. Not codeable",
"maxValue": 21,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I16",
"description": "Which of the following best describes your current situation? :",
"value": "1. In paid work (as an employee, self-employed, or working for your own family’s business),\n2. Unemployed and looking for a job,\n3. In education (not paid for by employer), in school/student/pupil even if on vacation,\n4. Apprentice or trainee,\n5. Permanently sick or disabled,\n6. Retired,\n7. Doing housework, looking after the home, children or other persons,\n9. Other",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I17",
"description": "Do you have a spouse or a partner and, if yes, do you share the same household? :",
"value": "1. Yes, I have a spouse/partner and we share the same household,\n2. Yes, I have a spouse/partner but we don’t share the same household,\n3. No, I don’t have a spouse/partner",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I25",
"description": "Which of the following best describes your spouses/partners current situation? :",
"value": "1. In paid work (as an employee, self-employed, or working for his/her own family’s business),\n2. Unemployed and looking for a job,\n3. In education (not paid for by employer), in school/student/pupil even if on vacation,\n4. Apprentice or trainee,\n5. Permanently sick or disabled,\n6. Retired,\n7. Doing housework, looking after the home, children or other persons,\n8. Other",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I26",
"description": "Are you or have you ever been a member of a trade union or similar organisation? If yes: is that currently or only previously? :",
"value": "1. Yes, currently,\n2. Yes, previously but not currently,\n3. No, never",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I27",
"description": "Joining a union would benefit me personally. :",
"value": "1. Strongly agree,\n2. Agree,\n3. Neither agree nor disagree,\n4. Disagree,\n5. Strongly disagree",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I28",
"description": "In your present job, have you ever been asked to join a union? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I29",
"description": "Which best describes you? :",
"value": "1. I belong to a union and would prefer to stay in one,\n2. I belong to a union but would prefer not to,\n3. I do not belong to a union but would prefer to join one,\n4. I do not belong to a union and would prefer not to,\n5. Can’t choose",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I30",
"description": "Do you belong to a religion and, if yes, which religion do you belong to? :",
"value": "1. No religion,\n2. Catholic,\n3. Protestant,\n4. Anglican/Church of England,\n5. Uniting Church/Methodist,\n6. Pentecostal,\n7. Orthodox,\n8. Other Christian,\n9. Jewish,\n10. Islamic,\n11. Buddhist,\n12. Hindu,\n13. Other Asian religions,\n14. Other religions - Please specify",
"maxValue": 14,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I31",
"description": "Apart from such special occasions as weddings, funerals, etc., how often do you attend religious services? :",
"value": "1. Several times a week or more often,\n2. Once a week,\n3. 2 or 3 times a month,\n4. Once a month,\n5. Several times a year,\n6. Once a year,\n7. Less frequently than once a year,\n8. Never",
"maxValue": 8,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I32",
"description": "In our society, there are groups which tend to be towards the top and groups which tend to be towards the bottom.Below is a scale that runs from the top to the bottom.Where would you put yourself on this scale? :",
"value": "1. Top - 10,\n2. 9,\n3. 8,\n4. 7,\n5. 6,\n6. 5,\n7. 4,\n8. 3,\n9. 2,\n10. Bottom - 1",
"maxValue": 10,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I33",
"description": "Do you usually think of yourself as close to any particular political party and, if yes, which party is that? :",
"value": "1. Labor Party (ALP),\n2. Liberal Party,\n3. National (Country) Party,\n5. Greens,\n8. No party affiliation,\n9. Other party (please specify)",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I34",
"description": "Did you vote in Australias federal election in September 2013? :",
"value": "1. Yes, I did vote,\n2. No, I did not vote,\n3. I was not eligible to vote in the last election",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I35",
"description": "Thinking back to the last general election in September 2013 - Which party did you vote for? :",
"value": "1. Labor Party (ALP),\n2. Liberal Party,\n3. National (Country) Party,\n5. Greens,\n9. Other party (please specify)",
"maxValue": 9,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I36",
"description": "Did you vote early at the 2013 federal election? :",
"value": "1. Yes, I voted at an early voting centre,\n2. Yes, I submitted a postal vote,\n3. No, I voted on election day",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I37",
"description": "What was the main reason you cast your vote early? :",
"value": "2. I work on Saturdays and it was easier for me to vote during the week,\n3. I was travelling interstate,\n4. I was travelling overseas,\n5. For health reasons,\n6. I saw advertising telling me that I could vote early,\n7. I saw an early voting centre near my place of work / home and dropped in to vote,\n8. I wanted to avoid long queues at election day polling places,\n9. I think that people should be permitted to vote whenever they like,\n10. I might not have been able to vote if my only option was to vote on election day,\n11. Another reason,\n12. For convenience – it was easier for me to choose when to vote rather than vote on Saturday",
"maxValue": 12,
"minValue": 2,
"@type": "propertyValue"
},
{
"name": "I38",
"description": "What country were you born in? :",
"value": "1. Australia,\n2. Overseas - Please specify country",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I38SACC1",
"description": "Code for group: SACC Level: 0",
"value": "0. Error,\n1. Oceania and Antarctica,\n2. North-west Europe,\n3. Southern and eastern Europe,\n4. North Africa and the Middle East,\n5. South-east Asia,\n6. North-east Asia,\n7. Southern and central Asia,\n8. Americas,\n9. Sub-Saharan Africa",
"maxValue": 9,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "I39",
"description": "What country was your mother born in? :",
"value": "1. Australia,\n2. Overseas - Please specify country",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I39SACC1",
"description": "Code for group: SACC Level: 0",
"value": "0. Error,\n1. Oceania and Antarctica,\n2. North-west Europe,\n3. Southern and eastern Europe,\n4. North Africa and the Middle East,\n5. South-east Asia,\n6. North-east Asia,\n7. Southern and central Asia,\n8. Americas,\n9. Sub-Saharan Africa",
"maxValue": 9,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "I40",
"description": "And what country was your father born in? :",
"value": "1. Australia,\n2. Overseas - Please specify country",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I40SACC1",
"description": "Code for group: SACC Level: 0",
"value": "0. Error,\n1. Oceania and Antarctica,\n2. North-west Europe,\n3. Southern and eastern Europe,\n4. North Africa and the Middle East,\n5. South-east Asia,\n6. North-east Asia,\n7. Southern and central Asia,\n8. Americas,\n9. Sub-Saharan Africa",
"maxValue": 9,
"minValue": 0,
"@type": "propertyValue"
},
{
"name": "I42",
"description": "Do you identify yourself as Aboriginal or Torres Strait Islander? :",
"value": "1. Yes,\n2. No",
"maxValue": 2,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I45",
"description": "Is there at least one telephone inside your home that is currently working and is not a mobile phone? :",
"value": "1. Yes,\n2. No,\n3. Dont know",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I46",
"description": "How many people in your household, including yourself, have a currently working mobile phone?",
"@type": "propertyValue"
},
{
"name": "I47",
"description": "In your home, do you have a computer (such as a PC, laptop or iPad) that is connected to the Internet? :",
"value": "1. Yes,\n2. No,\n3. Dont know",
"maxValue": 3,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I48",
"description": "Before taxes and other deductions, what on average is your own total monthly income? : $",
"@type": "propertyValue"
},
{
"name": "I49",
"description": "Before taxes and other deductions, what on average is the total monthly income of your household? : $",
"@type": "propertyValue"
},
{
"name": "I50",
"description": "What is your current legal marital status? :",
"value": "1. Married,\n2. Separated from my spouse but still legally married,\n3. Divorced from spouse,\n4. Widowed,\n5. I have never been married",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I51",
"description": "Would you describe the place where you live as ... :",
"value": "1. A big city,\n2. The suburbs or outskirts of a big city,\n3. A town or a small city,\n4. A country village,\n5. A farm or home in the country",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I52",
"description": "Do you own outright, are you buying or renting the dwelling in which you now live? :",
"value": "1. Own outright,\n2. Own, paying off mortgage,\n3. Rent from private landlord,\n4. Rent from public housing authority,\n5. Other (boarding, living at home, etc)",
"maxValue": 5,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "I53",
"description": "In general, would you say your health is... :",
"value": "1. Excellent,\n2. Very good,\n3. Good,\n4. Fair,\n5. Poor,\n6. Cant choose",
"maxValue": 6,
"minValue": 1,
"@type": "propertyValue"
},
{
"name": "split",
"description": "Booklet used (A or B)",
"@type": "propertyValue"
}
]
}`