using Python to solve the homework

User Generated

qnvanzqp1703

Other

Description

Hi there. I got problem with these Python coding questions. Could you please take a look at these. I need it to be done before 3/3/2019

Unformatted Attachment Preview

Data Science: A Programming Approach Mahyar S Vaghefi University of Texas Arlington Assignment #2 Question #1: 1. Download the heart.csv dataset from the Blackboard and use read_csv( ) to read it. 2. Creat a new column named 'age_cat' in the DataFrame to present individuals' age with 4 categories. Here is the list of categories: 25-40 40-55 55-70 70+ 3. Creat a pie chart to show the percentage of individuals in each age category. Use the Explode feature of pie chart in matplotlib to separate the age category of 4055. 4. Creat a histogram with with 20 bins and white edgecolor to visualize the distribution of "chol" feature. Then use the annotation function to point to the bin with the highest value. 5. Use logistic regression to create a predictive model Use 70% of data for tarining and consider 30% of data for testing. (Use random_state=0) Use all features (13 features in the orignal dataset, you don't need to use age_cat) to creat your predictive model traget is your dependent variable. It shows whether the subject suffers form a heart disease or not. 6. Use similar structure as above to create a naive bayes predictive model. 7. Use in-sample data (train data) and out-of-sample data (test data) to check the accuracy of your naive bayes model: What is the general expectation? should we expect to get higher accuray on in-sample data or out-of-sample data What is the result in your case? 8. Find precision, recall and F1 scores for both logistic regression and naive bayes models using out-of-sample data (test data) and explain which one works better than the other? In [ ]: # Write your answer here (part1) In [ ]: # Write your answer here (part2) In [ ]: # Write your answer here (part3) In [ ]: # Write your answer here (part4) In [ ]: # Write your answer here (part5) In [ ]: # Write your answer here (part6) In [ ]: # Write your answer here (part7) In [ ]: # Write your answer here (part8) Question #2: 1. Download the Graduate_Admissions.csv dataset from the Blackboard and use read_csv( ) to read it. 2. Remove the Serial_No column from the dataset. 3. Create a scatter plot with SOP and CGPA features and color that using the Research feature 4. 5. 6. 7. 8. 9. Put appropriate title, axis labels and legend for your visualization. Use linear regression to creat a predictive model. Use 70% of data for tarining and consider 30% of data for testing. (Use random_state=0) Use all features (7 features) to create you predictive model. Chance _of_Admit is your dependent variable. Compute 𝑅2 for both in-sample(train data) and out-of-sample (test data) data. Which one is higher? What was your expectation? Compute MSE for both in-sample (train data) and out-of-sample (test data) data. Which one is higher? What was your expectation? Use PCA to reduce the number of features (7 independent features) into two components. Create a new linear regression predictive model using two PCA components. Use 70% of data for tarining and consider 30% of data for testing. (Use random_state=0) Use two PCA components as independent variables to create you predictive model. Chance _of_Admit is your dependent variable Compute MSE and 𝑅2 for the out-of-sample data using second predictive model. Data Source: Mohan S Acharya, Asfia Armaan, Aneeta S Antony : A Comparison of Regression Models for Prediction of Graduate Admissions, IEEE International Conference on Computational Intelligence in Data Science 2019 In [ ]: # Write your answer here (part1) In [ ]: # Write your answer here (part2) In [ ]: # Write your answer here (part3) In [ ]: # Write your answer here (part4) In [ ]: # Write your answer here (part5) In [ ]: # Write your answer here (part6) In [ ]: # Write your answer here (part7) In [ ]: # Write your answer here (part8) In [ ]: # Write your answer here (part9) Question #3: 1. Download the Employee_Retention.csv dataset from the Blackboard and use read_csv( ) to read it. 2. Convert Sales and Salary categorical features into dummy variables. If it is necassary, delete the original Sales and Salary columns after the generation dummy variables. 𝑋−𝜇 3. Use mean normalization ( 𝜎 ) to normalize values in number_project, average_montly_hours, and time_spend_company columns. 4. Use KNN to create three predictive models (1. with 2 neighbors, 2. with 5 neighbors, 3. with 7 neighbors) Use 70% of data for tarining and consider 30% of data for testing. (Use random_state=0) Use all the features (including dummy variables) to create you predictive model. left is your dependent variable. 5. Find the accuracy of your models using out-of-sample data (test data). Which model has the highest accuracy? 6. Use KNN with 3 neighbors to create a new predictive model. Use whole dataset for training. Use satisfaction_level and last_evaluation features as your independent variables. left is your dependent variable. 7. Visualize the decision boundary of your model. In [ ]: # Write your answer here (part1) In [ ]: # Write your answer here (part2) In [ ]: # Write your answer here (part3) In [ ]: # Write your answer here (part4) In [ ]: # Write your answer here (part5) In [ ]: # Write your answer here (part6) In [ ]: # Write your answer here (part7) Output: You need to provide answers in the designated cell for each question (don't delete the existing comments in the cells). You need to make sure that your final file contains both codes and results (don't clear the outputs). Save your file in the .ipynb format (as it is right now). Create a zip-folder and put your file in it. Upload the zip-folder into Blackboard (Assignment #2) All the assignments should be submitted by Tuesday March 5 at 7:00 PM. No late submission will be accepted I will not accept any submission by email or any other method, so make sure that you submit the file in a right place at the right time. satisfaction_level last_evaluation number_project average_montly_hours time_spend_company Work_accident promotion_last_5years sales salary 0.38 0.53 2 157 3 0 0 sales low 0.8 0.86 5 262 6 0 0 sales medium 0.11 0.88 7 272 4 0 0 sales medium 0.72 0.87 5 223 5 0 0 sales low 0.37 0.52 2 159 3 0 0 sales low 0.41 0.5 2 153 3 0 0 sales low 0.1 0.77 6 247 4 0 0 sales low 0.92 0.85 5 259 5 0 0 sales low 0.89 1 5 224 5 0 0 sales low 0.42 0.53 2 142 3 0 0 sales low 0.45 0.54 2 135 3 0 0 sales low 0.11 0.81 6 305 4 0 0 sales low 0.84 0.92 4 234 5 0 0 sales low 0.41 0.55 2 148 3 0 0 sales low 0.36 0.56 2 137 3 0 0 sales low 0.38 0.54 2 143 3 0 0 sales low 0.45 0.47 2 160 3 0 0 sales low 0.78 0.99 4 255 6 0 0 sales low 0.45 0.51 2 160 3 1 1 sales low 0.76 0.89 5 262 5 0 0 sales low 0.11 0.83 6 282 4 0 0 sales low 0.38 0.55 2 147 3 0 0 sales low 0.09 0.95 6 304 4 0 0 sales low 0.46 0.57 2 139 3 0 0 sales low 0.4 0.53 2 158 3 0 0 sales low 0.89 0.92 5 242 5 0 0 sales low 0.82 0.87 4 239 5 0 0 sales low 0.4 0.49 2 135 3 0 0 sales low 0.41 0.46 2 128 3 0 0 accounting low 0.38 0.5 2 132 3 0 0 accounting low 0.09 0.62 6 294 4 0 0 accounting low 0.45 0.57 2 134 3 0 0 hr low 0.4 0.51 2 145 3 0 0 hr low 0.45 0.55 2 140 3 0 0 hr low 0.84 0.87 4 246 6 0 0 hr low 0.1 0.94 6 255 4 0 0 technical low 0.38 0.46 2 137 3 0 0 technical low 0.45 0.5 2 126 3 0 0 technical low 0.11 0.89 6 306 4 0 0 technical low 0.41 0.54 2 152 3 0 0 technical low 0.87 0.88 5 269 5 0 0 technical low 0.45 0.48 2 158 3 0 0 technical low 0.4 0.46 2 127 3 0 0 technical low 0.1 0.8 7 281 4 0 0 technical low 0.09 0.89 6 276 4 0 0 technical low 0.84 0.74 3 182 4 0 0 technical low 0.4 0.57 0.4 0.43 0.13 0.44 0.38 0.39 0.1 0.37 0.11 0.1 0.38 0.85 0.85 0.11 0.1 0.36 0.11 0.81 0.43 0.9 0.76 0.43 0.74 0.09 0.45 0.09 0.11 0.11 0.1 0.4 0.43 0.39 0.45 0.38 0.79 0.84 0.11 0.11 0.17 0.44 0.37 0.1 0.4 0.89 0.42 0.55 0.7 0.54 0.47 0.78 0.55 0.55 0.54 0.92 0.46 0.94 0.81 0.54 1 0.91 0.93 0.95 0.56 0.94 0.7 0.54 0.98 0.86 0.5 0.99 0.77 0.49 0.87 0.97 0.79 0.83 0.54 0.56 0.56 0.54 0.49 0.59 0.85 0.77 0.87 0.84 0.45 0.57 0.79 0.5 1 0.48 2 3 2 2 6 2 2 2 7 2 7 6 2 4 5 7 6 2 6 6 2 4 5 2 2 5 2 7 6 7 6 2 2 2 2 2 4 4 6 6 5 2 2 6 2 5 2 147 273 148 147 152 135 134 132 307 140 255 309 128 225 226 308 244 132 286 161 153 264 223 135 277 275 149 295 277 306 295 137 157 142 140 151 139 249 291 305 232 132 130 291 130 246 143 3 6 3 3 2 3 3 3 4 3 4 4 3 5 5 4 5 3 4 4 3 6 5 3 3 4 3 4 4 4 4 3 3 3 3 3 3 6 4 4 3 3 3 4 3 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management medium IT medium IT medium IT medium IT medium IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium product_mng medium product_mng high product_mng low product_mng medium product_mng medium product_mng medium marketing medium sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low 0.46 0.09 0.37 0.1 0.1 0.11 0.9 0.38 0.36 0.42 0.09 0.43 0.24 0.91 0.44 0.71 0.4 0.43 0.09 0.43 0.9 0.84 0.37 0.86 0.11 0.37 0.4 0.14 0.4 0.75 0.11 0.46 0.11 0.38 0.7 0.09 0.37 0.1 0.38 0.9 0.44 0.36 0.31 0.1 0.42 0.74 0.73 0.55 0.83 0.51 0.77 0.84 0.97 1 0.52 0.52 0.46 0.94 0.52 0.46 1 0.5 0.87 0.49 0.47 0.85 0.52 0.96 1 0.48 0.68 0.84 0.57 0.46 0.62 0.46 1 0.84 0.49 0.92 0.49 0.89 0.82 0.45 0.83 0.57 1 0.51 0.5 0.84 0.84 0.48 1 0.87 2 6 2 6 6 6 5 2 2 2 7 2 7 4 2 3 2 2 6 2 4 5 2 5 6 2 2 4 2 4 6 2 6 2 3 6 2 6 2 5 2 2 7 6 2 4 5 129 255 155 265 279 284 221 154 147 150 267 158 224 257 148 177 155 144 289 160 258 234 137 263 251 133 132 158 135 216 300 138 260 132 183 250 151 292 140 221 138 132 133 283 129 249 257 3 4 3 4 4 4 6 3 3 3 4 3 5 5 3 4 3 3 4 3 5 5 3 2 4 3 3 4 3 6 5 3 4 3 5 4 3 4 3 5 3 3 5 4 3 5 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr high technical low technical medium technical medium technical medium technical medium technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low 0.09 0.45 0.11 0.37 0.84 0.41 0.76 0.11 0.84 0.39 0.11 0.45 0.37 0.4 0.39 0.11 0.83 0.11 0.39 0.45 0.1 0.9 0.45 0.79 0.9 0.11 0.43 0.31 0.32 0.45 0.81 0.41 0.11 0.1 0.7 0.54 0.41 0.38 0.37 0.11 0.4 0.1 0.89 0.11 0.36 0.4 0.09 0.96 0.53 0.8 0.47 0.99 0.46 0.92 0.87 0.88 0.5 0.91 0.56 0.52 0.52 0.48 0.8 1 0.92 0.5 0.45 0.95 0.98 0.51 0.89 0.99 0.84 0.55 0.54 0.5 0.57 0.99 0.46 0.78 0.88 0.53 0.74 0.48 0.5 0.51 0.85 0.47 0.84 0.99 0.8 0.55 0.46 0.85 6 2 6 2 4 2 4 6 4 2 6 2 2 2 2 6 5 6 2 2 7 5 2 5 5 7 2 5 2 2 4 2 7 6 2 4 2 2 2 6 2 6 5 6 2 2 6 245 155 256 152 267 151 239 306 263 147 278 154 143 155 160 304 240 305 136 132 301 243 147 239 260 296 129 132 135 158 259 160 278 284 274 164 148 140 127 308 146 261 257 285 141 127 297 4 3 4 3 5 3 5 4 5 3 4 3 3 3 3 4 5 4 3 3 4 6 3 5 5 4 3 5 5 3 5 3 4 4 4 2 3 3 3 5 3 4 5 4 3 3 4 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low marketing low marketing low marketing low marketing low marketing low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium 0.4 0.37 0.44 0.09 0.92 0.74 0.09 0.89 0.09 0.27 0.1 0.1 0.77 0.9 0.39 0.76 0.1 0.87 0.38 0.77 0.78 0.44 0.38 0.43 0.39 0.88 0.45 0.4 0.36 0.36 0.9 0.43 0.89 0.1 0.37 0.37 0.87 0.4 0.9 0.37 0.44 0.85 0.78 0.42 0.92 0.11 0.42 0.46 0.55 0.51 0.8 0.87 0.91 0.82 0.95 0.8 0.54 0.91 0.89 0.94 0.82 0.5 1 0.93 0.9 0.5 0.99 0.87 0.5 0.52 0.46 0.5 1 0.46 0.53 0.51 0.48 0.98 0.53 0.87 0.84 0.5 0.51 0.9 0.56 0.97 0.46 0.54 0.95 0.98 0.47 0.99 0.83 0.56 2 2 2 7 4 4 6 4 6 7 6 7 5 5 2 5 6 5 2 5 4 2 2 2 4 5 2 2 2 2 5 2 5 6 2 2 5 2 4 2 2 5 5 2 5 6 2 143 152 156 283 226 232 249 275 304 278 287 285 226 259 135 219 256 254 153 228 228 128 153 156 294 219 153 151 155 158 245 131 225 286 135 153 252 149 258 158 149 236 239 159 255 244 134 3 3 3 5 6 5 4 5 4 3 4 4 6 5 3 5 4 6 3 5 5 3 3 3 3 5 3 3 3 3 5 3 5 4 3 3 5 3 5 3 3 5 6 3 6 4 3 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hr medium technical medium technical high technical low technical medium technical medium technical medium technical medium technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low accounting low accounting low hr low hr low hr low marketing low marketing low sales low accounting low support low 0.48 0.83 0.4 0.43 0.43 0.1 0.1 0.37 0.38 0.4 0.89 0.45 0.37 0.46 0.87 0.11 0.79 0.79 0.19 0.87 0.6 0.44 0.11 0.42 0.88 0.11 0.46 0.82 0.44 0.11 0.42 0.84 0.11 0.45 0.38 0.38 0.44 0.11 0.81 0.09 0.11 0.81 0.1 0.74 0.09 0.82 0.1 0.57 0.85 0.53 0.45 0.53 0.97 0.87 0.46 0.53 0.5 0.86 0.46 0.48 0.49 0.91 0.84 0.87 0.92 0.59 0.98 0.92 0.45 0.81 0.54 0.88 0.84 0.46 0.97 0.56 0.78 0.5 0.93 0.95 0.53 0.56 0.86 0.51 0.84 0.93 0.96 0.9 0.95 0.97 0.89 0.78 0.81 0.98 4 4 2 2 2 7 7 2 2 2 5 2 2 2 4 6 5 5 7 4 2 2 6 2 5 6 2 5 2 6 2 4 6 2 2 6 2 6 5 6 6 5 6 5 6 4 6 270 255 151 135 146 254 289 156 156 128 275 155 159 148 228 298 261 254 192 248 258 156 266 156 232 287 154 263 131 260 139 251 286 129 156 139 127 251 270 296 254 238 267 229 254 233 268 4 5 3 3 3 4 4 3 3 3 5 3 3 3 5 4 5 6 3 5 5 3 4 3 5 4 3 5 3 4 3 5 4 3 3 6 3 4 5 4 4 6 4 6 4 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium technical medium technical high technical low technical medium technical medium technical medium technical medium technical low technical low technical low support low support low support low support low support low 0.27 0.83 0.1 0.38 0.4 0.11 0.11 0.82 0.36 0.4 0.87 0.41 0.11 0.1 0.38 0.39 0.4 0.45 0.74 0.45 0.12 0.1 0.37 0.89 0.45 0.37 0.11 0.41 0.1 0.1 0.11 0.4 0.41 0.1 0.73 0.43 0.37 0.11 0.4 0.41 0.82 0.61 0.11 0.37 0.41 0.37 0.88 0.56 0.92 0.93 0.47 0.56 0.83 0.79 0.91 0.48 0.46 0.84 0.49 0.91 0.93 0.51 0.55 0.52 0.48 0.84 0.55 1 0.77 0.55 0.87 0.47 0.46 0.81 0.48 0.94 0.93 0.95 0.54 0.49 0.81 0.86 0.47 0.46 0.94 0.46 0.54 0.84 0.47 0.91 0.45 0.52 0.52 0.99 3 5 6 2 2 6 6 5 2 2 5 2 6 6 2 2 2 2 5 2 3 7 2 5 2 2 5 2 6 7 7 2 2 6 4 2 2 6 2 2 5 2 7 2 2 2 5 301 267 289 144 148 306 292 232 137 128 231 146 308 253 146 156 147 136 249 151 278 250 127 255 135 149 287 145 285 305 300 139 130 268 245 135 153 276 130 153 244 253 287 131 135 157 262 3 6 4 3 3 4 4 5 3 3 5 3 4 4 3 3 3 3 5 3 4 5 3 5 3 3 4 3 4 4 4 3 3 4 6 3 3 4 3 3 5 3 4 3 3 3 6 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT medium IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium RandD medium RandD medium RandD medium RandD medium RandD medium marketing high sales low accounting medium support medium technical medium management medium marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low 0.1 0.44 0.38 0.11 0.09 0.45 0.1 0.45 0.77 0.44 0.39 0.1 0.09 0.37 0.9 0.41 0.37 0.1 0.81 0.11 0.11 0.4 0.09 0.48 0.91 0.43 0.33 0.41 0.41 0.37 0.31 0.09 0.1 0.76 0.41 0.72 0.4 0.91 0.1 0.4 0.82 0.1 0.37 0.36 0.39 0.36 0.86 0.85 0.48 0.57 0.85 0.98 0.52 0.81 0.47 0.87 0.51 0.5 0.91 0.89 0.47 1 0.56 0.52 0.86 1 0.8 0.84 0.46 0.8 0.93 0.91 0.57 0.88 0.57 0.55 0.54 0.62 0.91 0.87 0.9 0.54 0.96 0.5 0.87 0.83 0.56 0.86 0.82 0.45 0.51 0.48 0.57 0.84 6 2 2 7 6 2 6 2 5 2 2 6 7 2 5 2 2 6 4 6 7 2 6 3 4 2 6 2 2 2 6 6 6 4 2 5 2 4 6 2 5 6 2 2 2 2 5 266 148 140 302 271 145 290 151 266 140 142 246 308 141 232 143 155 278 253 282 264 149 304 219 262 135 219 136 154 149 135 275 290 263 145 267 141 235 258 131 243 266 142 135 141 142 254 4 3 3 4 4 3 4 3 5 3 3 4 5 3 5 3 3 4 5 4 4 3 5 6 6 3 5 3 3 3 5 4 4 5 3 5 3 5 4 3 5 4 3 3 3 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical high technical low technical medium technical medium technical medium technical medium technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng medium product_mng medium product_mng medium 0.73 0.56 0.44 0.31 0.77 0.44 0.38 0.45 0.38 0.36 0.75 0.1 0.1 0.45 0.42 0.78 0.45 0.84 0.11 0.42 0.45 0.46 0.09 0.87 0.1 0.91 0.76 0.74 0.92 0.76 0.47 0.73 0.09 0.91 0.82 0.28 0.84 0.45 0.45 0.91 0.42 0.82 0.11 0.42 0.82 0.09 0.1 0.99 0.71 0.56 0.56 0.93 0.45 0.46 0.48 0.51 0.48 0.9 0.93 0.97 0.5 0.57 1 0.55 1 0.93 0.56 0.46 0.57 0.79 0.83 0.87 1 0.92 1 0.93 0.87 0.5 0.99 0.94 0.92 0.98 0.45 0.99 0.53 0.54 0.97 0.48 1 0.9 0.53 0.85 0.96 0.94 5 4 2 4 4 2 2 2 2 2 5 6 6 2 2 4 2 4 6 2 2 2 6 4 6 5 4 5 5 5 4 5 6 4 4 6 4 2 2 5 2 4 6 3 4 6 6 262 296 158 238 231 156 145 144 159 156 256 298 247 157 154 253 148 261 282 133 128 139 293 265 250 251 246 275 240 245 254 241 257 246 233 218 262 138 142 233 155 229 264 199 223 268 287 5 2 3 2 5 3 3 3 3 3 5 4 4 3 3 5 3 5 4 3 3 3 5 6 4 6 5 5 5 5 4 5 4 5 5 4 6 3 3 5 3 6 4 4 5 4 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 product_mng medium IT medium accounting medium accounting medium hr medium hr medium hr medium marketing medium sales medium accounting high support low technical medium management medium marketing medium marketing medium marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical medium 0.86 0.4 0.45 0.42 0.74 0.55 0.37 0.41 0.89 0.41 0.44 0.87 0.1 0.41 0.11 0.43 0.77 0.41 0.41 0.36 0.77 0.81 0.39 0.09 0.44 0.1 0.36 0.81 0.81 0.85 0.1 0.37 0.09 0.44 0.86 0.77 0.41 0.4 0.43 0.43 0.8 0.8 0.82 0.37 0.37 0.09 0.9 1 0.46 0.46 0.51 0.92 0.6 0.45 0.52 0.65 0.57 0.51 0.84 0.84 0.47 0.85 0.53 0.9 0.52 0.48 0.78 1 0.98 0.54 0.94 0.46 0.84 0.48 0.92 0.9 0.98 0.87 0.54 0.97 0.53 0.93 1 0.48 0.48 0.49 0.5 0.53 0.85 0.98 0.54 0.48 0.95 0.92 5 2 2 2 4 3 2 2 5 2 2 4 6 2 6 2 4 2 2 2 5 5 2 6 2 5 2 5 4 5 6 2 7 2 5 4 2 2 2 2 3 4 5 2 2 6 5 257 143 130 136 261 180 126 127 195 160 150 264 309 135 261 160 237 136 139 151 229 245 127 283 143 298 159 239 226 248 286 145 254 127 223 255 136 137 135 137 255 273 234 152 134 292 245 5 3 3 3 5 4 3 3 6 3 3 6 4 3 4 3 5 3 3 4 5 5 3 5 3 4 3 5 5 5 4 3 4 3 5 5 3 3 3 3 5 5 5 3 3 4 5 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical medium technical high technical low technical medium technical medium technical medium support medium support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng medium product_mng medium IT medium RandD medium RandD medium RandD medium RandD medium RandD medium marketing medium sales medium accounting medium support medium technical high management low marketing medium marketing medium marketing medium sales medium sales low 0.41 0.1 0.44 0.89 0.42 0.87 0.45 0.11 0.09 0.76 0.11 0.37 0.1 0.77 0.42 0.38 0.32 0.38 0.19 0.1 0.76 0.53 0.39 0.11 0.1 0.84 0.82 0.1 0.59 0.44 0.89 0.91 0.66 0.11 0.43 0.78 0.11 0.83 0.39 0.38 0.37 0.44 0.53 0.09 0.11 0.83 0.88 0.52 0.85 0.53 0.85 0.56 1 0.57 0.87 0.79 0.83 0.96 0.49 0.79 0.87 0.54 0.52 0.95 0.49 1 0.83 0.88 0.56 0.51 0.83 0.94 1 0.99 0.82 0.49 0.48 0.95 0.84 0.57 0.87 0.51 0.83 0.97 0.98 0.54 0.55 0.57 0.48 0.85 0.96 0.89 0.96 1 2 6 2 5 2 5 2 5 6 5 7 2 6 4 2 2 5 2 4 7 4 4 2 6 6 5 4 6 7 2 2 5 5 7 2 4 6 4 2 2 2 2 2 6 6 5 5 159 260 149 266 149 242 134 271 275 227 277 151 274 242 143 145 172 135 192 276 206 281 151 244 309 218 263 244 263 143 181 265 161 282 155 217 289 259 158 158 155 146 164 259 293 275 219 3 4 3 5 3 5 3 4 4 5 5 3 4 6 3 3 2 3 4 4 4 6 3 4 4 5 6 4 4 3 5 5 5 5 3 6 5 5 3 3 3 3 5 4 4 5 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr medium hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical high technical low technical medium support medium support medium support medium support low support low support low support low support low support low support low support low technical low 0.1 0.09 0.44 0.39 0.87 0.74 0.1 0.74 0.75 0.41 0.41 0.09 0.09 0.39 0.4 0.37 0.1 0.43 0.75 0.37 0.11 0.45 0.87 0.11 0.45 0.81 0.77 0.89 0.43 0.78 0.37 0.37 0.85 0.41 0.11 0.75 0.82 0.79 0.43 0.1 0.46 0.43 0.43 0.11 0.09 0.37 0.4 0.89 0.86 0.54 0.51 0.94 0.99 0.95 0.82 0.99 0.56 0.45 0.9 0.8 0.57 0.56 0.54 0.84 0.51 0.85 0.56 0.85 0.45 1 0.94 0.54 0.87 0.91 0.92 0.49 1 0.47 0.5 0.82 0.47 0.96 0.99 0.85 1 0.53 0.9 0.48 0.57 0.55 0.8 0.86 0.53 0.57 6 7 2 2 4 4 7 4 5 2 2 7 6 2 2 2 6 2 5 2 6 2 5 7 2 4 5 5 2 5 2 2 4 2 6 5 5 5 2 7 2 2 2 7 6 2 2 247 309 151 129 274 233 289 239 221 150 144 289 301 145 137 131 246 136 240 156 305 154 261 244 129 254 236 237 135 236 149 141 270 138 298 254 248 257 150 281 141 157 136 296 279 131 160 4 4 3 3 5 5 4 6 5 3 3 4 5 3 3 3 4 3 6 3 4 3 5 4 3 5 5 5 3 5 3 3 5 3 4 5 5 6 3 4 3 3 3 4 4 3 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT medium accounting medium accounting medium hr medium hr medium hr medium marketing medium sales medium accounting medium support medium technical medium management medium marketing high marketing low marketing medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low 0.1 0.41 0.79 0.11 0.1 0.44 0.25 0.44 0.73 0.75 0.36 0.37 0.39 0.48 0.57 0.9 0.39 0.44 0.81 0.74 0.44 0.41 0.4 0.46 0.8 0.87 0.39 0.38 0.66 0.1 0.37 0.1 0.09 0.86 0.11 0.37 0.11 0.77 0.84 0.1 0.83 0.11 0.86 0.38 0.11 0.45 0.1 0.77 0.53 0.58 0.79 0.97 0.51 0.46 0.52 1 0.97 0.47 0.49 0.49 0.78 0.72 0.96 0.55 0.51 0.88 0.87 0.56 0.56 0.51 0.57 0.83 0.9 0.54 0.55 0.67 0.8 0.54 0.77 0.87 0.84 0.9 0.46 0.92 0.98 0.94 0.84 0.9 0.79 0.92 0.56 0.88 0.49 0.85 7 2 3 7 6 2 4 2 4 5 2 2 2 2 4 5 2 2 5 5 2 2 2 2 2 5 2 2 2 6 2 6 5 5 6 2 7 5 5 7 5 6 5 2 5 2 7 291 157 294 310 282 134 214 137 252 243 148 151 129 198 275 243 159 145 242 242 145 154 139 152 211 258 155 148 255 264 132 255 263 222 263 157 307 259 222 250 245 292 252 161 250 134 279 4 3 4 4 4 3 4 3 5 6 3 3 3 2 6 5 3 3 5 5 3 3 3 3 3 5 3 3 3 4 3 4 4 5 4 3 4 6 6 4 5 4 5 3 4 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 accounting low accounting low hr low hr low hr medium hr medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical high support low support medium support medium support medium support medium support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD medium RandD medium RandD medium RandD medium 0.09 0.39 0.37 0.81 0.09 0.1 0.39 0.83 0.45 0.43 0.8 0.1 0.1 0.36 0.38 0.78 0.44 0.41 0.72 0.46 0.1 0.34 0.11 0.38 0.82 0.39 0.44 0.43 0.84 0.43 0.37 0.74 0.73 0.37 0.58 0.4 0.51 0.46 0.45 0.46 0.39 0.09 0.09 0.37 0.1 0.77 0.79 0.95 0.53 0.47 0.97 0.9 0.88 0.49 0.95 0.57 0.51 0.75 0.86 0.55 0.52 0.5 0.98 0.49 0.46 0.85 0.54 0.9 0.67 0.89 0.56 0.92 0.57 0.53 0.52 0.83 0.48 0.52 0.97 0.97 0.47 0.62 0.54 0.83 0.5 0.54 0.5 0.45 0.88 0.77 0.51 0.89 1 0.86 7 2 2 5 7 7 2 4 2 2 3 6 2 2 2 5 2 2 5 2 7 4 6 2 5 2 2 2 4 2 2 4 5 2 4 2 5 2 2 2 2 6 6 2 7 4 5 256 127 138 243 296 267 144 251 148 141 268 247 247 146 140 263 145 156 244 144 286 141 260 154 225 127 140 147 227 153 128 228 235 148 238 141 249 151 129 156 134 269 290 132 308 232 235 4 3 3 5 4 4 3 5 3 3 2 4 4 3 3 6 3 3 6 3 4 2 5 3 5 3 3 3 5 3 3 5 5 3 3 3 4 3 3 3 3 4 4 3 4 5 5 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium 0.43 0.38 0.77 0.44 0.39 0.78 0.1 0.1 0.75 0.46 0.91 0.1 0.72 0.11 0.11 0.46 0.37 0.46 0.43 0.11 0.73 0.43 0.86 0.1 0.4 0.11 0.86 0.42 0.79 0.1 0.09 0.09 0.87 0.36 0.42 0.84 0.1 0.78 0.35 0.1 0.11 0.43 0.38 0.46 0.89 0.45 0.44 0.55 0.53 0.91 0.5 0.46 0.89 0.79 0.77 0.85 0.62 0.97 0.92 0.6 0.95 0.94 0.57 0.46 0.5 0.57 0.82 0.89 0.47 1 0.83 0.49 0.87 0.98 1 0.84 0.96 0.92 0.82 1 0.49 0.75 0.86 0.83 0.71 0.99 0.81 0.8 0.48 0.45 0.54 0.82 0.5 0.53 2 2 5 2 2 5 6 5 5 6 4 6 3 6 6 2 2 2 2 6 5 2 5 6 2 7 3 3 4 7 7 6 4 2 3 5 6 3 3 7 6 2 2 2 4 2 2 130 146 221 130 136 274 256 276 267 213 274 258 153 245 264 154 149 157 127 270 236 158 229 269 128 278 158 202 240 255 254 257 228 145 218 268 278 249 236 291 306 135 156 143 243 147 159 3 3 6 3 3 6 5 4 5 3 6 4 5 4 4 3 3 3 3 4 6 3 5 4 3 4 5 3 5 4 4 4 5 3 4 5 4 5 4 4 4 3 3 3 5 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support high support low support medium support medium support medium support medium support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low sales low sales low sales low sales medium sales medium marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low 0.74 0.45 0.79 0.79 0.11 0.42 0.64 0.4 0.84 0.73 0.4 0.36 0.43 0.11 0.91 0.8 0.42 0.31 0.44 0.38 0.45 0.43 0.45 0.43 0.43 0.09 0.43 0.79 0.85 0.38 0.11 0.83 0.81 0.42 0.11 0.11 0.1 0.5 0.44 0.11 0.39 0.11 0.36 0.43 0.4 0.86 0.38 0.54 0.54 0.93 0.91 0.87 0.48 0.9 0.55 0.98 0.92 0.51 0.45 0.47 0.78 1 1 0.49 0.87 0.47 0.54 0.56 0.46 0.46 0.57 0.49 0.83 0.47 0.94 0.58 0.45 0.92 0.99 0.91 0.56 0.87 0.85 0.89 0.54 0.49 0.9 0.52 0.78 0.5 0.51 0.5 0.84 0.49 5 2 4 5 6 2 6 2 5 5 2 2 2 6 5 5 2 4 2 2 2 2 2 2 2 6 2 4 3 2 7 5 4 2 6 7 7 5 2 6 2 6 2 2 2 4 2 216 152 226 271 255 140 252 159 270 232 144 127 131 243 244 260 139 184 130 135 146 149 153 160 160 282 128 232 226 129 255 258 229 143 257 275 291 153 154 301 134 245 132 130 127 246 145 3 3 5 5 4 3 2 3 5 5 3 3 3 4 6 5 3 3 3 3 3 3 3 3 3 4 3 5 2 3 4 5 5 3 4 4 4 4 3 4 3 4 3 3 3 6 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support high support low support medium support medium support medium support medium support low support low technical low technical low technical low management low IT low IT low IT low IT low 0.46 0.37 0.43 0.66 0.37 0.77 0.38 0.39 0.41 0.1 0.09 0.41 0.39 0.83 0.09 0.75 0.44 0.1 0.42 0.1 0.1 0.31 0.42 0.38 0.39 0.1 0.11 0.1 0.11 0.44 0.91 0.72 0.36 0.44 0.85 0.78 0.39 0.78 0.1 0.23 0.11 0.9 0.91 0.11 0.43 0.45 0.11 0.45 0.57 0.52 0.93 0.48 0.92 0.55 0.54 0.55 0.9 0.93 0.47 0.46 0.99 0.87 0.81 0.54 0.84 0.46 0.83 0.86 0.77 0.54 0.5 0.57 0.97 0.93 0.92 0.9 0.65 0.96 1 0.46 0.57 0.99 0.93 0.46 0.81 0.92 0.99 0.87 0.83 0.89 0.79 0.54 0.49 0.91 2 2 2 5 2 5 2 2 2 7 6 2 2 4 3 5 2 6 2 6 6 4 2 2 2 6 6 7 7 3 4 4 2 2 5 5 2 3 6 4 6 5 4 7 2 2 5 138 129 150 253 160 235 151 127 151 290 249 131 159 223 214 227 127 293 141 300 309 149 159 152 158 254 294 269 247 271 232 245 132 131 248 225 156 222 243 204 301 259 247 295 150 151 291 3 3 3 5 3 5 3 3 3 4 4 3 3 5 2 5 3 5 3 4 4 3 3 3 3 5 4 4 4 4 5 5 3 3 5 5 3 2 4 4 4 5 5 4 3 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT low product_mng low product_mng low product_mng low product_mng low IT low sales low sales low sales low sales low sales low marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low 0.11 0.43 0.91 0.43 0.85 0.1 0.81 0.36 0.45 0.86 0.71 0.11 0.84 0.09 0.38 0.15 0.1 0.8 0.84 0.11 0.89 0.45 0.11 0.74 0.41 0.44 0.37 0.11 0.1 0.7 0.59 0.38 0.72 0.73 0.39 0.89 0.89 0.11 0.43 0.09 0.81 0.37 0.36 0.11 0.1 0.66 0.39 0.93 0.5 0.97 0.55 0.82 0.77 0.95 0.62 0.54 1 1 0.97 0.93 0.97 0.49 0.55 0.92 0.97 0.97 0.87 0.79 0.51 0.93 0.93 0.5 0.53 0.56 0.86 0.93 0.74 1 0.53 0.95 1 0.48 0.82 1 0.78 0.56 0.93 0.9 0.53 0.56 0.85 0.85 0.47 0.47 6 2 4 2 5 6 5 4 2 5 4 7 5 7 2 6 7 4 5 6 3 2 7 5 2 2 2 6 6 6 2 2 4 5 2 5 4 6 2 6 5 2 2 6 6 7 2 253 161 251 153 264 310 266 237 138 227 300 310 236 288 127 139 253 218 251 264 149 138 284 244 128 154 138 308 269 136 160 138 220 274 161 224 260 300 133 308 238 126 138 299 254 156 152 4 3 6 3 6 4 5 2 3 5 5 4 5 4 3 4 4 5 5 4 2 3 4 5 3 3 3 4 4 3 5 3 5 5 3 6 5 4 3 4 6 3 3 4 4 2 3 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low technical low technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support medium support medium support high support low support medium support medium support medium support medium technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting medium support medium technical medium management medium marketing medium 0.44 0.1 0.79 0.1 0.54 0.37 0.37 0.82 0.45 0.79 0.42 0.1 0.11 0.74 0.1 0.79 0.43 0.41 0.39 0.1 0.82 0.41 0.42 0.74 0.38 0.39 0.87 0.1 0.78 0.14 0.11 0.91 0.49 0.38 0.82 0.38 0.89 0.11 0.37 0.38 0.78 0.41 0.41 0.11 0.11 0.43 0.75 0.51 0.84 0.94 0.81 0.94 0.47 0.57 0.89 0.52 0.9 0.56 0.85 0.78 1 0.93 1 0.48 0.47 0.55 0.94 0.85 0.46 0.56 0.88 0.57 0.56 0.94 0.9 1 0.73 0.94 0.94 0.63 0.47 0.97 0.88 1 0.79 0.51 0.5 0.87 0.51 0.51 0.83 0.79 0.57 0.86 2 6 5 6 6 2 2 5 2 5 2 6 6 4 6 4 2 2 2 6 5 2 2 4 2 2 4 5 5 7 6 5 6 2 5 3 5 6 2 2 5 2 2 6 6 2 5 146 253 227 301 294 151 128 217 160 263 156 273 303 253 270 218 144 154 146 260 218 128 128 248 152 126 260 263 220 282 277 257 265 143 263 154 253 294 128 153 256 127 137 295 281 131 237 3 4 6 4 3 3 3 5 3 5 3 4 4 5 4 5 3 3 3 4 5 3 3 6 3 3 5 4 5 5 5 5 3 3 5 4 5 4 3 3 5 3 3 4 4 3 5 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 marketing medium marketing medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support medium support medium support medium support medium support high 0.74 0.85 0.73 0.1 0.44 0.3 0.11 0.84 0.78 0.43 0.36 0.43 0.45 0.76 0.1 0.09 0.92 0.92 0.79 0.43 0.8 0.44 0.89 0.48 0.11 0.38 0.11 0.82 0.37 0.4 0.43 0.44 0.42 0.11 0.78 0.46 0.77 0.83 0.32 0.9 0.42 0.1 0.1 0.44 0.1 0.11 0.1 0.99 0.85 0.92 0.79 0.56 0.56 0.77 0.83 0.94 0.53 0.55 0.47 0.46 0.93 0.78 0.86 1 0.9 0.98 0.51 0.95 0.49 0.87 0.88 0.82 0.55 0.85 0.86 0.45 0.48 0.47 0.5 0.56 0.8 0.87 0.86 0.91 0.82 0.58 0.92 0.52 0.96 0.91 0.49 0.95 0.8 0.89 4 5 5 6 2 3 7 5 5 2 2 2 2 5 7 6 5 5 4 2 4 2 5 3 6 2 6 4 2 2 2 2 2 7 4 2 5 4 5 5 2 6 6 2 7 6 6 276 267 266 294 134 309 273 238 271 145 152 128 142 238 286 291 259 248 271 140 274 127 275 239 304 145 259 264 160 138 137 156 147 243 236 212 261 243 271 154 151 254 285 130 301 286 246 5 5 5 4 3 4 4 5 6 3 3 3 3 5 4 4 5 5 5 3 5 3 6 3 4 3 4 5 3 3 3 3 3 4 5 4 6 5 5 4 3 4 4 3 4 4 4 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support low support medium support medium technical medium technical medium technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low sales low sales low sales low sales low sales low marketing low sales low accounting low support low technical medium management medium marketing medium marketing medium marketing medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low 0.39 0.92 0.43 0.11 0.81 0.11 0.87 0.37 0.39 0.61 0.11 0.09 0.36 0.09 0.41 0.4 0.1 0.46 0.39 0.41 0.1 0.39 0.73 0.41 0.37 0.38 0.8 0.09 0.85 0.42 0.41 0.38 0.72 0.11 0.37 0.1 0.36 0.92 0.11 0.39 0.11 0.45 0.44 0.85 0.43 0.75 0.11 0.47 0.92 0.56 0.89 1 0.85 1 0.46 0.56 0.86 0.95 0.9 0.52 0.94 0.71 0.46 0.91 0.53 0.57 0.5 0.94 0.51 0.83 0.45 0.51 0.5 0.63 0.85 0.92 0.54 0.48 0.46 1 0.74 0.47 0.81 0.54 0.94 0.87 0.56 0.95 0.45 0.55 0.97 0.52 0.86 0.55 2 4 2 6 5 7 5 2 2 4 6 7 2 6 4 2 6 2 2 2 7 2 5 2 2 2 5 5 4 2 2 2 5 6 2 6 2 5 5 2 6 2 2 4 2 5 2 135 245 136 301 235 272 274 131 135 196 285 289 157 308 301 131 262 143 133 153 281 132 270 150 140 150 180 281 275 130 130 147 264 290 150 304 136 307 303 156 271 140 130 266 139 260 137 3 5 3 4 5 4 5 3 3 4 4 5 3 4 5 3 5 3 3 3 4 3 5 3 3 3 5 4 5 3 3 3 5 5 3 4 3 5 4 3 4 3 3 6 3 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical medium technical medium technical medium support medium support medium support medium support medium support medium support medium support medium support medium support medium support high support low technical medium technical medium technical medium management medium IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low 0.36 0.1 0.74 0.4 0.09 0.76 0.45 0.84 0.38 0.38 0.38 0.86 0.37 0.37 0.87 0.11 0.42 0.43 0.09 0.54 0.4 0.36 0.87 0.75 0.43 0.43 0.1 0.11 0.44 0.39 0.4 0.92 0.36 0.86 0.74 0.8 0.36 0.42 0.42 0.4 0.46 0.09 0.88 0.1 0.1 0.11 0.84 0.5 0.79 0.89 0.46 0.77 0.91 0.57 0.88 0.45 0.46 0.54 0.94 0.46 0.5 1 0.85 0.5 0.48 0.8 0.56 0.47 0.52 0.9 0.88 0.53 0.47 0.87 0.78 0.53 0.48 0.55 0.87 0.47 0.95 0.87 0.95 0.48 0.57 0.47 0.45 0.53 0.9 0.89 0.82 0.97 0.93 0.88 2 6 5 2 6 4 2 4 2 2 2 5 2 2 4 6 2 2 6 4 2 2 4 4 2 2 6 7 2 2 2 4 2 4 5 3 2 2 2 2 2 6 4 6 6 4 5 158 249 259 144 244 219 151 269 127 144 157 224 155 131 258 267 141 160 247 260 151 137 256 239 152 149 284 248 156 138 155 229 136 241 258 146 145 159 129 142 129 287 275 272 307 295 237 3 4 5 3 4 5 3 5 3 3 3 5 3 3 5 4 3 3 4 3 3 3 5 5 3 3 4 4 3 3 3 6 3 5 5 5 3 3 3 3 3 4 5 4 4 3 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing medium marketing medium marketing medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low 0.42 0.1 0.1 0.46 0.09 0.89 0.82 0.11 0.81 0.81 0.77 0.63 0.4 0.86 0.37 0.44 0.74 0.79 0.09 0.37 0.09 0.09 0.1 0.45 0.4 0.31 0.7 0.36 0.34 0.87 0.11 0.47 0.43 0.43 0.45 0.74 0.1 0.78 0.9 0.53 0.45 0.86 0.74 0.09 0.8 0.46 0.86 0.56 0.86 0.95 0.54 0.97 1 1 0.89 0.84 0.94 1 0.94 0.57 1 0.49 0.5 0.89 1 0.92 0.48 0.78 0.84 0.8 0.56 0.51 0.95 0.93 0.48 0.97 0.83 0.91 0.81 0.52 0.47 0.57 1 0.89 0.87 0.95 0.95 0.54 0.83 0.89 0.79 0.95 0.53 0.95 2 6 6 2 7 4 4 6 5 5 4 3 2 4 2 2 5 4 6 2 6 6 7 2 2 6 2 2 6 5 6 4 2 2 2 5 6 5 5 6 2 4 4 6 5 2 5 158 266 256 158 268 237 273 309 258 233 249 179 128 250 151 132 232 229 261 129 244 258 292 143 136 235 310 152 157 267 302 133 142 129 136 223 244 243 275 205 154 270 267 276 244 128 269 3 4 4 3 4 5 6 4 5 6 6 2 3 6 3 3 6 5 4 3 4 4 5 3 3 5 3 3 5 5 4 3 3 3 3 5 4 5 3 4 3 5 5 4 5 3 6 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low technical medium support medium support medium support medium support medium support medium support medium support medium support medium support medium support medium support medium technical high technical low technical medium management medium IT medium IT medium IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing medium sales medium sales medium sales medium sales medium sales medium 0.86 0.9 0.87 0.83 0.77 0.77 0.9 0.73 0.91 0.36 0.38 0.44 0.73 0.89 0.11 0.1 0.37 0.38 0.42 0.44 0.11 0.09 0.43 0.38 0.11 0.37 0.44 0.72 0.1 0.73 0.09 0.44 0.09 0.1 0.11 0.42 0.09 0.72 0.75 0.44 0.11 0.38 0.39 0.1 0.43 0.39 0.88 0.95 0.91 0.88 0.94 0.83 1 0.86 0.92 0.9 0.53 0.54 0.46 1 0.91 0.77 0.77 0.46 0.48 0.48 0.46 0.83 0.97 0.47 0.52 0.89 0.49 0.57 0.82 0.91 0.86 0.82 0.46 0.82 0.87 0.86 0.46 0.85 0.88 0.97 0.5 0.91 0.47 0.57 0.9 0.52 0.57 0.87 4 4 5 4 4 4 5 4 4 2 2 2 5 5 6 7 2 2 2 2 6 7 2 2 6 2 2 5 7 5 7 2 6 6 6 2 6 5 4 2 6 2 2 7 2 2 4 238 269 231 267 245 272 254 273 250 133 150 157 230 260 275 308 129 134 132 153 262 262 130 156 254 130 139 269 297 249 267 149 251 306 279 131 260 249 245 138 278 147 131 301 141 158 235 5 5 6 5 5 5 5 5 5 3 3 3 5 5 4 4 3 3 3 3 4 4 3 3 4 3 3 5 4 5 4 3 4 4 4 3 4 5 5 3 4 3 3 4 3 3 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support medium support medium support medium support medium support medium support medium support medium support medium support medium support medium technical medium technical medium technical high management low 0.1 0.1 0.11 0.37 0.37 0.77 0.91 0.46 0.11 0.86 0.87 0.09 0.42 0.82 0.46 0.88 0.1 0.43 0.37 0.8 0.83 0.39 0.77 0.43 0.79 0.39 0.1 0.39 0.11 0.4 0.42 0.57 0.11 0.36 0.11 0.35 0.78 0.11 0.1 0.42 0.43 0.79 0.45 0.09 0.11 0.45 0.11 0.85 0.89 0.93 0.47 0.48 0.87 0.94 0.51 0.87 0.91 0.88 0.92 0.46 0.83 0.48 1 0.91 0.45 0.49 0.95 0.95 0.57 0.92 0.46 0.96 0.55 0.88 0.53 0.89 0.51 0.52 0.85 0.95 0.73 0.94 0.8 0.99 0.93 0.96 0.54 0.5 0.84 0.45 0.91 0.91 0.49 0.91 7 5 6 2 2 4 5 2 6 5 5 6 2 4 2 5 6 2 2 5 5 2 5 2 4 2 7 2 6 2 2 4 7 4 7 6 5 7 6 2 2 5 2 6 6 2 6 261 270 290 149 160 150 218 155 291 265 262 303 132 245 129 226 286 140 153 217 258 156 255 129 234 152 300 131 301 156 141 219 269 276 302 281 241 288 303 135 127 245 145 248 302 144 272 4 4 4 3 3 4 6 3 4 5 6 5 3 5 3 6 4 3 3 5 5 3 5 3 5 3 4 3 4 3 3 2 5 2 4 2 5 4 4 3 3 5 3 4 4 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT medium IT medium IT medium IT medium IT low product_mng low product_mng low product_mng low product_mng low IT low sales low sales low sales low sales low sales low marketing low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low accounting low accounting low accounting low 0.09 0.78 0.38 0.82 0.85 0.45 0.77 0.39 0.91 0.11 0.46 0.43 0.11 0.1 0.09 0.36 0.11 0.09 0.44 0.73 0.21 0.8 0.37 0.79 0.09 0.75 0.83 0.1 0.44 0.42 0.43 0.09 0.44 0.81 0.1 0.1 0.11 0.09 0.75 0.38 0.09 0.74 0.44 0.76 0.42 0.75 0.36 0.8 0.71 0.5 0.82 0.89 0.46 0.89 0.5 0.9 0.77 0.45 0.49 0.96 0.93 0.8 0.51 0.89 0.77 0.51 0.97 0.58 0.85 0.55 0.96 0.8 0.74 1 0.77 0.55 0.97 0.56 0.84 0.53 0.98 0.79 0.93 0.83 0.77 0.83 0.55 0.87 0.97 0.56 0.95 0.56 1 0.52 6 4 2 4 4 2 5 2 4 6 2 2 6 6 5 2 6 6 2 5 7 4 2 5 6 6 5 5 2 6 2 7 2 5 7 6 6 6 5 2 7 5 2 4 2 4 2 294 296 151 249 221 146 243 127 245 264 143 135 262 299 279 155 264 256 129 217 203 264 159 218 298 134 263 252 136 259 158 307 152 237 284 243 268 244 262 134 278 238 127 259 146 243 137 4 3 3 5 5 3 5 3 5 4 3 3 4 4 4 3 4 5 3 6 5 5 3 5 4 3 5 4 3 4 3 4 3 5 4 4 4 4 5 3 4 5 3 5 3 5 3 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support medium support medium support medium support medium support medium support medium support medium support medium support medium technical medium technical medium technical medium management high IT low IT medium IT medium IT medium IT medium product_mng low product_mng low product_mng low product_mng low IT low IT low IT low IT low RandD low RandD low RandD low marketing low 0.75 0.4 0.75 0.09 0.39 0.4 0.39 0.1 0.42 0.37 0.11 0.09 0.41 0.42 0.4 0.36 0.74 0.66 0.38 0.43 0.43 0.1 0.82 0.1 0.1 0.43 0.09 0.41 0.1 0.88 0.43 0.42 0.85 0.38 0.39 0.41 0.88 0.78 0.45 0.09 0.44 0.11 0.36 0.86 0.1 0.45 0.42 0.93 0.46 0.89 0.84 0.46 0.48 0.54 0.85 0.55 0.52 0.98 0.88 0.54 0.49 0.49 0.47 0.9 1 0.47 0.51 0.53 0.85 0.85 0.77 0.93 0.49 0.94 0.54 0.82 0.92 0.57 0.5 1 0.49 0.47 0.48 0.92 0.96 0.48 0.95 0.56 0.84 0.51 0.98 0.92 0.53 0.53 5 2 4 6 2 2 2 7 2 2 6 7 2 2 2 2 4 5 2 2 2 6 4 6 6 2 7 2 7 4 2 2 4 2 2 2 4 4 2 6 2 6 2 4 6 2 2 229 134 228 301 127 142 131 310 148 143 250 265 152 145 140 129 226 269 152 132 148 297 274 280 288 155 247 138 284 225 151 155 234 144 142 126 233 241 138 260 145 252 143 270 285 149 158 5 3 5 4 3 3 3 5 3 3 4 4 3 3 3 3 5 5 3 3 3 5 5 4 4 3 4 3 4 5 3 3 5 3 3 3 6 5 3 4 3 4 3 5 4 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low 0.36 0.45 0.38 0.11 0.45 0.87 0.45 0.1 0.44 0.78 0.38 0.85 0.36 0.75 0.81 0.4 0.83 0.41 0.42 0.09 0.87 0.43 0.39 0.1 0.41 0.72 0.44 0.38 0.46 0.4 0.45 0.89 0.1 0.46 0.09 0.45 0.89 0.62 0.11 0.44 0.09 0.56 0.77 0.39 0.1 0.72 0.4 0.55 0.55 0.57 0.97 0.46 0.95 0.53 0.83 0.54 1 0.56 0.84 0.48 0.88 0.81 0.55 0.83 0.52 0.57 0.83 0.81 0.56 0.51 0.9 0.52 1 0.55 0.5 0.52 0.49 0.45 0.89 0.97 0.48 0.78 0.57 0.98 0.77 0.93 0.5 0.94 0.75 0.89 0.49 0.92 0.85 0.52 2 2 2 6 2 5 2 6 2 4 2 5 2 5 4 2 5 2 2 7 5 6 2 6 2 2 2 2 2 2 2 5 7 2 7 2 4 5 6 2 6 5 4 2 5 5 2 134 129 131 288 142 227 131 283 139 267 148 272 148 270 218 150 260 127 134 258 304 149 139 272 132 240 137 139 148 149 131 262 284 161 290 149 242 227 276 135 266 236 270 146 272 246 136 3 3 3 4 3 5 3 5 3 5 3 6 3 5 5 3 5 3 3 4 5 4 3 5 3 2 3 3 3 3 3 5 4 3 4 3 6 4 4 3 4 2 5 3 4 5 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support low support medium support medium support medium support medium support medium support medium support medium support medium technical medium technical medium technical medium management medium IT high IT low IT medium IT medium IT medium product_mng medium product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium 0.11 0.88 0.37 0.11 0.4 0.1 0.62 0.78 0.37 0.76 0.42 0.1 0.42 0.1 0.1 0.42 0.09 0.1 0.11 0.44 0.87 0.44 0.41 0.51 0.89 0.1 0.9 0.36 0.44 0.39 0.38 0.73 0.1 0.89 0.87 0.84 0.11 0.74 0.79 0.1 0.83 0.1 0.45 0.29 0.46 0.11 0.75 0.81 1 0.51 0.96 0.52 0.86 0.89 0.86 0.52 0.82 0.53 0.77 0.47 0.96 0.81 0.47 0.86 0.8 0.89 0.53 0.9 0.46 0.56 0.79 0.96 0.96 0.94 0.55 0.54 0.57 1 0.95 0.96 0.83 0.85 0.89 0.77 1 0.97 0.92 0.95 0.79 0.5 0.48 0.46 0.83 0.89 6 5 2 6 2 6 3 4 2 4 2 6 2 7 6 2 6 6 7 2 3 2 2 4 5 6 5 2 2 2 5 4 6 5 5 4 6 5 4 7 5 6 2 2 2 6 5 260 247 127 267 143 306 131 249 144 254 131 272 157 301 252 130 297 248 257 147 307 154 143 134 221 275 247 131 150 150 137 223 292 130 221 245 274 248 243 273 221 271 157 249 145 262 272 4 5 3 4 3 4 4 5 3 5 3 4 3 4 4 3 4 4 4 3 5 3 3 3 5 4 5 3 3 3 4 6 4 4 6 5 4 5 5 4 5 4 3 4 3 5 5 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium accounting medium accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support medium support medium support medium support medium support medium support medium support medium technical medium technical medium technical medium management medium IT medium IT high IT low IT medium 0.4 0.37 0.41 0.1 0.39 0.4 0.41 0.11 0.74 0.42 0.88 0.37 0.78 0.46 0.74 0.11 0.8 0.37 0.87 0.9 0.1 0.43 0.11 0.4 0.09 0.4 0.14 0.4 0.11 0.72 0.39 0.82 0.41 0.45 0.2 0.43 0.39 0.11 0.45 0.11 0.84 0.86 0.79 0.39 0.15 0.81 0.39 0.5 0.46 0.52 0.83 0.52 0.45 0.52 0.89 0.99 0.46 0.88 0.53 0.81 0.5 1 0.86 0.87 0.48 0.92 0.84 0.88 0.46 0.91 0.46 0.93 0.5 0.7 0.49 0.79 1 0.57 0.93 0.52 0.51 0.7 0.53 0.55 0.86 0.47 0.87 0.86 0.96 0.93 0.57 0.62 1 0.53 2 2 2 6 2 2 2 6 5 2 4 2 4 2 5 6 5 2 4 5 6 2 6 2 7 2 5 2 6 4 2 4 2 2 6 2 2 6 2 6 5 5 5 2 4 4 2 129 134 147 293 129 140 132 284 263 143 265 147 253 141 222 273 240 154 253 221 263 145 279 146 270 135 236 151 244 169 157 246 142 156 281 146 156 299 136 272 240 245 269 130 257 241 136 3 3 3 4 3 3 3 4 5 3 5 3 5 3 6 4 6 3 6 5 4 3 4 3 4 3 3 3 4 3 3 5 3 3 5 3 3 4 3 4 5 6 5 3 3 5 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT medium product_mng medium product_mng medium product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium accounting medium accounting medium accounting low hr low hr low hr low hr low 0.92 0.9 0.32 0.46 0.83 0.39 0.2 0.11 0.11 0.1 0.75 0.44 0.86 0.1 0.39 0.45 0.1 0.36 0.57 0.09 0.87 0.43 0.36 0.91 0.41 0.37 0.43 0.43 0.4 0.1 0.76 0.82 0.11 0.43 0.11 0.41 0.73 0.37 0.11 0.46 0.41 0.78 0.78 0.72 0.63 0.55 0.45 0.94 0.98 0.6 0.46 0.98 0.47 0.9 0.85 0.96 0.95 0.87 0.57 0.93 0.82 0.49 0.48 0.94 0.55 0.61 0.87 0.91 0.52 0.5 0.99 0.48 0.52 0.45 0.57 0.53 0.89 0.99 0.93 0.83 0.52 0.88 0.48 0.87 0.57 0.89 0.52 0.5 0.78 0.86 0.86 0.83 1 0.55 4 5 2 2 4 2 6 6 6 7 5 2 5 6 2 2 7 2 4 6 4 2 2 5 2 2 2 2 2 7 4 4 7 2 7 2 5 2 6 2 2 4 5 5 6 6 2 219 271 280 140 254 131 138 295 301 296 246 145 241 269 146 149 287 138 158 266 255 156 147 265 136 140 146 142 155 285 253 248 255 154 305 141 252 157 250 131 149 260 260 251 242 136 155 5 5 4 3 5 3 3 4 5 4 5 3 5 4 3 3 4 3 5 4 5 3 3 5 3 3 3 3 3 4 5 5 5 3 4 3 5 3 4 3 3 5 6 5 5 3 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support low support medium support medium support medium support medium support medium support medium technical medium technical medium technical medium management medium IT medium IT medium IT high IT low IT medium product_mng medium product_mng medium product_mng medium product_mng low IT low RandD low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low 0.39 0.1 0.4 0.39 0.78 0.42 0.39 0.46 0.1 0.45 0.1 0.1 0.78 0.4 0.45 0.39 0.43 0.09 0.79 0.44 0.79 0.38 0.36 0.39 0.09 0.16 0.09 0.11 0.44 0.11 0.11 0.45 0.1 0.4 0.38 0.39 0.38 0.38 0.17 0.79 0.1 0.37 0.42 0.44 0.11 0.39 0.1 0.51 0.81 0.5 0.54 0.45 0.53 0.54 0.57 0.92 0.47 0.83 0.89 0.86 0.65 0.51 0.56 0.48 0.96 0.86 0.47 0.95 0.46 0.56 0.57 0.93 0.65 0.77 0.87 0.56 0.88 0.97 0.52 0.96 0.46 0.55 0.56 0.55 0.45 0.75 0.84 0.85 0.48 0.49 0.48 0.83 0.48 0.83 2 6 2 2 4 2 2 2 6 2 6 7 5 2 2 2 2 6 5 2 5 2 2 2 6 4 6 6 2 7 6 2 7 2 2 2 2 2 3 5 7 2 2 2 6 2 5 155 248 136 133 128 142 149 145 279 146 264 272 256 296 155 130 157 245 226 156 228 155 159 142 271 277 310 254 142 253 260 147 288 160 130 133 160 151 188 247 259 129 152 128 253 151 271 3 4 3 3 2 3 3 3 4 3 4 4 5 5 3 3 3 4 5 3 5 3 3 3 4 5 4 4 3 4 4 3 4 3 3 3 3 3 4 5 4 3 3 3 4 3 5 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 management low marketing low marketing low marketing low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium accounting medium accounting medium accounting medium hr low hr low hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low 0.4 0.86 0.37 0.4 0.43 0.88 0.44 0.87 0.4 0.45 0.84 0.1 0.72 0.4 0.45 0.89 0.4 0.38 0.38 0.1 0.42 0.74 0.1 0.82 0.38 0.41 0.4 0.83 0.36 0.75 0.44 0.1 0.39 0.09 0.4 0.41 0.83 0.42 0.61 0.44 0.77 0.81 0.1 0.73 0.09 0.9 0.88 0.46 0.91 0.46 0.51 0.48 0.88 0.52 1 0.46 0.52 0.93 0.68 0.99 0.5 0.5 0.98 0.55 0.53 0.47 0.82 0.48 0.86 0.8 0.9 0.55 0.56 0.47 0.98 0.57 0.98 0.53 0.94 0.52 0.84 0.57 0.54 0.92 0.47 0.46 0.52 0.81 0.95 0.78 0.84 0.83 0.99 1 2 5 2 2 2 5 2 4 2 2 4 3 5 2 2 5 2 2 2 7 2 5 6 5 2 2 2 4 2 4 2 6 2 7 2 2 4 2 5 2 5 4 6 5 6 4 4 155 245 157 160 149 248 128 224 156 143 250 179 257 127 145 274 131 136 140 265 148 262 261 248 131 160 152 249 144 245 146 297 148 260 152 135 235 145 220 128 237 275 310 251 250 259 259 3 5 3 3 3 5 3 5 3 3 5 3 5 3 3 5 3 3 3 4 3 5 4 5 3 3 3 5 3 5 3 5 3 4 3 3 5 3 4 3 5 5 4 6 4 6 5 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support medium support medium support medium support medium support medium technical medium technical medium technical medium management medium IT medium IT medium IT medium IT high IT low product_mng medium product_mng medium product_mng medium product_mng medium IT low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium 0.09 0.4 0.17 0.82 0.9 0.83 0.44 0.5 0.14 0.77 0.09 0.11 0.44 0.43 0.12 0.1 0.1 0.4 0.41 0.37 0.4 0.74 0.39 0.11 0.36 0.8 0.6 0.36 0.1 0.65 0.49 0.73 0.11 0.73 0.43 0.73 0.76 0.09 0.9 0.1 0.43 0.41 0.41 0.1 0.4 0.4 0.36 0.87 0.56 0.55 0.82 0.83 0.92 0.5 0.85 0.61 0.82 0.83 0.88 0.57 0.52 0.8 0.86 0.96 0.48 0.47 0.48 0.48 0.96 0.48 0.9 0.51 0.83 0.85 0.54 0.96 0.86 0.73 0.96 0.8 0.91 0.46 0.93 0.85 0.96 0.81 0.81 0.48 0.55 0.57 0.87 0.46 0.53 0.48 7 2 6 5 4 4 2 4 6 4 6 6 2 2 5 7 6 2 2 2 2 4 2 5 2 5 3 2 6 2 4 5 6 4 2 5 5 6 5 6 2 2 2 6 2 2 5 305 130 250 220 266 255 154 138 291 217 286 290 148 146 136 261 274 132 145 153 139 231 154 307 129 275 250 158 310 181 244 256 259 247 129 229 236 281 264 308 147 159 154 307 132 152 310 4 3 5 6 5 5 3 3 5 5 4 4 3 3 2 5 4 3 3 3 3 5 3 4 3 5 2 3 5 2 3 6 5 5 3 5 6 4 5 4 3 3 3 4 3 3 3 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales medium sales medium sales medium sales medium sales high accounting low accounting medium accounting medium hr medium hr medium hr low hr low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low support low support low support medium support medium support medium technical medium technical medium technical medium management medium IT medium IT medium IT medium IT medium IT medium product_mng high product_mng low product_mng medium product_mng medium 0.83 0.83 0.41 0.11 0.68 0.43 0.44 0.87 0.43 0.89 0.83 0.11 0.85 0.89 0.09 0.43 0.42 0.43 0.1 0.37 0.76 0.88 0.39 0.45 0.91 0.86 0.39 0.89 0.11 0.1 0.38 0.4 0.86 0.1 0.1 0.42 0.36 0.39 0.43 0.36 0.09 0.42 0.42 0.91 0.41 0.11 0.09 0.95 0.94 0.51 0.93 0.62 0.53 0.51 0.94 0.54 0.48 0.88 0.87 1 0.97 0.92 0.55 0.46 0.54 0.93 0.46 0.98 0.89 0.48 0.54 0.95 0.85 0.53 1 0.86 0.87 0.57 0.54 0.97 0.86 0.85 0.5 0.46 0.48 0.47 0.49 0.91 0.55 0.46 0.89 0.56 0.78 0.83 5 5 2 7 5 2 2 5 2 3 5 6 6 4 7 4 2 2 6 2 4 4 2 2 5 5 2 4 6 6 2 2 5 6 6 2 2 2 2 2 6 2 2 5 2 6 6 230 273 144 296 198 157 145 219 153 178 239 278 260 264 301 134 147 130 307 156 237 254 151 131 241 267 153 217 254 265 146 156 269 288 283 128 130 127 137 133 275 146 135 217 154 247 295 5 5 3 4 5 3 3 5 3 5 5 5 3 5 4 3 3 3 4 3 5 5 3 3 5 5 3 5 4 5 3 3 5 4 4 3 3 3 3 3 4 3 3 5 3 4 5 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT medium RandD medium RandD low RandD low RandD low RandD low marketing low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium accounting high accounting low accounting medium hr medium hr medium hr medium hr low technical low technical low technical low technical low technical low 0.83 0.11 0.1 0.42 0.1 0.38 0.77 0.11 0.87 0.1 0.1 0.09 0.84 0.11 0.81 0.77 0.42 0.36 0.81 0.37 0.1 0.14 0.41 0.44 0.82 0.67 0.44 0.42 0.84 0.86 0.56 0.09 0.1 0.39 0.75 0.43 0.09 0.83 0.59 0.44 0.38 0.76 0.22 0.4 0.41 0.38 0.45 1 0.78 0.93 0.55 0.97 0.51 0.98 0.85 0.97 0.88 0.89 0.9 0.85 0.86 0.97 0.85 0.47 0.56 0.83 0.46 0.96 0.55 0.51 0.55 0.94 0.54 0.57 0.54 0.83 1 0.86 0.93 0.81 0.54 0.89 0.55 0.96 0.94 1 0.54 0.49 0.98 0.86 0.46 0.48 0.51 0.68 5 6 7 2 7 2 4 7 5 7 7 6 5 6 5 5 2 2 5 2 6 6 2 2 5 3 2 2 4 4 5 6 7 2 5 2 7 4 3 2 2 5 4 2 2 2 4 224 281 258 150 282 138 238 244 250 282 253 256 260 245 230 276 137 140 269 130 264 175 159 128 232 166 141 143 239 232 252 255 270 149 276 159 274 264 156 135 128 242 293 141 155 141 212 5 4 4 3 4 3 6 4 6 4 4 4 5 4 5 5 3 3 6 3 4 5 3 3 5 5 3 3 5 5 2 4 4 3 5 3 5 5 4 3 3 5 3 3 3 3 4 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support medium support medium technical medium technical medium technical medium management medium IT medium IT medium IT medium IT medium IT medium product_mng medium product_mng high product_mng low product_mng medium IT medium RandD medium RandD medium RandD low RandD low RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low 0.39 0.45 0.42 0.1 0.78 0.39 0.1 0.1 0.43 0.38 0.09 0.39 0.73 0.38 0.1 0.41 0.43 0.79 0.1 0.11 0.42 0.36 0.63 0.41 0.36 0.1 0.11 0.44 0.77 0.91 0.26 0.81 0.11 0.92 0.1 0.45 0.11 0.23 0.86 0.44 0.41 0.84 0.42 0.11 0.38 0.11 0.1 0.56 0.47 0.53 0.87 0.96 0.56 0.87 0.8 0.46 0.45 0.77 0.53 0.99 0.49 0.91 0.54 0.51 0.96 0.81 0.97 0.5 0.51 0.93 0.56 0.46 0.9 0.96 0.54 0.96 1 0.46 0.93 0.87 0.89 0.86 0.51 0.94 0.7 0.95 0.55 0.56 0.97 0.52 0.88 0.46 0.96 0.83 2 2 2 6 5 2 7 6 2 2 6 2 6 2 6 2 2 4 6 6 2 2 5 2 2 6 6 2 5 4 2 5 6 4 5 2 6 5 4 2 2 5 2 7 2 7 6 160 150 132 248 272 160 299 292 126 132 282 141 206 140 255 133 131 257 269 254 143 157 163 133 157 301 310 133 249 251 242 265 280 241 253 137 266 168 270 141 133 256 160 275 160 244 271 3 3 3 4 5 3 4 4 3 3 5 3 5 3 4 3 3 5 4 4 3 3 3 3 3 5 4 3 6 6 3 6 4 5 4 3 4 4 5 3 3 5 3 4 3 4 4 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium accounting medium accounting medium accounting high hr low hr medium hr medium hr medium technical medium technical low technical low technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical medium 0.86 0.91 0.37 0.46 0.1 0.37 0.4 0.09 0.11 0.39 0.89 0.09 0.88 0.11 0.1 0.91 0.44 0.63 0.1 0.36 0.45 0.73 0.37 0.09 0.41 0.72 0.36 0.9 0.44 0.78 0.37 0.4 0.84 0.09 0.83 0.11 0.37 0.09 0.43 0.39 0.85 0.38 0.76 0.44 0.73 0.43 0.43 0.88 1 0.53 0.5 0.89 0.46 0.48 0.78 0.89 0.48 0.96 0.91 0.97 0.9 0.95 1 0.52 0.76 0.87 0.51 0.51 1 0.55 0.85 0.71 1 0.54 1 0.56 0.95 0.52 0.47 1 0.86 0.93 0.87 0.5 0.93 0.47 0.56 0.9 0.52 0.84 0.51 1 0.53 0.51 5 4 2 2 6 2 2 6 6 2 4 6 4 7 6 4 2 2 7 2 2 5 2 7 3 5 2 4 2 4 2 2 5 6 4 6 2 6 2 2 2 2 5 2 4 2 2 268 253 140 146 259 127 161 260 272 159 219 243 255 245 264 245 137 157 247 144 149 253 140 307 205 234 127 229 141 260 141 144 250 245 269 273 142 273 248 147 168 128 227 135 268 136 149 5 5 3 3 5 3 3 4 4 3 6 4 5 4 5 6 3 4 4 3 3 6 3 4 4 5 3 5 3 5 3 3 5 4 5 4 3 5 2 3 2 3 5 3 5 3 3 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical medium technical medium management medium IT medium IT medium IT medium IT medium IT medium product_mng medium product_mng medium product_mng medium product_mng high IT low RandD medium RandD medium RandD medium RandD medium RandD low marketing low sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium sales medium sales medium accounting medium 0.09 0.43 0.45 0.42 0.41 0.44 0.09 0.41 0.43 0.38 0.85 0.88 0.44 0.11 0.38 0.09 0.11 0.11 0.44 0.38 0.1 0.45 0.11 0.36 0.72 0.43 0.45 0.4 0.1 0.83 0.11 0.43 0.38 0.83 0.11 0.43 0.11 0.43 0.1 0.44 0.82 0.1 0.1 0.3 0.1 0.39 0.14 0.96 0.53 0.57 0.48 0.46 0.55 0.92 0.51 0.51 0.51 0.96 0.91 0.46 0.92 0.5 0.78 0.79 0.88 0.48 0.51 0.87 0.57 0.94 0.48 0.95 0.48 0.5 0.53 0.81 0.93 0.8 0.5 0.5 1 0.82 0.52 0.88 0.46 0.89 0.51 0.91 0.86 0.95 0.89 0.93 0.5 0.47 7 2 2 2 2 2 7 2 2 2 4 4 2 7 2 6 6 6 2 2 6 2 7 2 5 2 2 2 6 5 7 2 2 5 7 2 6 2 6 2 5 6 5 5 6 2 4 264 143 138 146 150 156 245 156 143 159 217 234 138 265 145 263 264 253 155 137 254 143 280 136 271 157 150 127 271 257 305 152 144 269 285 136 294 157 280 152 276 247 286 257 258 151 175 4 3 3 3 3 3 4 3 3 3 5 6 3 4 3 4 4 4 3 3 5 3 5 3 5 3 3 3 4 5 4 3 3 5 4 3 4 3 4 3 6 4 4 5 4 3 2 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 accounting medium accounting medium hr medium hr high hr low hr medium technical medium technical medium technical medium technical low technical low technical low technical low technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical medium management medium IT medium IT medium IT medium IT medium IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium RandD high RandD low RandD medium RandD medium RandD medium 0.82 0.1 0.09 0.54 0.61 0.1 0.1 0.36 0.1 0.84 0.38 0.41 0.37 0.43 0.46 0.09 0.78 0.45 0.42 0.46 0.39 0.36 0.43 0.85 0.11 0.11 0.38 0.43 0.75 0.11 0.1 0.1 0.37 0.11 0.45 0.44 0.44 0.11 0.79 0.8 0.1 0.09 0.7 0.72 0.11 0.39 0.4 0.92 0.85 0.9 0.83 0.58 0.79 0.9 0.49 0.97 1 0.51 0.49 0.51 0.56 0.53 0.84 0.86 0.53 0.47 0.53 0.49 0.51 0.53 0.87 0.92 0.9 0.47 0.57 1 0.92 0.9 0.81 0.5 0.93 0.46 0.48 0.56 0.77 0.93 0.9 0.87 0.93 0.84 0.84 0.8 0.51 0.49 4 6 6 6 2 6 6 2 7 5 2 2 2 2 2 6 5 2 2 2 2 2 2 5 6 6 2 2 5 6 7 7 2 5 2 2 2 6 5 5 7 6 6 4 6 2 2 252 266 295 165 264 275 299 147 306 242 159 147 154 129 161 269 274 159 135 147 142 130 147 246 281 253 128 129 223 269 269 244 154 140 159 158 133 247 268 267 251 279 161 256 304 137 144 5 4 4 6 4 4 4 3 4 5 3 3 3 3 3 4 5 3 3 3 3 3 3 5 4 4 3 3 6 4 4 5 3 5 3 3 3 4 5 5 5 4 4 5 4 3 3 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 marketing medium sales low accounting low support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr high technical low technical medium technical medium technical medium technical medium technical low technical low technical low technical low technical low technical low support low 0.43 0.76 0.4 0.09 0.37 0.87 0.1 0.11 0.43 0.1 0.11 0.85 0.37 0.44 0.1 0.11 0.87 0.39 0.1 0.44 0.4 0.76 0.46 0.9 0.85 0.1 0.43 0.2 0.81 0.83 0.14 0.1 0.91 0.37 0.42 0.39 0.39 0.44 0.37 0.39 0.72 0.37 0.82 0.42 0.59 0.82 0.73 0.54 0.87 0.48 0.89 0.54 0.91 0.86 0.86 0.5 0.81 0.95 0.87 0.49 0.52 0.83 0.89 0.88 0.49 0.94 0.53 0.49 0.98 0.55 0.92 0.87 0.78 0.49 0.5 0.92 0.85 0.75 0.84 0.98 0.57 0.57 0.68 0.54 0.52 0.45 0.53 0.94 0.49 0.94 0.52 1 0.86 0.97 2 5 2 6 2 5 6 6 2 6 6 5 2 2 7 6 5 2 7 2 2 5 2 4 4 5 2 5 5 5 4 5 4 2 2 2 2 2 2 2 4 2 5 2 2 5 6 142 262 142 282 157 228 283 286 148 245 279 245 138 141 302 268 240 127 264 155 143 217 147 271 273 285 131 135 239 237 277 303 242 158 147 282 154 149 149 146 258 148 236 134 155 257 189 3 5 3 4 3 5 4 4 3 4 4 5 3 3 5 4 5 3 4 3 3 6 3 5 5 4 3 6 5 5 5 5 6 3 3 5 3 3 3 3 5 3 5 3 5 5 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT medium IT medium IT medium IT medium IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium RandD medium RandD medium RandD high RandD low RandD medium marketing medium sales medium accounting medium support low technical low management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low 0.78 0.09 0.1 0.45 0.83 0.43 0.4 0.43 0.78 0.39 0.11 0.36 0.36 0.1 0.4 0.81 0.4 0.09 0.76 0.73 0.38 0.72 0.4 0.91 0.85 0.9 0.46 0.43 0.89 0.09 0.4 0.76 0.4 0.37 0.37 0.11 0.37 0.09 0.88 0.84 0.1 0.41 0.84 0.41 0.53 0.42 0.36 0.66 0.95 0.97 0.46 0.81 0.51 0.47 0.46 0.93 0.45 0.97 0.52 0.54 0.79 0.47 0.85 0.47 0.93 0.89 0.93 0.49 0.84 0.56 0.99 0.85 0.7 0.55 0.57 0.88 0.81 0.48 0.83 0.57 0.48 0.53 0.96 0.52 0.89 0.86 0.94 0.98 0.47 0.91 0.55 0.76 0.47 0.5 3 6 6 2 5 2 2 2 4 2 6 2 2 7 2 4 2 6 5 5 2 5 2 5 4 5 2 2 5 6 2 6 2 2 2 6 2 7 5 5 6 2 5 2 5 2 2 164 271 280 149 219 128 128 157 225 140 310 143 153 310 136 251 144 296 238 162 137 257 148 254 247 206 145 159 228 257 155 293 151 160 143 280 158 310 258 262 265 143 232 161 132 139 131 3 4 4 3 5 3 3 3 5 3 4 3 3 4 3 6 3 4 5 4 3 5 3 5 6 4 3 3 5 4 3 6 3 3 3 4 3 4 5 5 4 3 6 3 6 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales medium sales medium sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium technical high technical low technical medium technical medium technical medium technical medium technical low technical low technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT medium IT medium 0.38 0.36 0.46 0.37 0.42 0.44 0.92 0.1 0.76 0.11 0.43 0.4 0.11 0.84 0.84 0.51 0.66 0.42 0.38 0.15 0.38 0.43 0.37 0.11 0.41 0.84 0.4 0.58 0.82 0.45 0.78 0.49 0.36 0.54 0.99 0.5 0.74 0.56 0.34 0.48 0.73 0.59 0.81 0.9 0.41 0.89 0.48 0.52 0.48 0.54 0.47 0.49 0.56 0.82 0.79 1 0.79 0.48 0.49 0.84 0.82 0.84 0.6 0.91 0.56 0.49 0.63 0.53 0.54 0.57 0.92 0.53 0.96 0.51 0.74 0.67 0.69 0.82 0.6 0.95 0.37 0.91 0.75 0.64 0.58 0.39 0.94 0.62 0.87 0.57 0.66 0.84 0.92 0.84 2 2 2 2 2 2 5 6 4 6 2 2 7 5 5 7 5 2 2 7 2 2 2 7 2 4 2 4 2 5 5 3 3 2 5 6 4 4 2 5 3 3 3 3 6 4 4 161 152 138 159 153 156 265 301 220 247 136 160 310 240 238 243 248 137 155 229 140 156 147 293 157 247 148 215 202 193 247 214 206 176 136 127 268 258 136 255 218 268 224 231 191 165 252 3 3 3 3 3 3 5 5 6 4 3 3 4 5 5 5 4 3 3 3 3 3 3 4 3 5 3 3 3 3 3 2 4 2 4 3 3 3 3 6 3 4 2 3 6 5 3 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium RandD medium RandD medium RandD medium RandD medium RandD high marketing low sales medium accounting medium support medium technical medium management low marketing low marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales medium sales medium accounting medium accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium 0.79 0.98 0.75 1 0.24 0.84 0.56 0.92 0.61 0.84 0.85 0.67 0.54 0.75 0.82 0.76 0.19 0.61 0.51 0.52 0.74 0.98 0.71 0.33 0.98 0.52 0.84 0.87 0.48 0.58 0.58 0.73 0.68 0.41 0.85 0.54 0.81 0.7 0.63 0.68 0.7 0.82 0.72 0.77 0.86 0.15 0.81 0.97 0.66 0.7 0.41 0.82 0.43 0.86 0.93 0.98 0.77 0.59 0.57 0.94 0.56 0.79 0.6 0.53 0.41 0.8 0.88 0.58 0.91 0.92 0.88 0.97 0.59 0.65 0.5 0.85 0.55 0.84 0.69 0.54 0.68 0.6 0.7 0.61 0.52 0.66 0.54 0.53 0.65 0.94 0.78 0.91 0.97 0.99 5 5 4 4 5 6 4 4 3 4 3 2 4 5 4 4 6 3 3 3 3 4 3 6 3 2 2 3 3 4 5 4 4 3 3 5 5 4 4 3 4 4 4 3 4 3 5 266 248 144 174 179 246 201 208 267 262 235 160 267 175 224 177 191 138 218 179 241 240 202 260 196 176 140 242 279 202 228 171 153 165 182 239 231 255 237 251 178 148 240 269 147 198 143 2 3 4 3 6 4 3 3 3 4 3 4 4 4 2 2 4 3 2 2 3 3 4 3 3 3 3 2 4 3 3 3 3 3 3 5 2 3 2 2 2 3 4 3 3 5 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical medium technical medium technical high technical low technical medium technical medium technical medium technical medium technical low technical low support low support low support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT medium product_mng medium product_mng medium product_mng medium product_mng medium IT medium RandD medium RandD medium RandD medium RandD medium RandD medium marketing medium sales high accounting low support medium technical medium management medium marketing medium 0.93 0.62 0.53 0.86 0.92 0.97 0.39 0.45 0.41 0.51 0.74 0.69 0.84 0.69 0.93 0.33 0.25 0.63 0.81 0.12 0.52 0.57 0.84 0.6 0.73 0.2 0.58 0.48 0.54 0.86 0.94 0.76 0.61 0.56 1 0.15 0.19 0.17 0.71 0.86 0.59 0.74 0.98 0.93 1 0.59 0.98 0.98 0.74 0.81 0.99 0.65 0.83 0.78 0.66 0.47 0.69 0.62 0.57 0.64 0.66 0.53 0.45 0.65 0.59 0.62 0.87 0.66 0.51 0.58 0.95 0.44 0.58 0.9 0.56 0.67 1 0.83 0.74 0.95 0.94 0.74 0.53 0.58 0.73 0.57 0.79 0.88 0.76 0.92 0.75 0.92 0.81 0.55 3 4 3 3 4 4 2 3 4 3 4 5 4 5 5 6 5 5 3 4 4 2 4 5 2 3 3 2 4 4 2 5 5 4 3 6 5 5 3 3 4 5 4 5 5 4 4 238 213 226 169 238 202 205 111 104 212 236 245 267 106 198 239 220 224 100 244 139 152 208 205 194 209 212 151 282 256 185 132 233 215 220 222 182 258 209 242 155 104 201 143 161 200 255 2 4 3 2 2 3 6 4 3 3 4 2 4 5 3 3 3 3 3 5 3 2 3 3 6 5 3 3 6 3 3 3 3 2 4 3 2 4 2 2 3 4 3 3 3 2 2 0 0 1 1 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 marketing low marketing low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting medium accounting medium accounting medium hr medium hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical medium technical high technical low technical medium technical medium technical medium technical medium support low support low support low support low support low support low support low support low 0.35 0.42 0.61 0.78 0.93 0.5 0.67 0.75 0.79 0.84 0.72 0.57 0.73 0.74 0.52 0.56 0.76 0.82 0.76 0.62 0.48 0.64 0.74 0.52 0.67 0.71 0.72 0.33 0.91 0.88 0.96 0.97 0.27 0.65 0.68 0.68 0.69 0.79 0.74 0.8 0.38 0.26 0.81 0.67 0.55 0.87 0.46 0.5 0.96 0.85 0.72 0.52 0.95 0.51 0.85 0.51 0.89 0.5 0.48 0.52 0.58 0.83 0.76 0.68 0.93 0.83 0.59 0.8 0.77 0.82 0.43 0.5 0.76 0.63 0.58 0.56 0.68 0.6 0.68 0.59 0.64 0.73 0.46 0.74 0.99 0.92 0.83 0.94 0.83 0.86 0.54 0.81 0.71 0.69 5 3 5 5 4 5 5 4 4 4 3 2 4 4 4 3 4 4 3 3 4 3 4 2 4 5 3 2 4 5 4 3 5 3 3 4 3 3 5 3 5 3 3 2 4 3 2 227 270 230 270 200 207 182 234 237 187 257 194 162 148 210 213 189 185 186 128 268 213 142 199 157 172 176 183 270 157 185 167 226 223 257 143 215 194 193 163 252 168 231 141 260 132 159 2 6 3 3 3 3 3 3 2 2 6 2 3 2 2 2 2 2 2 3 3 3 2 2 2 2 3 2 2 4 3 3 5 4 3 3 2 4 3 3 5 3 3 2 2 2 2 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 1 0 1 0 0 1 0 0 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng medium product_mng medium product_mng medium IT medium RandD medium RandD medium RandD medium RandD medium RandD medium marketing medium sales medium accounting medium support high technical low management medium marketing medium marketing medium marketing medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low 0.63 0.54 1 0.97 0.9 0.75 0.92 0.8 0.57 0.81 0.64 0.71 0.35 0.88 0.13 0.82 0.17 0.21 0.89 0.2 0.99 0.26 0.22 0.79 0.73 0.83 0.42 0.18 0.92 0.87 0.72 0.64 1 0.83 0.98 0.7 0.9 0.55 0.78 0.89 0.17 0.14 0.85 0.84 0.7 0.16 0.51 0.57 0.96 0.49 0.66 0.92 0.7 0.84 0.94 0.81 0.94 0.6 0.54 0.58 0.81 0.59 0.73 0.92 0.82 0.47 0.72 0.81 0.85 0.53 0.84 0.79 0.54 0.54 0.8 0.91 0.52 0.65 0.58 0.66 0.65 0.58 0.87 0.79 0.99 0.84 0.53 0.59 0.64 0.57 0.79 0.69 0.98 0.69 4 4 3 4 3 3 4 4 3 3 3 4 3 5 5 4 4 4 4 6 5 6 4 3 4 3 3 2 4 3 4 5 4 4 4 3 4 4 3 5 3 5 4 4 3 5 3 177 248 185 149 152 129 208 136 142 225 143 215 229 193 160 195 189 207 108 224 180 152 244 176 145 149 122 110 222 237 224 115 180 162 136 260 150 248 233 272 197 164 216 266 102 284 145 3 3 2 2 3 3 2 2 2 4 3 3 6 5 5 5 2 5 3 4 3 4 2 3 2 3 4 5 2 3 3 5 3 3 3 2 2 3 3 3 5 5 2 3 4 5 2 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low accounting low accounting low accounting medium hr medium hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical high technical low technical medium technical medium support medium support medium support low support low support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng medium IT medium RandD medium 0.6 0.5 0.43 0.5 0.91 0.65 0.59 0.89 0.97 0.56 0.76 0.28 0.75 0.78 0.26 0.53 0.25 0.82 0.71 0.61 0.89 0.57 0.93 0.61 0.56 0.7 0.9 0.15 0.39 0.74 0.7 0.72 0.61 0.96 0.7 0.92 0.72 0.53 0.67 0.78 0.53 0.9 0.16 0.62 0.62 0.22 0.91 0.89 0.63 0.39 0.7 0.89 0.93 0.52 0.56 0.6 0.97 0.93 0.55 0.51 0.81 0.63 0.72 0.41 0.51 0.57 0.95 0.68 0.78 0.8 0.84 0.62 0.89 0.64 0.74 0.36 0.72 0.61 0.93 0.97 1 0.59 0.49 0.56 0.75 0.85 0.8 0.75 0.48 0.9 0.38 0.98 0.52 0.82 3 3 5 4 4 4 2 3 3 5 3 4 4 4 6 2 3 3 2 4 3 3 4 5 3 6 4 6 3 4 4 4 3 5 4 3 4 6 3 4 4 4 5 3 4 6 3 167 172 198 201 197 270 149 256 162 163 266 208 138 232 100 172 133 234 183 174 175 109 248 104 154 214 209 212 168 176 163 148 137 162 216 240 176 192 160 194 239 204 258 257 137 175 183 4 2 5 4 4 2 3 3 3 2 3 4 4 3 4 5 6 3 4 4 2 3 3 4 2 2 4 2 3 3 4 2 3 3 3 2 2 6 4 2 2 3 3 3 3 4 3 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 RandD medium RandD medium RandD medium RandD medium marketing medium sales medium accounting medium support medium technical medium management high marketing low marketing medium marketing medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr medium hr medium hr medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium 0.87 0.95 0.99 0.99 0.77 0.75 0.83 0.61 0.91 0.47 0.77 0.55 0.32 0.96 0.72 0.8 0.61 0.97 0.63 0.92 0.94 0.79 0.75 0.78 0.96 0.65 0.18 0.94 0.84 0.67 0.71 0.56 0.29 0.47 0.4 0.81 0.96 0.99 0.75 0.75 1 0.52 0.98 0.6 0.38 0.51 0.91 0.74 0.69 0.75 0.57 0.99 0.68 0.54 0.39 0.97 0.64 0.61 0.51 0.48 0.67 0.79 0.9 0.55 0.88 0.93 0.92 0.74 0.72 0.73 0.99 0.45 0.68 0.94 0.51 0.79 0.54 0.5 0.64 0.56 0.9 0.69 0.82 0.99 0.75 0.77 0.74 0.86 0.53 0.74 0.64 0.44 0.41 0.61 4 3 3 3 4 3 4 3 3 3 5 3 5 6 5 4 4 3 4 3 5 6 2 3 6 4 3 3 4 2 4 3 5 3 2 4 3 6 4 4 4 2 3 2 3 6 2 190 225 215 176 153 150 259 99 167 192 146 190 246 190 260 136 231 204 201 159 171 240 152 151 232 128 187 160 259 136 253 260 231 101 174 167 148 139 136 153 161 163 164 137 137 106 272 4 2 3 4 3 2 5 2 2 3 3 3 3 3 2 3 3 2 3 3 3 4 4 3 2 5 6 2 3 2 3 3 6 2 3 2 3 5 3 2 2 2 3 5 3 5 2 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 1 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical medium technical high technical low support medium support medium support medium support medium support low support low support low support low support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD medium RandD medium RandD medium RandD medium RandD medium marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing high marketing low sales medium sales medium sales medium sales medium sales low 0.56 0.58 0.51 0.91 0.8 0.55 0.62 0.62 0.87 0.65 0.51 0.98 0.13 0.78 0.6 0.68 0.55 0.99 0.92 1 0.77 0.86 0.89 0.58 0.56 0.38 0.62 0.66 0.3 0.82 0.96 0.66 0.79 0.97 0.59 0.57 0.64 0.14 0.48 0.78 0.96 0.82 0.94 0.95 0.59 0.69 0.74 0.62 0.69 0.53 0.55 0.98 0.83 0.53 0.6 0.58 0.5 0.64 0.77 0.43 0.76 0.98 0.69 0.84 0.79 0.68 0.65 0.93 0.7 0.84 0.55 0.66 0.64 0.64 0.77 0.44 0.83 0.68 0.95 0.5 0.77 0.65 0.48 0.53 0.51 0.55 1 0.62 0.97 0.9 0.66 0.43 0.89 0.72 5 4 3 6 2 4 3 3 4 5 3 3 4 5 3 3 3 4 5 4 4 5 2 5 3 3 3 2 3 3 4 3 5 3 3 4 4 5 3 3 5 3 5 4 3 4 3 238 223 201 97 232 199 141 171 212 270 267 134 165 168 262 185 237 192 236 202 171 160 252 206 212 111 240 171 129 271 162 191 176 182 226 161 163 173 228 139 128 115 191 183 173 174 213 3 4 2 4 6 3 3 2 3 2 2 2 5 4 2 2 3 3 2 4 2 3 3 3 2 3 2 2 2 2 2 3 3 2 3 3 3 4 2 3 5 2 4 3 3 2 3 0 0 0 0 1 0 0 0 0 0 0 1 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium support high support low support medium support medium support medium support medium support low support low support low support low support low technical low technical low technical low management low 0.67 0.83 0.81 0.54 0.89 0.79 0.46 0.99 0.75 0.93 0.65 0.19 0.48 0.95 0.92 0.84 0.37 0.22 0.64 0.72 0.48 0.12 0.78 0.71 0.38 0.57 0.72 0.6 0.61 0.67 0.97 0.22 0.15 0.6 0.15 0.5 0.9 0.84 0.74 0.72 0.93 0.54 0.87 0.19 0.33 0.94 0.77 0.67 0.52 0.85 0.73 0.83 0.74 0.58 0.93 0.9 0.82 0.6 0.63 0.61 0.64 0.77 0.54 0.63 0.74 0.54 0.88 0.69 0.55 0.98 0.74 0.69 0.85 0.51 0.57 0.55 0.64 0.97 0.6 0.53 0.6 0.8 0.81 0.67 0.51 0.78 0.51 0.63 0.69 0.65 0.98 0.4 0.93 0.49 4 3 3 2 3 5 4 4 5 4 5 4 2 5 4 4 4 3 3 2 4 5 5 3 3 4 3 2 5 4 5 3 4 3 5 3 3 6 5 3 3 3 4 5 4 4 4 192 167 263 100 164 172 171 236 186 175 227 142 121 234 185 160 153 199 166 247 245 242 158 163 99 164 160 184 266 190 192 205 205 258 151 148 179 141 216 235 160 141 246 226 212 220 266 4 2 3 3 3 2 3 3 4 3 3 6 2 3 3 3 3 6 2 3 3 4 2 3 3 3 3 3 2 2 2 6 5 3 2 2 2 2 2 2 4 4 2 4 2 3 2 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 0 0 0 0 0 0 1 1 0 1 0 0 1 0 0 1 0 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD medium RandD medium RandD medium marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low 0.48 0.7 0.54 0.61 0.97 0.6 0.93 0.48 0.16 0.18 0.84 0.69 0.22 0.83 0.58 0.61 0.67 0.56 0.74 0.92 0.81 0.48 0.73 0.97 0.15 0.69 0.61 0.86 0.55 0.9 0.65 0.81 0.65 0.47 0.93 0.77 0.87 0.87 0.65 0.21 0.75 0.72 0.88 0.66 0.8 0.22 0.92 0.82 0.74 0.93 0.98 0.4 0.85 0.84 0.69 0.76 0.75 0.75 0.63 0.88 0.52 0.5 0.62 0.5 0.76 0.74 0.97 0.68 0.49 0.72 0.66 0.51 0.76 0.68 0.58 0.88 0.74 0.4 0.92 0.86 0.86 0.53 0.9 0.82 0.84 0.75 0.7 0.59 0.86 0.63 0.58 0.75 0.55 0.69 3 5 4 4 4 3 5 4 5 3 3 4 4 4 2 4 4 4 3 4 5 4 4 6 6 5 5 3 4 4 2 5 5 4 3 4 6 5 2 6 4 4 3 3 3 4 3 183 263 161 199 258 209 135 222 192 250 187 217 213 273 132 140 173 189 156 238 230 242 197 164 248 255 225 151 252 206 141 259 250 169 200 104 176 137 151 130 199 191 273 205 181 261 192 2 3 4 2 4 2 3 2 3 3 3 3 3 3 3 3 2 2 3 5 2 2 3 5 5 6 4 2 3 4 2 3 3 6 3 5 3 2 3 6 2 2 3 3 3 3 3 0 1 1 0 1 1 0 0 0 0 1 0 1 0 0 1 1 0 0 1 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 hr low hr low hr low technical low technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support high support low support medium support medium support medium support medium support low support low support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD medium marketing medium sales medium accounting medium 0.54 0.91 0.77 0.61 0.48 0.25 0.91 0.72 0.77 0.41 0.51 0.72 0.47 0.53 0.65 0.18 0.61 0.86 0.14 0.63 0.79 0.78 0.14 0.85 0.85 0.91 0.76 0.62 0.53 0.97 0.48 0.5 0.32 0.58 0.81 0.48 0.96 0.56 0.63 0.21 0.94 0.94 0.96 0.49 0.82 0.6 0.76 0.77 0.56 0.83 0.51 0.9 0.69 0.7 0.58 0.71 0.4 0.49 0.79 0.57 0.67 0.52 0.75 0.48 0.72 0.77 0.8 0.57 0.97 0.52 0.54 0.75 0.76 0.74 0.72 0.69 0.63 0.53 0.55 0.42 0.77 0.83 0.84 0.88 0.9 0.96 0.5 0.78 0.89 0.54 0.5 0.68 0.5 0.5 4 4 4 3 4 3 3 5 4 2 4 3 3 4 5 4 3 4 4 3 3 4 4 3 4 5 3 5 4 3 4 4 2 4 3 4 4 3 4 5 3 4 3 4 2 3 3 271 158 231 156 201 187 132 147 223 194 234 149 162 238 149 170 250 167 166 205 250 142 217 139 139 152 224 180 216 133 271 148 99 196 196 228 165 235 167 255 184 239 153 187 285 274 156 3 3 2 3 4 4 4 3 3 2 2 3 3 2 3 5 2 2 5 2 3 3 6 3 3 3 2 3 2 3 3 3 4 2 2 3 2 2 2 5 3 3 2 5 2 3 3 0 0 0 1 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support medium technical medium management medium marketing medium marketing medium marketing medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical medium technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support medium 0.69 1 0.62 0.4 0.94 0.76 0.58 0.85 0.45 0.13 0.24 0.64 0.63 0.61 0.71 0.9 0.17 0.93 0.83 0.58 0.76 0.5 0.22 0.9 0.7 0.73 0.84 0.55 0.63 0.51 0.81 0.8 0.99 0.9 0.65 0.75 0.62 0.61 0.24 0.71 0.49 0.44 0.75 0.74 0.62 0.51 0.61 0.64 0.94 0.66 0.99 0.91 0.84 0.69 0.78 0.52 0.67 0.5 0.69 0.61 0.99 0.99 0.89 0.76 0.97 0.89 0.75 0.5 0.78 0.81 0.88 0.63 0.85 0.87 0.63 0.98 0.92 0.76 0.96 0.97 0.87 0.67 0.75 0.49 0.63 0.6 0.63 0.8 0.66 0.87 0.84 0.87 0.58 0.59 5 4 4 4 3 4 3 4 2 3 5 3 6 4 2 5 4 3 5 4 3 3 5 4 3 5 3 5 4 3 4 4 4 5 5 3 4 5 4 3 2 3 4 3 5 3 5 265 144 143 214 163 236 146 106 105 181 174 207 118 251 136 249 171 256 141 186 258 228 205 174 155 245 271 184 175 224 177 268 208 219 128 273 218 230 195 254 275 162 193 239 149 155 271 2 3 3 6 3 4 4 2 3 4 4 2 2 2 3 3 5 2 3 2 3 2 4 3 4 3 3 4 2 3 3 3 3 2 5 3 4 3 5 3 2 2 3 4 3 3 2 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 1 0 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 support high support low support medium support medium support medium support medium support low technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low marketing low marketing medium sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low 0.56 0.79 0.68 0.9 0.83 0.94 0.21 0.58 0.52 0.18 0.94 0.69 0.65 0.46 0.72 0.3 0.51 0.43 0.56 0.63 0.61 0.53 0.87 0.68 0.78 0.49 0.96 0.83 0.48 0.63 0.87 0.21 0.79 0.8 0.78 0.67 0.67 0.26 0.89 0.7 0.51 0.53 0.76 0.86 0.63 0.58 0.58 0.49 0.76 0.75 0.84 0.93 0.82 0.65 0.87 0.38 0.67 0.91 0.5 0.83 0.62 0.62 0.37 0.51 0.75 0.94 0.91 0.55 0.73 0.75 0.7 0.84 0.95 0.81 0.74 0.67 0.86 0.38 0.9 0.58 0.96 0.82 0.65 0.71 0.67 0.83 0.53 0.48 0.88 0.51 0.93 0.96 0.86 0.83 5 3 6 2 5 3 5 3 6 5 5 3 4 2 4 6 4 3 3 4 5 4 3 4 3 4 3 3 5 4 4 4 5 3 4 5 3 2 5 4 5 3 4 5 5 5 4 163 160 274 199 241 187 223 268 169 285 254 208 218 187 256 278 204 108 226 246 260 248 132 185 269 156 212 221 273 271 183 271 165 257 143 156 190 242 267 152 136 157 281 208 152 271 163 3 3 5 3 3 3 3 2 3 5 3 4 3 3 3 3 2 2 2 3 3 2 3 4 2 2 3 2 3 3 5 6 3 5 3 2 3 6 4 3 4 3 3 2 3 3 3 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low technical low technical low technical medium technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support medium support medium support high support low support medium support medium support medium support medium technical low technical low technical low management low IT low IT low IT low IT low IT low product_mng low 0.9 0.79 0.8 0.53 0.52 0.82 0.68 0.21 0.81 0.57 0.99 0.9 0.76 0.56 0.5 0.48 0.99 0.76 0.93 0.99 0.85 0.63 0.63 0.5 0.52 0.63 0.78 0.98 0.14 0.7 0.88 0.72 0.88 0.71 0.6 0.88 0.55 0.85 0.84 0.91 0.82 0.6 0.89 0.6 0.64 0.93 0.81 0.82 0.57 0.74 0.65 0.84 0.59 0.9 0.61 0.5 0.9 0.72 1 0.64 0.92 0.93 0.89 0.97 0.8 0.97 0.78 0.78 0.95 0.78 0.65 0.57 0.99 0.5 0.53 1 0.9 0.6 0.62 0.51 0.51 0.85 0.86 0.72 0.55 0.51 0.61 0.62 0.91 0.71 0.97 0.52 0.88 0.99 4 4 4 2 2 5 2 3 4 3 3 4 3 4 6 5 3 5 4 4 4 4 3 5 3 3 4 3 5 3 4 3 4 3 3 4 5 4 2 4 4 2 5 4 4 4 3 136 233 221 189 226 201 133 173 152 256 119 207 189 172 150 179 257 229 227 140 251 137 153 242 150 247 212 234 174 225 224 270 139 248 172 224 232 260 117 243 202 168 194 219 207 177 239 3 2 4 2 3 3 4 2 3 4 2 3 3 2 3 3 2 2 3 3 3 3 3 3 3 3 2 3 5 2 2 4 3 4 2 3 4 2 4 2 2 4 3 4 3 3 2 0 0 0 1 0 0 0 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low RandD low marketing low sales medium accounting medium support medium technical medium management medium marketing medium marketing medium marketing medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales medium sales medium sales medium sales low sales low sales low sales low sales low sales low sales low sales low sales low accounting low accounting low accounting low hr low hr low hr low hr low technical low technical low 0.31 0.68 0.78 0.44 0.64 0.81 0.5 0.69 0.77 0.69 0.87 0.85 0.83 0.68 0.78 0.78 0.93 0.54 0.76 0.4 0.73 0.86 0.38 0.71 0.58 0.67 0.55 0.76 0.7 0.66 0.96 0.6 0.54 0.85 0.96 0.86 0.53 0.91 0.33 0.75 0.97 0.68 0.68 0.57 0.87 0.5 0.76 0.49 0.69 0.59 0.42 0.93 0.63 0.49 0.61 0.75 0.56 0.68 0.91 0.83 0.51 0.65 0.89 0.68 0.75 0.56 0.72 0.81 0.98 0.68 0.48 0.97 0.59 0.76 0.98 0.82 0.46 0.72 0.77 0.94 0.9 0.84 0.62 0.87 0.95 0.7 0.73 0.8 0.51 0.7 0.87 0.9 0.91 0.59 4 4 3 4 4 4 3 5 4 4 4 4 4 3 4 3 4 3 3 3 3 5 5 5 5 3 4 2 3 4 3 4 5 5 3 3 3 3 5 4 3 4 5 4 4 5 3 165 225 212 159 233 108 214 229 223 178 246 145 224 259 207 253 196 240 255 139 168 233 211 114 202 177 233 111 178 204 272 157 229 202 264 256 151 251 271 274 169 176 168 171 214 224 191 3 2 2 4 2 6 3 3 3 3 2 3 4 3 2 3 2 3 3 2 2 3 6 3 2 3 4 2 3 4 3 4 3 3 3 3 2 3 4 2 3 4 2 2 3 2 4 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 technical low technical low technical low technical medium technical medium technical medium technical medium technical medium technical medium support medium support medium support medium support medium support medium support medium support high support low support medium support medium support medium technical medium technical low technical low management low IT low IT low IT low IT low IT low product_mng low product_mng low product_mng low product_mng low IT low RandD low RandD low RandD low RandD low RandD low RandD low marketing low sales low accounting medium support medium technical medium management medium marketing medium 0.79 0.17 0.6 0.89 0.69 0.68 0.61 0.63 0.5 0.49 0.83 0.59 0.75 0.66 0.68 0.73 0.98 0.86 0.5 0.76 0.3 0.3 0.64 0.59 0.85 0.76 0.63 0.65 0.43 0.83 0.49 0.67 0.9 0.83 0.92 0.83 0.64 0.93 0.6 0.74 0.56 0.61 0.63 0.24 0.17 0.46 0.68 0.61 0.9 0.62 0.67 0.87 0.85 0.87 0.5 0.96 0.74 0.55 0.71 0.93 0.48 0.51 0.58 0.53 0.65 0.55 0.76 0.47 0.86 0.59 0.75 0.63 0.93 0.5 0.86 0.68 0.56 0.77 0.73 0.47 0.96 0.84 0.7 0.55 0.97 0.87 0.69 0.75 0.77 0.62 0.62 0.56 0.64 0.48 5 6 4 3 3 2 5 3 4 2 5 2 2 3 4 5 4 3 3 3 4 3 3 3 4 3 5 4 3 4 4 3 2 3 5 5 4 4 4 3 5 4 4 5 5 2 4 96 217 135 226 202 180 174 140 147 263 261 176 98 192 157 230 192 161 176 216 176 276 174 106 154 271 246 264 197 165 218 203 107 179 264 154 167 158 227 230 143 142 184 169 218 121 251 4 6 2 3 2 6 4 2 3 3 5 2 5 3 3 3 2 3 3 3 2 5 3 2 3 5 2 2 2 2 2 2 6 2 3 3 3 3 3 2 5 3 4 4 4 3 4 0 1 1 0 0 0 0 0 0 1 0 1 0 1 0 0 1 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 1 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 marketing medium marketing medium sales medium sales medium sales medium sales medium sales medium sales high sales low sales medium sales me...
Purchase answer to see full attachment
User generated content is uploaded by users for the purposes of learning and should be used following Studypool's honor code & terms of service.

Explanation & Answer

Attached.
...


Anonymous
Very useful material for studying!

Studypool
4.7
Trustpilot
4.5
Sitejabber
4.4

Related Tags