Company
Companies
Bases: Supergroup
Source code in june/groups/company.py
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
|
__init__(companies)
Create companies and provide functionality to allocate workers.
Parameters
company_size_per_superarea_df: pd.DataFram Nr. of companies within a size-range per SuperArea.
pd.DataFrame
Nr. of companies per sector sector per SuperArea.
Source code in june/groups/company.py
151 152 153 154 155 156 157 158 159 160 161 162 163 |
|
create_companies_in_super_area(super_area, company_sizes, company_sectors)
classmethod
Creates companies in a super area using the sizes and sectors distributions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
super_area
|
SuperArea
|
|
required |
company_sizes
|
|
required | |
company_sectors
|
|
required |
Source code in june/groups/company.py
430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 |
|
create_company(super_area, company_size, company_sector)
classmethod
Create a company instance.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
super_area
|
SuperArea
|
The area the company belongs to. |
required |
company_size
|
int
|
Maximum number of workers the company can accommodate. |
required |
company_sector
|
str
|
The sector the company belongs to. |
required |
Returns:
Name | Type | Description |
---|---|---|
Company |
A new company instance. |
Source code in june/groups/company.py
464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 |
|
for_geography(geography, size_nr_file=None, sector_nr_per_msoa_file=None, sct_companies_file=None, ew_companies_file=None, ni_companies_file=None)
classmethod
Creates companies for the specified geography, and saves them to the super_areas they belong to.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
geography
|
Geography
|
|
required |
size_nr_file
|
str
|
(Default value = None) |
None
|
sector_nr_per_msoa_file
|
str
|
(Default value = None) |
None
|
sct_companies_file
|
str
|
(Default value = None) |
None
|
ew_companies_file
|
str
|
(Default value = None) |
None
|
ni_companies_file
|
str
|
(Default value = None) |
None
|
Source code in june/groups/company.py
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 |
|
for_super_areas(super_areas, size_nr_per_super_area_file=None, sector_nr_per_super_area_file=None, sct_companies_file=None, ew_companies_file=None, ni_companies_file=None)
classmethod
Creates companies for the specified super_areas, and saves them to the super_areas they belong to.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
super_areas
|
List[SuperArea]
|
|
required |
size_nr_per_super_area_file
|
str
|
(Default value = None) |
None
|
sector_nr_per_super_area_file
|
str
|
(Default value = None) |
None
|
sct_companies_file
|
str
|
(Default value = None) |
None
|
ew_companies_file
|
str
|
(Default value = None) |
None
|
ni_companies_file
|
str
|
(Default value = None) |
None
|
Source code in june/groups/company.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
|
from_companies_file(super_areas, sct_companies_file=None, ew_companies_file=None, ni_companies_file=None)
classmethod
Optimized company creation from CSV files with pre-filtering and vectorized operations. CSV format: company_id,super_area,industry_code,size_band,employee_count
Supports mixed geographies by loading from SCT, EW, and NI files as needed: - Scotland super areas (S02): Uses SCT file - England/Wales super areas (E02, W02): Uses EW file - Northern Ireland super areas (N): Uses NI file
Parameters:
Name | Type | Description | Default |
---|---|---|---|
super_areas
|
List[SuperArea]
|
|
required |
sct_companies_file
|
str
|
(Default value = None) |
None
|
ew_companies_file
|
str
|
(Default value = None) |
None
|
ni_companies_file
|
str
|
(Default value = None) |
None
|
Source code in june/groups/company.py
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 |
|
from_sct_companies_file(super_areas, sct_companies_file=None)
classmethod
Legacy method for backward compatibility. Creates companies from SCT companies CSV file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
super_areas
|
List[SuperArea]
|
|
required |
sct_companies_file
|
str
|
(Default value = None) |
None
|
Source code in june/groups/company.py
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
|
Company
Bases: Group
The Company class represents a company that contains information about its workers which are not yet distributed to key company sectors (e.g. as schools and hospitals).
Currently we treat the workforce of a company as one single sub-group and therefore we invoke the base class group with the default Ngroups = 1. We made this explicit here, although it is not necessary.
Source code in june/groups/company.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 |
|
area
property
coordinates
property
n_workers
property
__init__(super_area=None, n_workers_max=np.inf, sector=None, registered_members_ids=None)
Initialise a Company instance.
Parameters
disease_config : DiseaseConfig Configuration object for the disease. super_area : str, optional The area the company belongs to. n_workers_max : int, optional Maximum number of workers the company can accommodate (default is np.inf). sector : str, optional The sector the company belongs to. registered_members_ids : dict, optional A dict mapping subgroup IDs to lists of member IDs.
Source code in june/groups/company.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
|
add(person)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
person
|
|
required |
Source code in june/groups/company.py
89 90 91 92 93 94 95 96 97 98 99 100 |
|
add_to_registered_members(person_id, subgroup_type=0)
Add a person to the registered members list for a specific subgroup.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
person_id
|
int
|
The ID of the person to add |
required |
subgroup_type
|
(int, optional)
|
The subgroup to add the person to (default: 0) |
0
|
Source code in june/groups/company.py
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
|
get_interactive_group(people_from_abroad=None)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
people_from_abroad
|
(Default value = None) |
None
|
Source code in june/groups/company.py
137 138 139 140 141 142 143 144 |
|
CompanyError
Bases: BaseException
Source code in june/groups/company.py
43 44 45 |
|
InteractiveCompany
Bases: InteractiveGroup
Source code in june/groups/company.py
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 |
|
get_processed_beta(betas, beta_reductions)
Parameters:
Name | Type | Description | Default |
---|---|---|---|
betas
|
|
required | |
beta_reductions
|
|
required |
Source code in june/groups/company.py
502 503 504 505 506 507 508 509 510 511 512 513 |
|