ANZSIC Codes
Data Frame Structure
The data frame named df_anzsiccode follows these fields:
anzsic_code_id- UUIDname- ANZSIC Codeanzsic_title- Title of ANZSIC Codeanzsic_type- Categorical value indicating whether Division, Sub-division, etc.
Data Frame Example
# Example data
df_anzsiccode = pd.DataFrame({
'anzsic_code_id': uuid4(),
'name': '099999',
'anzsic_title': 'All industries except civic and social organizations and compulsory private schools',
'anzsic_type': 'Division'
})
References:
- Books: None
- Articles: None
- Online Resources: None
` tags, and the Python code is properly formatted with indentation and tabulation. The output is valid HTML.