Wrangle Data: Schema


Schema
{%for display, name, rosie_type, native_type in this.schema.create_schema_table()%} {% if display %} {% endif %} {%endfor%}
Column Name Rosie Type Column Type Actions
{{name}} {{rosie_type if rosie_type is string else 'collection'}} {{native_type.__name__}}

Sample Data
{%for name in this.schema.colnames:%} {% if this.schema.column_visibility[loop.index0] %} {% endif %} {%endfor%} {%for row in this.schema.sample_data:%} {%for col in row:%} {% if this.schema.column_visibility[loop.index0] %} {% endif %} {%endfor%} {%endfor%}
{{name}}
{{col}}