├── .gitignore ├── .readthedocs.yaml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── _textable ├── __init__.py └── widgets │ ├── OWTextableCategory.py │ ├── OWTextableContext.py │ ├── OWTextableConvert.py │ ├── OWTextableCooccurrence.py │ ├── OWTextableCount.py │ ├── OWTextableDisplay.py │ ├── OWTextableExtractXML.py │ ├── OWTextableInterchange.py │ ├── OWTextableIntersect.py │ ├── OWTextableLength.py │ ├── OWTextableMerge.py │ ├── OWTextableMessage.py │ ├── OWTextablePreprocess.py │ ├── OWTextableRecode.py │ ├── OWTextableSegment.py │ ├── OWTextableSelect.py │ ├── OWTextableTextField.py │ ├── OWTextableTextFiles.py │ ├── OWTextableTreetagger.py │ ├── OWTextableURLs.py │ ├── OWTextableVariety.py │ ├── TextableUtils.py │ ├── __init__.py │ └── icons │ ├── Category-Textable.png │ ├── Category_16.png │ ├── Category_36.png │ ├── Category_48.png │ ├── Category_54.png │ ├── Context_16.png │ ├── Context_36.png │ ├── Context_48.png │ ├── Context_54.png │ ├── Convert_16.png │ ├── Convert_36.png │ ├── Convert_48.png │ ├── Convert_54.png │ ├── Cooccurrence_16.png │ ├── Cooccurrence_36.png │ ├── Cooccurrence_48.png │ ├── Cooccurrence_54.png │ ├── Count_16.png │ ├── Count_36.png │ ├── Count_48.png │ ├── Count_54.png │ ├── Display_16.png │ ├── Display_36.png │ ├── Display_48.png │ ├── Display_54.png │ ├── ExtractXML_16.png │ ├── ExtractXML_36.png │ ├── ExtractXML_48.png │ ├── ExtractXML_54.png │ ├── Intersect_16.png │ ├── Intersect_36.png │ ├── Intersect_48.png │ ├── Intersect_54.png │ ├── Length_16.png │ ├── Length_36.png │ ├── Length_48.png │ ├── Length_54.png │ ├── Merge_16.png │ ├── Merge_36.png │ ├── Merge_48.png │ ├── Merge_54.png │ ├── Message_16.png │ ├── Message_36.png │ ├── Message_48.png │ ├── Message_54.png │ ├── Preprocess_16.png │ ├── Preprocess_36.png │ ├── Preprocess_48.png │ ├── Preprocess_54.png │ ├── Recode_16.png │ ├── Recode_36.png │ ├── Recode_48.png │ ├── Recode_54.png │ ├── Segment_16.png │ ├── Segment_36.png │ ├── Segment_48.png │ ├── Segment_54.png │ ├── Select_16.png │ ├── Select_36.png │ ├── Select_48.png │ ├── Select_54.png │ ├── TextField_16.png │ ├── TextField_36.png │ ├── TextField_48.png │ ├── TextField_54.png │ ├── TextFiles_16.png │ ├── TextFiles_36.png │ ├── TextFiles_48.png │ ├── TextFiles_54.png │ ├── URLs_16.png │ ├── URLs_36.png │ ├── URLs_48.png │ ├── URLs_54.png │ ├── Variety_16.png │ ├── Variety_36.png │ ├── Variety_48.png │ ├── Variety_54.png │ ├── error.png │ ├── interchange.svg │ ├── ok.png │ ├── treetagger.svg │ └── warning.png ├── docs ├── README.md ├── doc │ ├── Makefile │ ├── _static │ │ └── custom.css │ ├── advanced_topics.rst │ ├── annotating_merging.rst │ ├── annotations.rst │ ├── annotations_uses.rst │ ├── build_concordance.rst │ ├── build_the_docs.bat │ ├── case_studies.rst │ ├── category.rst │ ├── citing.rst │ ├── conf.py │ ├── configuration.rst │ ├── context.rst │ ├── conversion_export_widgets.rst │ ├── convert.rst │ ├── convert_text_to_lower_upper_case.rst │ ├── convert_xml_tags_annotations.rst │ ├── converting_table_formats.bak │ ├── converting_xml_markup_annotations.rst │ ├── cooccurrence.rst │ ├── cookbook.rst │ ├── count.rst │ ├── count_occurrences_smaller_units_larger_segments.rst │ ├── count_transition_frequency_adjacent_units.rst │ ├── count_unit_frequency.rst │ ├── counting_segment_types.rst │ ├── counting_specific_contexts.rst │ ├── credits.rst │ ├── display.rst │ ├── display_table.rst │ ├── display_text_content.rst │ ├── examine_evolution_unit_frequency.rst │ ├── exclude_segments_based_on_stoplist.rst │ ├── export_table.rst │ ├── export_text_content_change_encoding.rst │ ├── extract_xml.rst │ ├── features.rst │ ├── figures │ │ ├── Category-Textable.png │ │ ├── Category_16.png │ │ ├── Category_36.png │ │ ├── Category_48.png │ │ ├── Category_54.png │ │ ├── Context_16.png │ │ ├── Context_36.png │ │ ├── Context_48.png │ │ ├── Context_54.png │ │ ├── Convert_16.png │ │ ├── Convert_36.png │ │ ├── Convert_48.png │ │ ├── Convert_54.png │ │ ├── Cooccurrence_16.png │ │ ├── Cooccurrence_36.png │ │ ├── Cooccurrence_48.png │ │ ├── Cooccurrence_54.png │ │ ├── Count_16.png │ │ ├── Count_36.png │ │ ├── Count_48.png │ │ ├── Count_54.png │ │ ├── DataTable.png │ │ ├── DataTable_36.png │ │ ├── Display_16.png │ │ ├── Display_36.png │ │ ├── Display_48.png │ │ ├── Display_54.png │ │ ├── ExtractXML_16.png │ │ ├── ExtractXML_36.png │ │ ├── ExtractXML_48.png │ │ ├── ExtractXML_54.png │ │ ├── Intersect_16.png │ │ ├── Intersect_36.png │ │ ├── Intersect_48.png │ │ ├── Intersect_54.png │ │ ├── Length_16.png │ │ ├── Length_36.png │ │ ├── Length_48.png │ │ ├── Length_54.png │ │ ├── Length_example.png │ │ ├── Merge_16.png │ │ ├── Merge_36.png │ │ ├── Merge_48.png │ │ ├── Merge_54.png │ │ ├── Message_16.png │ │ ├── Message_36.png │ │ ├── Message_48.png │ │ ├── Message_54.png │ │ ├── Preprocess_16.png │ │ ├── Preprocess_36.png │ │ ├── Preprocess_48.png │ │ ├── Preprocess_54.png │ │ ├── Recode_16.png │ │ ├── Recode_36.png │ │ ├── Recode_48.png │ │ ├── Recode_54.png │ │ ├── Segment_16.png │ │ ├── Segment_36.png │ │ ├── Segment_48.png │ │ ├── Segment_54.png │ │ ├── Select_16.png │ │ ├── Select_36.png │ │ ├── Select_48.png │ │ ├── Select_54.png │ │ ├── TextField_16.png │ │ ├── TextField_36.png │ │ ├── TextField_48.png │ │ ├── TextField_54.png │ │ ├── TextFiles_16.png │ │ ├── TextFiles_36.png │ │ ├── TextFiles_48.png │ │ ├── TextFiles_54.png │ │ ├── URLs_16.png │ │ ├── URLs_36.png │ │ ├── URLs_48.png │ │ ├── URLs_54.png │ │ ├── Variety_16.png │ │ ├── Variety_36.png │ │ ├── Variety_48.png │ │ ├── Variety_54.png │ │ ├── a_simple_example.png │ │ ├── a_simple_example_adjective.png │ │ ├── a_simple_example_annotations2.png │ │ ├── a_simple_plan.png │ │ ├── addons_management_dialog.png │ │ ├── addons_management_dialog_macosx.png │ │ ├── annotation_based_selection_schema.png │ │ ├── annotation_text_field.png │ │ ├── annotation_uses_fig1.png │ │ ├── annotation_uses_fig2.png │ │ ├── banner.jpg │ │ ├── build_concordance_data_table.png │ │ ├── build_concordance_interfaces.png │ │ ├── category_widget.png │ │ ├── chaining_segmentations.png │ │ ├── context_example.png │ │ ├── context_mode_containing_segmentation_example.png │ │ ├── convert_advanced_example.png │ │ ├── convert_basic_example.png │ │ ├── convert_lower_upper_case.png │ │ ├── convert_xml_tags_widget_interfaces.png │ │ ├── cooc_example.png │ │ ├── cooc_mode_containing_segmentation_example.png │ │ ├── cooc_mode_sliding_window_example.png │ │ ├── cooc_secondary_units_example.png │ │ ├── count_example.png │ │ ├── count_example_schema.png │ │ ├── count_frequency_adjacent_contexts.png │ │ ├── count_frequency_in_different_texts_parts_of_texts.png │ │ ├── count_merging_units_annotations.png │ │ ├── count_mode_containing_segmentation.png │ │ ├── count_mode_containing_segmentation_example.png │ │ ├── count_mode_containing_segmentation_example_schema.png │ │ ├── count_mode_left_right_neighborhood_example.png │ │ ├── count_mode_sliding_window_example.png │ │ ├── count_occurrences_other_smaller_segmentation.png │ │ ├── count_tagging_rows_annotations.png │ │ ├── count_tagging_rows_annotations_language.png │ │ ├── count_unit_frequency_globally.png │ │ ├── count_unit_frequency_gradually.png │ │ ├── display_advanced_interface.png │ │ ├── display_basic_interface.png │ │ ├── display_example.png │ │ ├── display_merged_annotations_example.png │ │ ├── display_merged_example.png │ │ ├── display_table_convert_interface.png │ │ ├── display_table_data_table_interface.png │ │ ├── display_xml_annotations_example.png │ │ ├── exclude_segments.png │ │ ├── export_table_convert_interface.png │ │ ├── export_text_content.png │ │ ├── extract_xml_advanced_example.png │ │ ├── extract_xml_basic_example.png │ │ ├── extract_xml_example.png │ │ ├── filter_segments_based_on_frequency.png │ │ ├── filter_segments_based_on_frequency_proportion.png │ │ ├── goal_exercise_merge.png │ │ ├── import_annotated_segments_extractxml_interface.png │ │ ├── import_annotated_segments_text_field_interface.png │ │ ├── include_exclude_units_based_on_pattern.png │ │ ├── installation.png │ │ ├── intersect_advanced.png │ │ ├── intersect_example.png │ │ ├── intersect_example_schema.png │ │ ├── intersect_interface_1.png │ │ ├── intersect_interface_2.png │ │ ├── intersect_interface_3.png │ │ ├── logo.png │ │ ├── merge_advanced_example.png │ │ ├── merge_annotations_example.png │ │ ├── merge_annotations_example_schema.png │ │ ├── merge_example.png │ │ ├── merge_example_schema.png │ │ ├── merge_several_texts.png │ │ ├── merging_units_annotations_schema.png │ │ ├── message_example.png │ │ ├── mining_humanist_recode.png │ │ ├── mining_humanist_results.png │ │ ├── mining_humanist_schema.png │ │ ├── moby_dick_freq_ahab.png │ │ ├── moby_dick_freq_whales.png │ │ ├── moby_dick_schema.png │ │ ├── options_addons_menu.png │ │ ├── options_addons_menu_macosx.png │ │ ├── preprocess_advanced_example.png │ │ ├── preprocess_caveat_schema_right.png │ │ ├── preprocess_caveat_schema_without.png │ │ ├── preprocess_caveat_schema_wrong.png │ │ ├── random_sample_Sample_mode.png │ │ ├── random_sample_proportion.png │ │ ├── recode_advanced_example.png │ │ ├── recode_basic_example.png │ │ ├── recommended_settings.png │ │ ├── remove_accents_from_text.png │ │ ├── replace_all_occurrences_of_string_pattern.png │ │ ├── segment_advanced_example.png │ │ ├── segment_example.png │ │ ├── segment_example2.png │ │ ├── segment_example_schema.png │ │ ├── segment_regex_example.png │ │ ├── segment_text.png │ │ ├── segmenting_with_regexes_fig1.png │ │ ├── segmenting_with_regexes_fig2.png │ │ ├── segmenting_with_regexes_fig3.png │ │ ├── select_advanced_regex_example.png │ │ ├── select_advanced_sample_example.png │ │ ├── select_advanced_threshold_example.png │ │ ├── select_annotation_example.png │ │ ├── select_annotation_key.png │ │ ├── select_example.png │ │ ├── select_example_reset_signals_dialog.png │ │ ├── select_example_schema.png │ │ ├── settings_menu_macosx.png │ │ ├── settings_menu_windows.png │ │ ├── solution_exercise_intersect.png │ │ ├── solution_exercise_merge.png │ │ ├── strings_segments_segmentations1.png │ │ ├── strings_segments_segmentations2.png │ │ ├── tagging_rows_annotations_schema.png │ │ ├── text_field_display.png │ │ ├── text_field_example.png │ │ ├── text_field_example_cookbook.png │ │ ├── text_field_labelling.png │ │ ├── text_field_xml_example.png │ │ ├── text_files_advanced_example.png │ │ ├── text_files_basic_example.png │ │ ├── text_files_fig1.png │ │ ├── titus_andronicus_map.png │ │ ├── titus_andronicus_schema.png │ │ ├── urls_advanced_example.png │ │ ├── urls_basic_example.png │ │ ├── urls_fig1.png │ │ ├── variety_widget.png │ │ └── view_table.png │ ├── filter_segments_based_on_frequency.rst │ ├── filtering_segmentations_regexes.rst │ ├── hierarchical_segmentations_performance_issues.bak │ ├── illustration.rst │ ├── import_text_file.rst │ ├── import_text_internet_location.rst │ ├── import_text_keyboard.rst │ ├── include_exclude_based_on_pattern.rst │ ├── index.rst │ ├── installation.rst │ ├── intersect.rst │ ├── introduction.rst │ ├── json_file_list.rst │ ├── json_generalities.rst │ ├── json_import_export.rst │ ├── json_regular_expression_list.rst │ ├── json_substitution_list.rst │ ├── json_url_list.rst │ ├── keyboard_input_segmentation_display.rst │ ├── length.rst │ ├── macosx_installation.rst │ ├── make.bat │ ├── merge.rst │ ├── merge_several_texts.rst │ ├── merging_segmentations_together.rst │ ├── merging_units_annotations.rst │ ├── message.rst │ ├── moby_dick.rst │ ├── note_regular_expressions.rst │ ├── preprocess.rst │ ├── random_sample.rst │ ├── recode.rst │ ├── reference.rst │ ├── regular_expressions.rst │ ├── remove_accents_from_text.rst │ ├── replace_all_occurrences_of_string_pattern.rst │ ├── schemas │ │ ├── humanist_for_textable_v3.37.0.ows │ │ ├── humanist_for_textable_v3.37.0.ows.zip │ │ ├── moby_dick_for_textable_v3.37.0.ows │ │ ├── moby_dick_for_textable_v3.37.0.ows.zip │ │ ├── titus_andronicus_for_textable_v3.37.0.ows │ │ ├── titus_andronicus_for_textable_v3.37.0.ows.zip │ │ └── untitled.ows │ ├── segment.rst │ ├── segment_text.rst │ ├── segmentation_manipulation.rst │ ├── segmentation_processing_widgets.rst │ ├── segmentations.rst │ ├── segmentations_tables.rst │ ├── segmenting_data_smaller_units.rst │ ├── segmenting_using_regexes.rst │ ├── select.rst │ ├── strings_segments_segmentations.rst │ ├── table_construction_widgets.rst │ ├── table_output.rst │ ├── tables.rst │ ├── tagging_table_rows_label_segment.rst │ ├── text_analysis.rst │ ├── text_field.rst │ ├── text_files.rst │ ├── text_import_widgets.rst │ ├── text_input.rst │ ├── text_output.rst │ ├── text_preprocessing_and_recoding.rst │ ├── textable_basics.rst │ ├── titus_andronicus.rst │ ├── urls.rst │ ├── using_segmentation_filter_another.rst │ ├── variety.rst │ ├── viewing_processing_tables.rst │ ├── windows_installation.rst │ ├── xml.rst │ └── xml_annotation_based_selection.rst ├── doc_backup │ ├── Makefile │ ├── annotating_merging.rst │ ├── annotation_based_selection.rst │ ├── annotations.rst │ ├── annotations_uses.rst │ ├── build_concordance.rst │ ├── build_the_docs.bat │ ├── case_studies.rst │ ├── citing.rst │ ├── conf.py │ ├── configuration.rst │ ├── convert_text_to_lower_upper_case.rst │ ├── convert_xml_tags_annotations.rst │ ├── converting_table_formats.rst │ ├── converting_xml_markup_annotations.rst │ ├── cookbook.rst │ ├── count_occurrences_smaller_units_larger_segments.rst │ ├── count_transition_frequency_adjacent_units.rst │ ├── count_unit_frequency.rst │ ├── counting_segment_types.rst │ ├── counting_specific_contexts.rst │ ├── credits.rst │ ├── display_table.rst │ ├── display_text_content.rst │ ├── examine_evolution_unit_frequency.rst │ ├── exclude_segments_based_on_stoplist.rst │ ├── export_table.rst │ ├── export_text_content_change_encoding.rst │ ├── features.rst │ ├── figures │ │ ├── Category_16.png │ │ ├── Category_36.png │ │ ├── Category_48.png │ │ ├── Category_54.png │ │ ├── Context_36.png │ │ ├── Context_54.png │ │ ├── Convert_36.png │ │ ├── Convert_54.png │ │ ├── Cooccurrence_54.png │ │ ├── Count_36.png │ │ ├── Count_54.png │ │ ├── DataTable.png │ │ ├── DataTable_36.png │ │ ├── Display_36.png │ │ ├── Display_54.png │ │ ├── ExtractXML_36.png │ │ ├── ExtractXML_54.png │ │ ├── Intersect_36.png │ │ ├── Intersect_54.png │ │ ├── Length_36.png │ │ ├── Length_54.png │ │ ├── Length_example.png │ │ ├── Merge_36.png │ │ ├── Merge_54.png │ │ ├── Message_16.png │ │ ├── Message_36.png │ │ ├── Message_48.png │ │ ├── Message_54.png │ │ ├── Preprocess_36.png │ │ ├── Preprocess_54.png │ │ ├── Recode_36.png │ │ ├── Recode_54.png │ │ ├── Segment_36.png │ │ ├── Segment_54.png │ │ ├── Select_36.png │ │ ├── Select_54.png │ │ ├── TextField_36.png │ │ ├── TextField_54.png │ │ ├── TextFiles_36.png │ │ ├── TextFiles_54.png │ │ ├── URLs_36.png │ │ ├── URLs_54.png │ │ ├── Variety_54.png │ │ ├── addons_management_dialog.png │ │ ├── addons_management_dialog_macosx.png │ │ ├── annotation_based_selection_schema.png │ │ ├── annotation_text_field.png │ │ ├── banner.jpg │ │ ├── build_concordance_data_table.png │ │ ├── build_concordance_interfaces.png │ │ ├── category_widget.png │ │ ├── chaining_segmentations.png │ │ ├── context_example.png │ │ ├── context_mode_containing_segmentation_example.png │ │ ├── convert_advanced_example.png │ │ ├── convert_basic_example.png │ │ ├── convert_lower_upper_case.png │ │ ├── convert_xml_tags_widget_interfaces.png │ │ ├── cooc_example.png │ │ ├── cooc_mode_containing_segmentation_example.png │ │ ├── cooc_mode_sliding_window_example.png │ │ ├── cooc_secondary_units_example.png │ │ ├── count_example.png │ │ ├── count_example_schema.png │ │ ├── count_frequency_adjacent_contexts.png │ │ ├── count_frequency_in_different_texts_parts_of_texts.png │ │ ├── count_merging_units_annotations.png │ │ ├── count_mode_containing_segmentation.png │ │ ├── count_mode_containing_segmentation_example.png │ │ ├── count_mode_containing_segmentation_example_schema.png │ │ ├── count_mode_left_right_neighborhood_example.png │ │ ├── count_mode_sliding_window_example.png │ │ ├── count_occurrences_other_smaller_segmentation.png │ │ ├── count_tagging_rows_annotations.png │ │ ├── count_tagging_rows_annotations_language.png │ │ ├── count_unit_fequency_globally.png │ │ ├── count_unit_frequency_gradually.png │ │ ├── display_advanced_interface.png │ │ ├── display_basic_interface.png │ │ ├── display_example.png │ │ ├── display_merged_annotations_example.png │ │ ├── display_merged_example.png │ │ ├── display_table_convert_interface.png │ │ ├── display_table_data_table_interface.png │ │ ├── display_xml_annotations_example.png │ │ ├── exclude_segments.png │ │ ├── export_table_convert_interface.png │ │ ├── export_text_content.png │ │ ├── extract_xml_advanced_example.png │ │ ├── extract_xml_basic_example.png │ │ ├── extract_xml_example.png │ │ ├── filter_segments_based_on_frequency.png │ │ ├── filter_segments_based_on_frequency_proportion.png │ │ ├── goal_exercise_merge.png │ │ ├── import_annotated_segments_extractxml_interface.png │ │ ├── import_annotated_segments_text_field_interface.png │ │ ├── include_exclude_units_based_on_pattern.png │ │ ├── intersect_example.png │ │ ├── intersect_example_schema.png │ │ ├── intersect_interface_1.png │ │ ├── intersect_interface_2.png │ │ ├── intersect_interface_3.png │ │ ├── logo.png │ │ ├── merge_advanced_example.png │ │ ├── merge_annotations_example.png │ │ ├── merge_annotations_example_schema.png │ │ ├── merge_example.png │ │ ├── merge_example_schema.png │ │ ├── merge_several_texts.png │ │ ├── merging_units_annotations_schema.png │ │ ├── message_example.png │ │ ├── mining_humanist_recode.png │ │ ├── mining_humanist_results.png │ │ ├── mining_humanist_schema.png │ │ ├── moby_dick_freq_ahab.png │ │ ├── moby_dick_freq_whales.png │ │ ├── moby_dick_schema.png │ │ ├── options_addons_menu.png │ │ ├── options_addons_menu_macosx.png │ │ ├── preprocess_advanced_example.png │ │ ├── preprocess_caveat_schema_right.png │ │ ├── preprocess_caveat_schema_without.png │ │ ├── preprocess_caveat_schema_wrong.png │ │ ├── random_sample_Sample_mode.png │ │ ├── random_sample_proportion.png │ │ ├── recode_advanced_example.png │ │ ├── recode_basic_example.png │ │ ├── recommended_settings.png │ │ ├── remove_accents_from_text.png │ │ ├── replace_all_occurrences_of_string_pattern.png │ │ ├── segment_advanced_example.png │ │ ├── segment_example.png │ │ ├── segment_example_schema.png │ │ ├── segment_text.png │ │ ├── select_advanced_regex_example.png │ │ ├── select_advanced_sample_example.png │ │ ├── select_advanced_threshold_example.png │ │ ├── select_annotation_example.png │ │ ├── select_example.png │ │ ├── select_example_reset_signals_dialog.png │ │ ├── select_example_schema.png │ │ ├── settings_menu_macosx.png │ │ ├── settings_menu_windows.png │ │ ├── solution_exercise_intersect.png │ │ ├── solution_exercise_merge.png │ │ ├── tagging_rows_annotations_schema.png │ │ ├── text_field_example.png │ │ ├── text_field_xml_example.png │ │ ├── text_files_advanced_example.png │ │ ├── text_files_basic_example.png │ │ ├── titus_andronicus_map.png │ │ ├── titus_andronicus_schema.png │ │ ├── urls_advanced_example.png │ │ ├── urls_basic_example.png │ │ └── variety_widget.png │ ├── filter_segments_based_on_frequency.rst │ ├── getting_started.rst │ ├── hierarchical_segmentations_performance_issues.bak │ ├── import_text_file.rst │ ├── import_text_internet_location.rst │ ├── import_text_keyboard.rst │ ├── include_exclude_based_on_pattern.rst │ ├── index.rst │ ├── installation.rst │ ├── introduction.rst │ ├── json_file_list.rst │ ├── json_generalities.rst │ ├── json_import_export.rst │ ├── json_regular_expression_list.rst │ ├── json_substitution_list.rst │ ├── json_url_list.rst │ ├── keyboard_input_segmentation_display.rst │ ├── macosx_installation.rst │ ├── make.bat │ ├── merge_several_texts.rst │ ├── merging_segmentations_together.rst │ ├── merging_units_annotations.rst │ ├── moby_dick.rst │ ├── note_regular_expressions.rst │ ├── partitioning_segmentations.rst │ ├── random_sample.rst │ ├── readme.md │ ├── remove_accents_from_text.rst │ ├── replace_all_occurrences_of_string_pattern.rst │ ├── schemas │ │ ├── humanist_for_textable_v2.0a3.ows │ │ ├── moby_dick_for_textable_v3.1.3.ows │ │ └── titus_andronicus_for_textable_v3.1.3.ows │ ├── segment_text.rst │ ├── segmentations.rst │ ├── segmentations_tables.rst │ ├── segmenting_data_smaller_units.rst │ ├── strings_segments_segmentations.rst │ ├── tables.rst │ ├── tagging_table_rows_annotations.rst │ ├── titus_andronicus.rst │ ├── using_segmentation_filter_another.rst │ ├── widgets │ │ ├── category.rst │ │ ├── context.rst │ │ ├── convert.rst │ │ ├── cooccurrence.rst │ │ ├── count.rst │ │ ├── display.rst │ │ ├── extract_xml.rst │ │ ├── intersect.rst │ │ ├── length.rst │ │ ├── merge.rst │ │ ├── message.rst │ │ ├── preprocess.rst │ │ ├── recode.rst │ │ ├── segment.rst │ │ ├── select.rst │ │ ├── text_field.rst │ │ ├── text_files.rst │ │ ├── urls.rst │ │ └── variety.rst │ └── windows_installation.rst └── doc_v2 │ ├── Makefile │ ├── Textable_basics.rst │ ├── advanced_topics.rst │ ├── build_concordance.rst │ ├── build_the_docs.bat │ ├── case_studies.rst │ ├── category.rst │ ├── citing.rst │ ├── conf.py │ ├── configuration.rst │ ├── context.rst │ ├── conversion_export_widgets.rst │ ├── convert.rst │ ├── convert_text_to_lower_upper_case.rst │ ├── convert_xml_tags_annotations.rst │ ├── converting_xml_markup_annotations.rst │ ├── cooccurrence.rst │ ├── cookbook.rst │ ├── count.rst │ ├── count_occurrences_smaller_units_larger_segments.rst │ ├── count_transition_frequency_adjacent_units.rst │ ├── count_unit_frequency.rst │ ├── counting_segment_types.rst │ ├── counting_specific_contexts.rst │ ├── credits.rst │ ├── display.rst │ ├── display_table.rst │ ├── display_text_content.rst │ ├── examine_evolution_unit_frequency.rst │ ├── exclude_segments_based_on_stoplist.rst │ ├── export_table.rst │ ├── export_text_content_change_encoding.rst │ ├── extract_xml.rst │ ├── features.rst │ ├── figures │ ├── Category_16.png │ ├── Category_36.png │ ├── Category_48.png │ ├── Category_54.png │ ├── Context_36.png │ ├── Context_54.png │ ├── Convert_36.png │ ├── Convert_54.png │ ├── Cooccurrence_54.png │ ├── Count_36.png │ ├── Count_54.png │ ├── DataTable.png │ ├── DataTable_36.png │ ├── Display_36.png │ ├── Display_54.png │ ├── ExtractXML_36.png │ ├── ExtractXML_54.png │ ├── Intersect_36.png │ ├── Intersect_54.png │ ├── Length_36.png │ ├── Length_54.png │ ├── Length_example.png │ ├── Merge_36.png │ ├── Merge_54.png │ ├── Message_16.png │ ├── Message_36.png │ ├── Message_48.png │ ├── Message_54.png │ ├── Preprocess_36.png │ ├── Preprocess_54.png │ ├── Recode_36.png │ ├── Recode_54.png │ ├── Segment_36.png │ ├── Segment_54.png │ ├── Select_36.png │ ├── Select_54.png │ ├── TextField_36.png │ ├── TextField_54.png │ ├── TextFiles_36.png │ ├── TextFiles_54.png │ ├── Text_field_labelling.png │ ├── URLs_36.png │ ├── URLs_54.png │ ├── Variety_54.png │ ├── a_simple_example.png │ ├── a_simple_example_adjective.png │ ├── a_simple_example_annotations2.png │ ├── a_simple_plan.png │ ├── addons_management_dialog.png │ ├── addons_management_dialog_macosx.png │ ├── annotation_based_selection_schema.png │ ├── annotation_text_field.png │ ├── banner.jpg │ ├── build_concordance_data_table.png │ ├── build_concordance_interfaces.png │ ├── category_widget.png │ ├── chaining_segmentations.png │ ├── context_example.png │ ├── context_mode_containing_segmentation_example.png │ ├── convert_advanced_example.png │ ├── convert_basic_example.png │ ├── convert_lower_upper_case.png │ ├── convert_xml_tags_widget_interfaces.png │ ├── cooc_example.png │ ├── cooc_mode_containing_segmentation_example.png │ ├── cooc_mode_sliding_window_example.png │ ├── cooc_secondary_units_example.png │ ├── count_example.png │ ├── count_example_schema.png │ ├── count_frequency_adjacent_contexts.png │ ├── count_frequency_in_different_texts_parts_of_texts.png │ ├── count_merging_units_annotations.png │ ├── count_mode_containing_segmentation.png │ ├── count_mode_containing_segmentation_example.png │ ├── count_mode_containing_segmentation_example_schema.png │ ├── count_mode_left_right_neighborhood_example.png │ ├── count_mode_sliding_window_example.png │ ├── count_occurrences_other_smaller_segmentation.png │ ├── count_tagging_rows_annotations.png │ ├── count_tagging_rows_annotations_language.png │ ├── count_unit_fequency_globally.png │ ├── count_unit_frequency_gradually.png │ ├── display_advanced_interface.png │ ├── display_basic_interface.png │ ├── display_example.png │ ├── display_merged_annotations_example.png │ ├── display_merged_example.png │ ├── display_table_convert_interface.png │ ├── display_table_data_table_interface.png │ ├── display_xml_annotations_example.png │ ├── exclude_segments.png │ ├── export_table_convert_interface.png │ ├── export_text_content.png │ ├── extract_xml_advanced_example.png │ ├── extract_xml_basic_example.png │ ├── extract_xml_example.png │ ├── filter_segments_based_on_frequency.png │ ├── filter_segments_based_on_frequency_proportion.png │ ├── goal_exercise_merge.png │ ├── import_annotated_segments_extractxml_interface.png │ ├── import_annotated_segments_text_field_interface.png │ ├── include_exclude_units_based_on_pattern.png │ ├── intersect_example.png │ ├── intersect_example_schema.png │ ├── intersect_interface_1.png │ ├── intersect_interface_2.png │ ├── intersect_interface_3.png │ ├── logo.png │ ├── merge_advanced_example.png │ ├── merge_annotations_example.png │ ├── merge_annotations_example_schema.png │ ├── merge_example.png │ ├── merge_example_schema.png │ ├── merge_several_texts.png │ ├── merging_units_annotations_schema.png │ ├── message_example.png │ ├── mining_humanist_recode.png │ ├── mining_humanist_results.png │ ├── mining_humanist_schema.png │ ├── moby_dick_freq_ahab.png │ ├── moby_dick_freq_whales.png │ ├── moby_dick_schema.png │ ├── options_addons_menu.png │ ├── options_addons_menu_macosx.png │ ├── preprocess_advanced_example.png │ ├── preprocess_caveat_schema_right.png │ ├── preprocess_caveat_schema_without.png │ ├── preprocess_caveat_schema_wrong.png │ ├── random_sample_Sample_mode.png │ ├── random_sample_proportion.png │ ├── recode_advanced_example.png │ ├── recode_basic_example.png │ ├── recommended_settings.png │ ├── remove_accents_from_text.png │ ├── replace_all_occurrences_of_string_pattern.png │ ├── segment_advanced_example.png │ ├── segment_example.png │ ├── segment_example_schema.png │ ├── segment_regex_example.png │ ├── segment_text.png │ ├── select_advanced_regex_example.png │ ├── select_advanced_sample_example.png │ ├── select_advanced_threshold_example.png │ ├── select_annotation_example.png │ ├── select_annotation_key.png │ ├── select_example.png │ ├── select_example_reset_signals_dialog.png │ ├── select_example_schema.png │ ├── settings_menu_macosx.png │ ├── settings_menu_windows.png │ ├── solution_exercise_intersect.png │ ├── solution_exercise_merge.png │ ├── tagging_rows_annotations_schema.png │ ├── text_field_example.png │ ├── text_field_xml_example.png │ ├── text_files_advanced_example.png │ ├── text_files_basic_example.png │ ├── titus_andronicus_map.png │ ├── titus_andronicus_schema.png │ ├── urls_advanced_example.png │ ├── urls_basic_example.png │ └── variety_widget.png │ ├── filter_segments_based_on_frequency.rst │ ├── hierarchical_segmentations_performance_issues.bak │ ├── illustration.rst │ ├── import_text_file.rst │ ├── import_text_internet_location.rst │ ├── import_text_keyboard.rst │ ├── include_exclude_based_on_pattern.rst │ ├── index.rst │ ├── installation.rst │ ├── intersect.rst │ ├── introduction.rst │ ├── json_file_list.rst │ ├── json_format.rst │ ├── json_generalities.rst │ ├── json_regular_expression_list.rst │ ├── json_substitution_list.rst │ ├── json_url_list.rst │ ├── keyboard_input_segmentation_display.rst │ ├── length.rst │ ├── macosx_installation.rst │ ├── make.bat │ ├── merge.rst │ ├── merge_several_texts.rst │ ├── merging_and_segmenting.rst │ ├── merging_annotating.rst │ ├── merging_units_annotations.rst │ ├── message.rst │ ├── moby_dick.rst │ ├── note_regular_expressions.rst │ ├── partitioning_segmentations.rst │ ├── preprocess.rst │ ├── random_sample.rst │ ├── recode.rst │ ├── reference.rst │ ├── remove_accents_from_text.rst │ ├── replace_all_occurrences_of_string_pattern.rst │ ├── schemas │ ├── humanist_for_textable_v2.0a3.ows │ ├── moby_dick_for_textable_v2.0a3.ows │ └── titus_andronicus_for_textable_v2.0a3.ows │ ├── segment.rst │ ├── segment_text.rst │ ├── segmentation_processing_widgets.rst │ ├── segmentations_tables.rst │ ├── segmenting_data_smaller_units.rst │ ├── select.rst │ ├── strings_segments_segmentations.rst │ ├── table_construction_widgets.rst │ ├── tagging_table_rows_label_segment.rst │ ├── text_field.rst │ ├── text_files.rst │ ├── text_import_widgets.rst │ ├── titus_andronicus.rst │ ├── urls.rst │ ├── uses_annotating_segmentations.rst │ ├── using_segmentation_filter_another.rst │ ├── variety.rst │ ├── windows_installation.rst │ └── xml_annotation_based_selection.rst └── setup.py /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include _textable *.png *.svg 2 | recursive-include docs/doc/_build/* 3 | include docs/Makefile 4 | include LICENSE 5 | include *.py *.rst 6 | -------------------------------------------------------------------------------- /_textable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/__init__.py -------------------------------------------------------------------------------- /_textable/widgets/icons/Category-Textable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Category-Textable.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Category_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Category_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Category_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Category_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Category_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Category_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Category_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Category_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Context_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Context_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Context_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Context_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Context_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Context_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Context_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Context_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Convert_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Convert_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Convert_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Convert_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Convert_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Convert_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Convert_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Convert_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Cooccurrence_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Cooccurrence_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Cooccurrence_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Cooccurrence_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Cooccurrence_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Cooccurrence_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Cooccurrence_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Cooccurrence_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Count_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Count_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Count_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Count_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Count_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Count_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Count_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Count_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Display_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Display_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Display_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Display_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Display_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Display_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Display_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Display_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/ExtractXML_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/ExtractXML_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/ExtractXML_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/ExtractXML_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/ExtractXML_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/ExtractXML_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/ExtractXML_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/ExtractXML_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Intersect_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Intersect_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Intersect_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Intersect_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Intersect_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Intersect_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Intersect_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Intersect_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Length_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Length_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Length_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Length_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Length_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Length_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Length_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Length_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Merge_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Merge_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Merge_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Merge_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Merge_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Merge_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Merge_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Merge_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Message_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Message_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Message_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Message_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Message_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Message_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Message_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Message_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Preprocess_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Preprocess_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Preprocess_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Preprocess_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Preprocess_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Preprocess_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Preprocess_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Preprocess_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Recode_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Recode_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Recode_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Recode_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Recode_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Recode_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Recode_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Recode_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Segment_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Segment_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Segment_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Segment_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Segment_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Segment_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Segment_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Segment_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Select_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Select_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Select_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Select_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Select_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Select_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Select_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Select_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextField_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextField_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextField_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextField_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextField_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextField_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextField_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextField_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextFiles_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextFiles_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextFiles_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextFiles_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextFiles_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextFiles_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/TextFiles_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/TextFiles_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/URLs_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/URLs_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/URLs_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/URLs_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/URLs_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/URLs_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/URLs_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/URLs_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Variety_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Variety_16.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Variety_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Variety_36.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Variety_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Variety_48.png -------------------------------------------------------------------------------- /_textable/widgets/icons/Variety_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/Variety_54.png -------------------------------------------------------------------------------- /_textable/widgets/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/error.png -------------------------------------------------------------------------------- /_textable/widgets/icons/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/ok.png -------------------------------------------------------------------------------- /_textable/widgets/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/_textable/widgets/icons/warning.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | # orange3-textable 2 | Textable add-on for Orange data mining suite. 3 | -------------------------------------------------------------------------------- /docs/doc/_static/custom.css: -------------------------------------------------------------------------------- 1 | img { 2 | border-radius: 10px; 3 | } 4 | -------------------------------------------------------------------------------- /docs/doc/advanced_topics.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, Advanced topics 3 | :keywords: Orange, Textable, documentation, advanced, tutorial, regex, xml 4 | 5 | Advanced topics 6 | =============== 7 | 8 | Computerized text analysis required the knowledge of various textual formalisms. 9 | Those formalisms are useful to run complex queries on text databases. 10 | To make the most of Textable, you'll need to learn how to work with XML markup 11 | and use regular expressions (regexes). 12 | 13 | .. toctree:: 14 | :maxdepth: 2 15 | :numbered: 2 16 | 17 | XML 18 | Regular expressions 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc/annotations.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, annotations 3 | :keywords: Orange, Textable, documentation, annotations 4 | 5 | Annotations 6 | =========== 7 | 8 | Annotations let you go beyond what's in the text, and extend Orange Textable's 9 | analytic capacities from textual content to user-provided interpretative 10 | information and metadata. 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | Annotations and their uses 16 | Annotating by merging -------------------------------------------------------------------------------- /docs/doc/build_the_docs.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Orange\scripts\sphinx-build" -b html . _build 2 | pause 3 | -------------------------------------------------------------------------------- /docs/doc/case_studies.rst: -------------------------------------------------------------------------------- 1 | Case studies 2 | ================ 3 | 4 | This section aims to provide a repository of use cases illustrating the 5 | application of Orange Textable to realistic text analysis problems. The 6 | focus here is not so much on “how to” as it is on “why”. Each case study 7 | comes with a downloadable Orange Textable workflow that can be studied 8 | interactively and adapted to the specific needs of the user. 9 | 10 | .. toctree:: 11 | :maxdepth: 1 12 | 13 | Term frequency comparison in Melville's Moby Dick 14 | Stylometric analysis of Shakespeare's Titus Andronicus -------------------------------------------------------------------------------- /docs/doc/citing.rst: -------------------------------------------------------------------------------- 1 | How to cite Orange Textable 2 | ============================= 3 | 4 | If Orange Textable has been useful in preparing a scientific publication 5 | of yours, a citation is a great way to say so. Here is the relevant 6 | bibliographic reference: 7 | 8 | Xanthos, Aris (2014). Textable: programmation visuelle pour l’analyse de 9 | données textuelles. In *Actes des 12èmes Journées internationales 10 | d’analyse statistique des données textuelles (JADT 2014)*, pp. 691-703. 11 | `[read 12 | online] `_ -------------------------------------------------------------------------------- /docs/doc/cookbook.rst: -------------------------------------------------------------------------------- 1 | Cookbook 2 | ============ 3 | 4 | This section describes how to get a number of basic tasks done with 5 | Orange Textable. Each task is explained by means of a concise, 6 | illustrated recipe. The goal is to provide the user with a set of 7 | elementary operations which, once properly chained, may form the basic 8 | skeleton of various more ambitious projects. 9 | 10 | **Section content** 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | Text input 16 | Text output 17 | Text preprocessing and recoding 18 | Segmentation manipulation 19 | Text analysis 20 | Table output -------------------------------------------------------------------------------- /docs/doc/figures/Category-Textable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Category-Textable.png -------------------------------------------------------------------------------- /docs/doc/figures/Category_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Category_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Category_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Category_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Category_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Category_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Category_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Category_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Context_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Context_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Context_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Context_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Context_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Context_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Context_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Context_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Convert_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Convert_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Convert_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Convert_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Convert_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Convert_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Convert_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Convert_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Cooccurrence_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Cooccurrence_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Cooccurrence_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Cooccurrence_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Cooccurrence_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Cooccurrence_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Cooccurrence_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Cooccurrence_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Count_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Count_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Count_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Count_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Count_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Count_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Count_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Count_54.png -------------------------------------------------------------------------------- /docs/doc/figures/DataTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/DataTable.png -------------------------------------------------------------------------------- /docs/doc/figures/DataTable_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/DataTable_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Display_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Display_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Display_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Display_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Display_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Display_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Display_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Display_54.png -------------------------------------------------------------------------------- /docs/doc/figures/ExtractXML_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/ExtractXML_16.png -------------------------------------------------------------------------------- /docs/doc/figures/ExtractXML_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/ExtractXML_36.png -------------------------------------------------------------------------------- /docs/doc/figures/ExtractXML_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/ExtractXML_48.png -------------------------------------------------------------------------------- /docs/doc/figures/ExtractXML_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/ExtractXML_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Intersect_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Intersect_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Intersect_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Intersect_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Intersect_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Intersect_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Intersect_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Intersect_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Length_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Length_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Length_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Length_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Length_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Length_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Length_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Length_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Length_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Length_example.png -------------------------------------------------------------------------------- /docs/doc/figures/Merge_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Merge_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Merge_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Merge_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Merge_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Merge_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Merge_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Merge_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Message_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Message_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Message_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Message_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Message_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Message_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Message_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Message_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Preprocess_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Preprocess_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Preprocess_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Preprocess_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Preprocess_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Preprocess_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Preprocess_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Preprocess_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Recode_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Recode_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Recode_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Recode_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Recode_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Recode_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Recode_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Recode_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Segment_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Segment_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Segment_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Segment_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Segment_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Segment_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Segment_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Segment_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Select_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Select_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Select_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Select_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Select_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Select_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Select_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Select_54.png -------------------------------------------------------------------------------- /docs/doc/figures/TextField_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextField_16.png -------------------------------------------------------------------------------- /docs/doc/figures/TextField_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextField_36.png -------------------------------------------------------------------------------- /docs/doc/figures/TextField_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextField_48.png -------------------------------------------------------------------------------- /docs/doc/figures/TextField_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextField_54.png -------------------------------------------------------------------------------- /docs/doc/figures/TextFiles_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextFiles_16.png -------------------------------------------------------------------------------- /docs/doc/figures/TextFiles_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextFiles_36.png -------------------------------------------------------------------------------- /docs/doc/figures/TextFiles_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextFiles_48.png -------------------------------------------------------------------------------- /docs/doc/figures/TextFiles_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/TextFiles_54.png -------------------------------------------------------------------------------- /docs/doc/figures/URLs_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/URLs_16.png -------------------------------------------------------------------------------- /docs/doc/figures/URLs_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/URLs_36.png -------------------------------------------------------------------------------- /docs/doc/figures/URLs_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/URLs_48.png -------------------------------------------------------------------------------- /docs/doc/figures/URLs_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/URLs_54.png -------------------------------------------------------------------------------- /docs/doc/figures/Variety_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Variety_16.png -------------------------------------------------------------------------------- /docs/doc/figures/Variety_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Variety_36.png -------------------------------------------------------------------------------- /docs/doc/figures/Variety_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Variety_48.png -------------------------------------------------------------------------------- /docs/doc/figures/Variety_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/Variety_54.png -------------------------------------------------------------------------------- /docs/doc/figures/a_simple_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/a_simple_example.png -------------------------------------------------------------------------------- /docs/doc/figures/a_simple_example_adjective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/a_simple_example_adjective.png -------------------------------------------------------------------------------- /docs/doc/figures/a_simple_example_annotations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/a_simple_example_annotations2.png -------------------------------------------------------------------------------- /docs/doc/figures/a_simple_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/a_simple_plan.png -------------------------------------------------------------------------------- /docs/doc/figures/addons_management_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/addons_management_dialog.png -------------------------------------------------------------------------------- /docs/doc/figures/addons_management_dialog_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/addons_management_dialog_macosx.png -------------------------------------------------------------------------------- /docs/doc/figures/annotation_based_selection_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/annotation_based_selection_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/annotation_text_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/annotation_text_field.png -------------------------------------------------------------------------------- /docs/doc/figures/annotation_uses_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/annotation_uses_fig1.png -------------------------------------------------------------------------------- /docs/doc/figures/annotation_uses_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/annotation_uses_fig2.png -------------------------------------------------------------------------------- /docs/doc/figures/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/banner.jpg -------------------------------------------------------------------------------- /docs/doc/figures/build_concordance_data_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/build_concordance_data_table.png -------------------------------------------------------------------------------- /docs/doc/figures/build_concordance_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/build_concordance_interfaces.png -------------------------------------------------------------------------------- /docs/doc/figures/category_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/category_widget.png -------------------------------------------------------------------------------- /docs/doc/figures/chaining_segmentations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/chaining_segmentations.png -------------------------------------------------------------------------------- /docs/doc/figures/context_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/context_example.png -------------------------------------------------------------------------------- /docs/doc/figures/context_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/context_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc/figures/convert_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/convert_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/convert_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/convert_basic_example.png -------------------------------------------------------------------------------- /docs/doc/figures/convert_lower_upper_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/convert_lower_upper_case.png -------------------------------------------------------------------------------- /docs/doc/figures/convert_xml_tags_widget_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/convert_xml_tags_widget_interfaces.png -------------------------------------------------------------------------------- /docs/doc/figures/cooc_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/cooc_example.png -------------------------------------------------------------------------------- /docs/doc/figures/cooc_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/cooc_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc/figures/cooc_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/cooc_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc/figures/cooc_secondary_units_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/cooc_secondary_units_example.png -------------------------------------------------------------------------------- /docs/doc/figures/count_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_example.png -------------------------------------------------------------------------------- /docs/doc/figures/count_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/count_frequency_adjacent_contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_frequency_adjacent_contexts.png -------------------------------------------------------------------------------- /docs/doc/figures/count_frequency_in_different_texts_parts_of_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_frequency_in_different_texts_parts_of_texts.png -------------------------------------------------------------------------------- /docs/doc/figures/count_merging_units_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_merging_units_annotations.png -------------------------------------------------------------------------------- /docs/doc/figures/count_mode_containing_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_mode_containing_segmentation.png -------------------------------------------------------------------------------- /docs/doc/figures/count_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc/figures/count_mode_containing_segmentation_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_mode_containing_segmentation_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/count_mode_left_right_neighborhood_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_mode_left_right_neighborhood_example.png -------------------------------------------------------------------------------- /docs/doc/figures/count_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc/figures/count_occurrences_other_smaller_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_occurrences_other_smaller_segmentation.png -------------------------------------------------------------------------------- /docs/doc/figures/count_tagging_rows_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_tagging_rows_annotations.png -------------------------------------------------------------------------------- /docs/doc/figures/count_tagging_rows_annotations_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_tagging_rows_annotations_language.png -------------------------------------------------------------------------------- /docs/doc/figures/count_unit_frequency_globally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_unit_frequency_globally.png -------------------------------------------------------------------------------- /docs/doc/figures/count_unit_frequency_gradually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/count_unit_frequency_gradually.png -------------------------------------------------------------------------------- /docs/doc/figures/display_advanced_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_advanced_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/display_basic_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_basic_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/display_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_example.png -------------------------------------------------------------------------------- /docs/doc/figures/display_merged_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_merged_annotations_example.png -------------------------------------------------------------------------------- /docs/doc/figures/display_merged_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_merged_example.png -------------------------------------------------------------------------------- /docs/doc/figures/display_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/display_table_data_table_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_table_data_table_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/display_xml_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/display_xml_annotations_example.png -------------------------------------------------------------------------------- /docs/doc/figures/exclude_segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/exclude_segments.png -------------------------------------------------------------------------------- /docs/doc/figures/export_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/export_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/export_text_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/export_text_content.png -------------------------------------------------------------------------------- /docs/doc/figures/extract_xml_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/extract_xml_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/extract_xml_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/extract_xml_basic_example.png -------------------------------------------------------------------------------- /docs/doc/figures/extract_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/extract_xml_example.png -------------------------------------------------------------------------------- /docs/doc/figures/filter_segments_based_on_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/filter_segments_based_on_frequency.png -------------------------------------------------------------------------------- /docs/doc/figures/filter_segments_based_on_frequency_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/filter_segments_based_on_frequency_proportion.png -------------------------------------------------------------------------------- /docs/doc/figures/goal_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/goal_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc/figures/import_annotated_segments_extractxml_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/import_annotated_segments_extractxml_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/import_annotated_segments_text_field_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/import_annotated_segments_text_field_interface.png -------------------------------------------------------------------------------- /docs/doc/figures/include_exclude_units_based_on_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/include_exclude_units_based_on_pattern.png -------------------------------------------------------------------------------- /docs/doc/figures/installation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/installation.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_advanced.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_example.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_interface_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_interface_1.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_interface_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_interface_2.png -------------------------------------------------------------------------------- /docs/doc/figures/intersect_interface_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/intersect_interface_3.png -------------------------------------------------------------------------------- /docs/doc/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/logo.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_annotations_example.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_annotations_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_annotations_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_example.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/merge_several_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merge_several_texts.png -------------------------------------------------------------------------------- /docs/doc/figures/merging_units_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/merging_units_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/message_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/message_example.png -------------------------------------------------------------------------------- /docs/doc/figures/mining_humanist_recode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/mining_humanist_recode.png -------------------------------------------------------------------------------- /docs/doc/figures/mining_humanist_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/mining_humanist_results.png -------------------------------------------------------------------------------- /docs/doc/figures/mining_humanist_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/mining_humanist_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/moby_dick_freq_ahab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/moby_dick_freq_ahab.png -------------------------------------------------------------------------------- /docs/doc/figures/moby_dick_freq_whales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/moby_dick_freq_whales.png -------------------------------------------------------------------------------- /docs/doc/figures/moby_dick_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/moby_dick_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/options_addons_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/options_addons_menu.png -------------------------------------------------------------------------------- /docs/doc/figures/options_addons_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/options_addons_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc/figures/preprocess_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/preprocess_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/preprocess_caveat_schema_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/preprocess_caveat_schema_right.png -------------------------------------------------------------------------------- /docs/doc/figures/preprocess_caveat_schema_without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/preprocess_caveat_schema_without.png -------------------------------------------------------------------------------- /docs/doc/figures/preprocess_caveat_schema_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/preprocess_caveat_schema_wrong.png -------------------------------------------------------------------------------- /docs/doc/figures/random_sample_Sample_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/random_sample_Sample_mode.png -------------------------------------------------------------------------------- /docs/doc/figures/random_sample_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/random_sample_proportion.png -------------------------------------------------------------------------------- /docs/doc/figures/recode_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/recode_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/recode_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/recode_basic_example.png -------------------------------------------------------------------------------- /docs/doc/figures/recommended_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/recommended_settings.png -------------------------------------------------------------------------------- /docs/doc/figures/remove_accents_from_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/remove_accents_from_text.png -------------------------------------------------------------------------------- /docs/doc/figures/replace_all_occurrences_of_string_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/replace_all_occurrences_of_string_pattern.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_example.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_example2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_example2.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_regex_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_regex_example.png -------------------------------------------------------------------------------- /docs/doc/figures/segment_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segment_text.png -------------------------------------------------------------------------------- /docs/doc/figures/segmenting_with_regexes_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segmenting_with_regexes_fig1.png -------------------------------------------------------------------------------- /docs/doc/figures/segmenting_with_regexes_fig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segmenting_with_regexes_fig2.png -------------------------------------------------------------------------------- /docs/doc/figures/segmenting_with_regexes_fig3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/segmenting_with_regexes_fig3.png -------------------------------------------------------------------------------- /docs/doc/figures/select_advanced_regex_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_advanced_regex_example.png -------------------------------------------------------------------------------- /docs/doc/figures/select_advanced_sample_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_advanced_sample_example.png -------------------------------------------------------------------------------- /docs/doc/figures/select_advanced_threshold_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_advanced_threshold_example.png -------------------------------------------------------------------------------- /docs/doc/figures/select_annotation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_annotation_example.png -------------------------------------------------------------------------------- /docs/doc/figures/select_annotation_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_annotation_key.png -------------------------------------------------------------------------------- /docs/doc/figures/select_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_example.png -------------------------------------------------------------------------------- /docs/doc/figures/select_example_reset_signals_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_example_reset_signals_dialog.png -------------------------------------------------------------------------------- /docs/doc/figures/select_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/select_example_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/settings_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/settings_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc/figures/settings_menu_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/settings_menu_windows.png -------------------------------------------------------------------------------- /docs/doc/figures/solution_exercise_intersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/solution_exercise_intersect.png -------------------------------------------------------------------------------- /docs/doc/figures/solution_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/solution_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc/figures/strings_segments_segmentations1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/strings_segments_segmentations1.png -------------------------------------------------------------------------------- /docs/doc/figures/strings_segments_segmentations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/strings_segments_segmentations2.png -------------------------------------------------------------------------------- /docs/doc/figures/tagging_rows_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/tagging_rows_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/text_field_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_field_display.png -------------------------------------------------------------------------------- /docs/doc/figures/text_field_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_field_example.png -------------------------------------------------------------------------------- /docs/doc/figures/text_field_example_cookbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_field_example_cookbook.png -------------------------------------------------------------------------------- /docs/doc/figures/text_field_labelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_field_labelling.png -------------------------------------------------------------------------------- /docs/doc/figures/text_field_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_field_xml_example.png -------------------------------------------------------------------------------- /docs/doc/figures/text_files_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_files_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/text_files_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_files_basic_example.png -------------------------------------------------------------------------------- /docs/doc/figures/text_files_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/text_files_fig1.png -------------------------------------------------------------------------------- /docs/doc/figures/titus_andronicus_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/titus_andronicus_map.png -------------------------------------------------------------------------------- /docs/doc/figures/titus_andronicus_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/titus_andronicus_schema.png -------------------------------------------------------------------------------- /docs/doc/figures/urls_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/urls_advanced_example.png -------------------------------------------------------------------------------- /docs/doc/figures/urls_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/urls_basic_example.png -------------------------------------------------------------------------------- /docs/doc/figures/urls_fig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/urls_fig1.png -------------------------------------------------------------------------------- /docs/doc/figures/variety_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/variety_widget.png -------------------------------------------------------------------------------- /docs/doc/figures/view_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/figures/view_table.png -------------------------------------------------------------------------------- /docs/doc/installation.rst: -------------------------------------------------------------------------------- 1 | Installation 2 | ================ 3 | 4 | Python 3.x and Orange Canvas 3.x must imperatively be installed *before* 5 | Orange Textable. After installation, Orange Textable appears in the form 6 | of an additional tab in Orange Canvas. 7 | 8 | .. figure:: figures/installation.png 9 | :align: center 10 | :alt: Additional Textable Tab 11 | 12 | Figure 1: Additional Textable tab in Orange Canvas. 13 | 14 | The installation procedure is slightly different on Windows and MacOS X. [#]_ 15 | 16 | .. toctree:: 17 | windows_installation 18 | macosx_installation 19 | 20 | .. [#] Several users have reported successful installation on Linux but the procedure is not documented here. 21 | -------------------------------------------------------------------------------- /docs/doc/json_import_export.rst: -------------------------------------------------------------------------------- 1 | JSON import/export 2 | ================== 3 | 4 | Beyond a restricted number of sources, substitutions, or regular expressions, 5 | it becomes tedious to configure instances of widgets :doc:`Text Files `, 6 | :doc:`URLs `, :doc:`Recode `, and :doc:`Segment ` using their advanced interface. 7 | To alleviate this issue, these widgets enable the user to import or export 8 | manually edited configuration lists in `JSON `_ format 9 | as described in the following sections. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | Generalities 15 | File list 16 | URL list 17 | Substitution list 18 | Regular expression list 19 | -------------------------------------------------------------------------------- /docs/doc/regular_expressions.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, regular expressions 3 | :keywords: Orange, Textable, documentation, regular expressions, regex 4 | 5 | Regular Expressions 6 | =================== 7 | 8 | Regular Expressions are an important tool to select specific parts of a text corpus. Thus, in this section you'll learn 9 | how to use them to create segmentations and select specific segments. 10 | 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | A note on regular expressions 16 | Filtering segmentations using regexes 17 | Segmenting with regexes 18 | XML Annotation-based selection using a regex 19 | 20 | -------------------------------------------------------------------------------- /docs/doc/schemas/humanist_for_textable_v3.37.0.ows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/schemas/humanist_for_textable_v3.37.0.ows.zip -------------------------------------------------------------------------------- /docs/doc/schemas/moby_dick_for_textable_v3.37.0.ows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/schemas/moby_dick_for_textable_v3.37.0.ows.zip -------------------------------------------------------------------------------- /docs/doc/schemas/titus_andronicus_for_textable_v3.37.0.ows.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc/schemas/titus_andronicus_for_textable_v3.37.0.ows.zip -------------------------------------------------------------------------------- /docs/doc/segmentation_manipulation.rst: -------------------------------------------------------------------------------- 1 | Segmentation manipulation 2 | ========================== 3 | 4 | This section shows several ways of segmenting text and manipulating 5 | segmentations. 6 | 7 | **Section content** 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | Segment text in smaller units 13 | Merge several texts 14 | Include/exclude units from a segmentation based on a pattern 15 | Filter segments based on their frequency 16 | Create a random selection or sample of segments 17 | Exclude segments based on a stoplist 18 | Convert XML tags to Orange Textable annotations -------------------------------------------------------------------------------- /docs/doc/table_output.rst: -------------------------------------------------------------------------------- 1 | Table output 2 | =============== 3 | 4 | In this section, you will learn how to output tables containing the results of previous quantitative analyses. 5 | 6 | **Section content** 7 | 8 | .. toctree:: 9 | :maxdepth: 1 10 | 11 | Display table 12 | Export table -------------------------------------------------------------------------------- /docs/doc/tables.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, tables 3 | :keywords: Orange, Textable, documentation, tables 4 | 5 | Tables 6 | ====== 7 | 8 | Segmentations are to tables what a means is to an end. In this section, you 9 | will learn how to go from the ones to the others. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | From segmentations to tables 15 | Counting segment types 16 | Counting in specific contexts 17 | Tagging table rows with segments and labels 18 | Viewing and processing tables 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/doc/text_analysis.rst: -------------------------------------------------------------------------------- 1 | Text analysis 2 | =============== 3 | 4 | This section will show you how to apply quantitative analysis methods to 5 | segmentations and the text they contain. 6 | 7 | **Section content** 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | Count unit frequency 13 | Count occurrences of smaller units in larger segments 14 | Count transition frequency between adjacent units 15 | Examine the evolution of unit frequency along the text 16 | Build a concordance -------------------------------------------------------------------------------- /docs/doc/text_import_widgets.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, text import widgets 3 | :keywords: Orange, Textable, documentation, text, import, widgets 4 | 5 | Text import widgets 6 | =================== 7 | 8 | The common purpose of widgets of this category is to import text data in 9 | Orange Canvas, either from the keyboard (:doc:`Text Field `), 10 | from files (:doc:`Text Files `), 11 | or from the Internet 12 | (:doc:`URLs `). 13 | They all emit *Segmentation* data. 14 | 15 | .. toctree:: 16 | :maxdepth: 1 17 | 18 | Text Field 19 | Text Files 20 | URLs 21 | 22 | -------------------------------------------------------------------------------- /docs/doc/text_input.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, text input 3 | :keywords: Orange, Textable, documentation, text, input 4 | 5 | Text input 6 | ========== 7 | 8 | The first step of using Textable typically consists in importing text data. The 9 | following recipes describe three ways of doing this, from keyboard, file, or URL. 10 | 11 | **Section content** 12 | 13 | .. toctree:: 14 | :maxdepth: 1 15 | 16 | Import text from keyboard 17 | Import text from file 18 | Import text from internet location -------------------------------------------------------------------------------- /docs/doc/text_output.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, text output 3 | :keywords: Orange, Textable, documentation, text, output 4 | 5 | Text output 6 | =============== 7 | 8 | Besides building tables, Textable can also be used to recode and process text 9 | data. Modified data can then be either viewed within Orange Canvas, or exported 10 | for further use with third-party software. This section offers two recipes 11 | corresponding to these use cases. 12 | 13 | **Section content** 14 | 15 | .. toctree:: 16 | :maxdepth: 1 17 | 18 | Display text content 19 | Export text content (and/or change text encoding) -------------------------------------------------------------------------------- /docs/doc/text_preprocessing_and_recoding.rst: -------------------------------------------------------------------------------- 1 | Text preprocessing and recoding 2 | ================================ 3 | 4 | In this section, you will learn how to modify and replace elements in 5 | the text that has been imported, with three different “recipes”. 6 | 7 | **Section content** 8 | 9 | .. toctree:: 10 | :maxdepth: 1 11 | 12 | Convert text to lower or upper case 13 | Remove accents from text 14 | Replace all occurrences of a string/pattern -------------------------------------------------------------------------------- /docs/doc/textable_basics.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, Textable’s Basics 3 | :keywords: Orange, Textable, documentation, basics, tutorial 4 | 5 | Textable's Basics 6 | ================= 7 | 8 | This part of the documentation is a tutorial that introduces the basic 9 | usage patterns of Orange Textable. It is meant to be read in the 10 | indicated order. Note that a basic familiarity with the interface of 11 | Orange Canvas is assumed; if needed, have a look at `these video tutorials `_ 12 | to get the necessary background. 13 | 14 | .. toctree:: 15 | :maxdepth: 2 16 | :numbered: 2 17 | 18 | segmentations 19 | annotations 20 | tables 21 | -------------------------------------------------------------------------------- /docs/doc/xml.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, XML 3 | :keywords: Orange, Textable, documentation, XML 4 | 5 | XML 6 | === 7 | 8 | XML markup is often used to annotate text data. In this section, you will 9 | learn how to import XML markup and exploit it with Textable. 10 | 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | Converting XML markup to annotations 16 | Merging units with XML annotations 17 | 18 | -------------------------------------------------------------------------------- /docs/doc_backup/annotations.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, annotations 3 | :keywords: Orange, Textable, documentation, annotations 4 | 5 | Annotations 6 | =========== 7 | 8 | Annotations let you go beyond what's in the text, and extend Orange Textable's 9 | analytic capacities from textual content to user-provided interpretative 10 | information and metadata. 11 | 12 | .. toctree:: 13 | :maxdepth: 1 14 | 15 | Annotations and their uses 16 | Annotating by merging 17 | Converting XML markup to annotations 18 | Tagging table rows with annotations 19 | Merging units with annotations 20 | Annotation-based selection 21 | -------------------------------------------------------------------------------- /docs/doc_backup/build_the_docs.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Orange\scripts\sphinx-build" -b html . _build 2 | pause 3 | -------------------------------------------------------------------------------- /docs/doc_backup/case_studies.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, case studies 3 | :keywords: Orange, Textable, documentation, case studies 4 | 5 | Case studies 6 | ============ 7 | 8 | This section aims to provide a repository of use cases illustrating the 9 | application of Orange Textable to realistic text analysis problems. The focus 10 | here is not so much on "how to" as it is on "why". Each case study comes with 11 | a downloadable Orange Textable scheme that can be studied interactively and 12 | adapted to the specific needs of the user. 13 | 14 | .. toctree:: 15 | :maxdepth: 1 16 | 17 | Term frequency comparison in Melville's Moby Dick 18 | Stylometric analysis of Shakespeare's Titus Andronicus 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc_backup/citing.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, citing 3 | :keywords: Orange, Textable, documentation, citing 4 | 5 | Citing 6 | ====== 7 | 8 | If Orange Textable has been useful in preparing a scientific publication of 9 | yours, a citation would be a great way to say so. Here is the relevant 10 | bibliographic reference: 11 | 12 | Xanthos, Aris (2014). Textable: programmation visuelle pour l'analyse de 13 | données textuelles. In *Actes des 12èmes Journées internationales d'analyse 14 | statistique des données textuelles (JADT 2014)*, pp. 691-703. 15 | `[read online] 16 | `_ 17 | -------------------------------------------------------------------------------- /docs/doc_backup/features.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, features 3 | :keywords: Orange, Textable, documentation, features 4 | 5 | Features 6 | ======== 7 | 8 | Orange Textable offers the following features: 9 | 10 | * text data import from keyboard, files, or urls 11 | * support for various encodings, including Unicode 12 | * standard preprocessing and custom recoding (based on regular expressions) 13 | * segmentation and annotation of various text units (letters, words, etc.) 14 | * ability to extract and exploit XML-encoded annotations 15 | * automatic, random, or arbitrary selection of unit subsets 16 | * unit context examination using concordance and collocation tables 17 | * calculation of frequency and complexity measures 18 | * recoded text data and table export 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc_backup/figures/Category_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Category_16.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Category_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Category_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Category_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Category_48.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Category_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Category_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Context_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Context_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Context_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Context_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Convert_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Convert_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Convert_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Convert_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Cooccurrence_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Cooccurrence_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Count_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Count_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Count_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Count_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/DataTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/DataTable.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/DataTable_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/DataTable_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Display_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Display_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Display_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Display_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/ExtractXML_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/ExtractXML_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/ExtractXML_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/ExtractXML_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Intersect_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Intersect_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Intersect_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Intersect_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Length_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Length_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Length_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Length_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Length_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Length_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Merge_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Merge_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Merge_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Merge_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Message_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Message_16.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Message_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Message_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Message_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Message_48.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Message_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Message_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Preprocess_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Preprocess_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Preprocess_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Preprocess_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Recode_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Recode_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Recode_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Recode_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Segment_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Segment_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Segment_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Segment_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Select_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Select_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Select_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Select_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/TextField_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/TextField_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/TextField_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/TextField_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/TextFiles_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/TextFiles_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/TextFiles_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/TextFiles_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/URLs_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/URLs_36.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/URLs_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/URLs_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/Variety_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/Variety_54.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/addons_management_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/addons_management_dialog.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/addons_management_dialog_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/addons_management_dialog_macosx.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/annotation_based_selection_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/annotation_based_selection_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/annotation_text_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/annotation_text_field.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/banner.jpg -------------------------------------------------------------------------------- /docs/doc_backup/figures/build_concordance_data_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/build_concordance_data_table.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/build_concordance_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/build_concordance_interfaces.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/category_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/category_widget.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/chaining_segmentations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/chaining_segmentations.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/context_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/context_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/context_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/context_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/convert_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/convert_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/convert_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/convert_basic_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/convert_lower_upper_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/convert_lower_upper_case.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/convert_xml_tags_widget_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/convert_xml_tags_widget_interfaces.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/cooc_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/cooc_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/cooc_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/cooc_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/cooc_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/cooc_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/cooc_secondary_units_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/cooc_secondary_units_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_frequency_adjacent_contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_frequency_adjacent_contexts.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_frequency_in_different_texts_parts_of_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_frequency_in_different_texts_parts_of_texts.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_merging_units_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_merging_units_annotations.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_mode_containing_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_mode_containing_segmentation.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_mode_containing_segmentation_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_mode_containing_segmentation_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_mode_left_right_neighborhood_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_mode_left_right_neighborhood_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_occurrences_other_smaller_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_occurrences_other_smaller_segmentation.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_tagging_rows_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_tagging_rows_annotations.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_tagging_rows_annotations_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_tagging_rows_annotations_language.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_unit_fequency_globally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_unit_fequency_globally.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/count_unit_frequency_gradually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/count_unit_frequency_gradually.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_advanced_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_advanced_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_basic_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_basic_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_merged_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_merged_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_merged_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_merged_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_table_data_table_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_table_data_table_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/display_xml_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/display_xml_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/exclude_segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/exclude_segments.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/export_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/export_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/export_text_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/export_text_content.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/extract_xml_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/extract_xml_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/extract_xml_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/extract_xml_basic_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/extract_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/extract_xml_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/filter_segments_based_on_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/filter_segments_based_on_frequency.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/filter_segments_based_on_frequency_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/filter_segments_based_on_frequency_proportion.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/goal_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/goal_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/import_annotated_segments_extractxml_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/import_annotated_segments_extractxml_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/import_annotated_segments_text_field_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/import_annotated_segments_text_field_interface.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/include_exclude_units_based_on_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/include_exclude_units_based_on_pattern.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/intersect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/intersect_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/intersect_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/intersect_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/intersect_interface_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/intersect_interface_1.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/intersect_interface_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/intersect_interface_2.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/intersect_interface_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/intersect_interface_3.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/logo.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_annotations_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_annotations_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merge_several_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merge_several_texts.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/merging_units_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/merging_units_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/message_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/message_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/mining_humanist_recode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/mining_humanist_recode.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/mining_humanist_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/mining_humanist_results.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/mining_humanist_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/mining_humanist_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/moby_dick_freq_ahab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/moby_dick_freq_ahab.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/moby_dick_freq_whales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/moby_dick_freq_whales.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/moby_dick_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/moby_dick_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/options_addons_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/options_addons_menu.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/options_addons_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/options_addons_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/preprocess_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/preprocess_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/preprocess_caveat_schema_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/preprocess_caveat_schema_right.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/preprocess_caveat_schema_without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/preprocess_caveat_schema_without.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/preprocess_caveat_schema_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/preprocess_caveat_schema_wrong.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/random_sample_Sample_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/random_sample_Sample_mode.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/random_sample_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/random_sample_proportion.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/recode_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/recode_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/recode_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/recode_basic_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/recommended_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/recommended_settings.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/remove_accents_from_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/remove_accents_from_text.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/replace_all_occurrences_of_string_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/replace_all_occurrences_of_string_pattern.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/segment_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/segment_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/segment_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/segment_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/segment_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/segment_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/segment_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/segment_text.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_advanced_regex_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_advanced_regex_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_advanced_sample_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_advanced_sample_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_advanced_threshold_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_advanced_threshold_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_annotation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_annotation_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_example_reset_signals_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_example_reset_signals_dialog.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/select_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/select_example_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/settings_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/settings_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/settings_menu_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/settings_menu_windows.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/solution_exercise_intersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/solution_exercise_intersect.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/solution_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/solution_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/tagging_rows_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/tagging_rows_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/text_field_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/text_field_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/text_field_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/text_field_xml_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/text_files_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/text_files_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/text_files_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/text_files_basic_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/titus_andronicus_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/titus_andronicus_map.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/titus_andronicus_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/titus_andronicus_schema.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/urls_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/urls_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/urls_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/urls_basic_example.png -------------------------------------------------------------------------------- /docs/doc_backup/figures/variety_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_backup/figures/variety_widget.png -------------------------------------------------------------------------------- /docs/doc_backup/getting_started.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, getting started 3 | :keywords: Orange, Textable, documentation, getting started, tutorial 4 | 5 | Getting started 6 | =============== 7 | 8 | This part of the documentation is a tutorial that introduces the basic usage 9 | patterns of Orange Textable. It is meant to be read in the indicated order. 10 | Note that a basic familiarity with the interface of Orange Canvas is assumed; 11 | if needed, going through `this short tutorial 12 | `_ should provide you with the 13 | necessary backround. 14 | 15 | .. toctree:: 16 | :maxdepth: 1 17 | :numbered: 18 | 19 | Segmentations 20 | Tables 21 | Annotations 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /docs/doc_backup/json_import_export.rst: -------------------------------------------------------------------------------- 1 | JSON import/export 2 | ================== 3 | 4 | Beyond a restricted number of sources, substitutions, or regular expressions, 5 | it becomes tedious to configure instances of widgets :ref:`Text Files`, 6 | :ref:`URLs`, :ref:`Recode`, and :ref:`Segment` using their advanced interface. 7 | To alleviate this issue, these widgets enable the user to import or export 8 | manually edited configuration lists in `JSON `_ format 9 | as described in the following sections. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | Generalities 15 | File list 16 | URL list 17 | Substitution list 18 | Regular expression list 19 | -------------------------------------------------------------------------------- /docs/doc_backup/readme.md: -------------------------------------------------------------------------------- 1 | This is a backup of the doc as of 12.07.2024, before update. 2 | -------------------------------------------------------------------------------- /docs/doc_backup/tables.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, tables 3 | :keywords: Orange, Textable, documentation, tables 4 | 5 | Tables 6 | ====== 7 | 8 | Segmentations are to tables what a means is to an end. In this section, you 9 | will learn how to go from the ones to the others. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | From segmentations to tables 15 | Converting between table formats 16 | Counting segment types 17 | Counting in specific contexts 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc_v2/build_the_docs.bat: -------------------------------------------------------------------------------- 1 | "C:\Program Files\Orange\scripts\sphinx-build" -b html . _build 2 | pause 3 | -------------------------------------------------------------------------------- /docs/doc_v2/case_studies.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, case studies 3 | :keywords: Orange, Textable, documentation, case studies 4 | 5 | Case studies 6 | ============ 7 | 8 | This section aims to provide a repository of use cases illustrating the 9 | application of Orange Textable to realistic text analysis problems. The focus 10 | here is not so much on "how to" as it is on "why". Each case study comes with 11 | a downloadable Orange Textable scheme that can be studied interactively and 12 | adapted to the specific needs of the user. 13 | 14 | .. toctree:: 15 | :maxdepth: 1 16 | 17 | Term frequency comparison in Melville's Moby Dick 18 | Stylometric analysis of Shakespeare's Titus Andronicus 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc_v2/citing.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, citing 3 | :keywords: Orange, Textable, documentation, citing 4 | 5 | Citing 6 | ====== 7 | 8 | If Orange Textable has been useful in preparing a scientific publication of 9 | yours, a citation would be a great way to say so. Here is the relevant 10 | bibliographic reference: 11 | 12 | Xanthos, Aris (2014). Textable: programmation visuelle pour l'analyse de 13 | données textuelles. In *Actes des 12èmes Journées internationales d'analyse 14 | statistique des données textuelles (JADT 2014)*, pp. 691-703. 15 | `[read online] 16 | `_ 17 | -------------------------------------------------------------------------------- /docs/doc_v2/features.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, features 3 | :keywords: Orange, Textable, documentation, features 4 | 5 | Features 6 | ======== 7 | 8 | Orange Textable offers the following features: 9 | 10 | * text data import from keyboard, files, or urls 11 | * support for various encodings, including Unicode 12 | * standard preprocessing and custom recoding (based on regular expressions) 13 | * segmentation and annotation of various text units (letters, words, etc.) 14 | * ability to extract and exploit XML-encoded annotations 15 | * automatic, random, or arbitrary selection of unit subsets 16 | * unit context examination using concordance and collocation tables 17 | * calculation of frequency and complexity measures 18 | * recoded text data and table export 19 | 20 | 21 | -------------------------------------------------------------------------------- /docs/doc_v2/figures/Category_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Category_16.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Category_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Category_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Category_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Category_48.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Category_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Category_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Context_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Context_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Context_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Context_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Convert_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Convert_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Convert_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Convert_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Cooccurrence_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Cooccurrence_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Count_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Count_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Count_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Count_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/DataTable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/DataTable.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/DataTable_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/DataTable_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Display_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Display_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Display_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Display_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/ExtractXML_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/ExtractXML_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/ExtractXML_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/ExtractXML_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Intersect_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Intersect_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Intersect_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Intersect_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Length_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Length_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Length_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Length_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Length_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Length_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Merge_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Merge_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Merge_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Merge_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Message_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Message_16.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Message_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Message_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Message_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Message_48.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Message_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Message_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Preprocess_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Preprocess_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Preprocess_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Preprocess_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Recode_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Recode_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Recode_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Recode_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Segment_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Segment_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Segment_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Segment_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Select_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Select_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Select_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Select_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/TextField_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/TextField_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/TextField_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/TextField_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/TextFiles_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/TextFiles_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/TextFiles_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/TextFiles_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Text_field_labelling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Text_field_labelling.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/URLs_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/URLs_36.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/URLs_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/URLs_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/Variety_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/Variety_54.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/a_simple_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/a_simple_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/a_simple_example_adjective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/a_simple_example_adjective.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/a_simple_example_annotations2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/a_simple_example_annotations2.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/a_simple_plan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/a_simple_plan.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/addons_management_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/addons_management_dialog.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/addons_management_dialog_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/addons_management_dialog_macosx.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/annotation_based_selection_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/annotation_based_selection_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/annotation_text_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/annotation_text_field.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/banner.jpg -------------------------------------------------------------------------------- /docs/doc_v2/figures/build_concordance_data_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/build_concordance_data_table.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/build_concordance_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/build_concordance_interfaces.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/category_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/category_widget.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/chaining_segmentations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/chaining_segmentations.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/context_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/context_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/context_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/context_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/convert_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/convert_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/convert_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/convert_basic_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/convert_lower_upper_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/convert_lower_upper_case.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/convert_xml_tags_widget_interfaces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/convert_xml_tags_widget_interfaces.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/cooc_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/cooc_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/cooc_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/cooc_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/cooc_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/cooc_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/cooc_secondary_units_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/cooc_secondary_units_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_frequency_adjacent_contexts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_frequency_adjacent_contexts.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_frequency_in_different_texts_parts_of_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_frequency_in_different_texts_parts_of_texts.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_merging_units_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_merging_units_annotations.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_mode_containing_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_mode_containing_segmentation.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_mode_containing_segmentation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_mode_containing_segmentation_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_mode_containing_segmentation_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_mode_containing_segmentation_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_mode_left_right_neighborhood_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_mode_left_right_neighborhood_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_mode_sliding_window_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_mode_sliding_window_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_occurrences_other_smaller_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_occurrences_other_smaller_segmentation.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_tagging_rows_annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_tagging_rows_annotations.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_tagging_rows_annotations_language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_tagging_rows_annotations_language.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_unit_fequency_globally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_unit_fequency_globally.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/count_unit_frequency_gradually.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/count_unit_frequency_gradually.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_advanced_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_advanced_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_basic_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_basic_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_merged_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_merged_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_merged_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_merged_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_table_data_table_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_table_data_table_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/display_xml_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/display_xml_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/exclude_segments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/exclude_segments.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/export_table_convert_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/export_table_convert_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/export_text_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/export_text_content.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/extract_xml_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/extract_xml_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/extract_xml_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/extract_xml_basic_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/extract_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/extract_xml_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/filter_segments_based_on_frequency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/filter_segments_based_on_frequency.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/filter_segments_based_on_frequency_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/filter_segments_based_on_frequency_proportion.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/goal_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/goal_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/import_annotated_segments_extractxml_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/import_annotated_segments_extractxml_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/import_annotated_segments_text_field_interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/import_annotated_segments_text_field_interface.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/include_exclude_units_based_on_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/include_exclude_units_based_on_pattern.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/intersect_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/intersect_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/intersect_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/intersect_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/intersect_interface_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/intersect_interface_1.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/intersect_interface_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/intersect_interface_2.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/intersect_interface_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/intersect_interface_3.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/logo.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_annotations_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_annotations_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_annotations_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_annotations_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merge_several_texts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merge_several_texts.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/merging_units_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/merging_units_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/message_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/message_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/mining_humanist_recode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/mining_humanist_recode.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/mining_humanist_results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/mining_humanist_results.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/mining_humanist_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/mining_humanist_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/moby_dick_freq_ahab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/moby_dick_freq_ahab.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/moby_dick_freq_whales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/moby_dick_freq_whales.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/moby_dick_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/moby_dick_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/options_addons_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/options_addons_menu.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/options_addons_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/options_addons_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/preprocess_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/preprocess_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/preprocess_caveat_schema_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/preprocess_caveat_schema_right.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/preprocess_caveat_schema_without.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/preprocess_caveat_schema_without.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/preprocess_caveat_schema_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/preprocess_caveat_schema_wrong.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/random_sample_Sample_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/random_sample_Sample_mode.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/random_sample_proportion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/random_sample_proportion.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/recode_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/recode_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/recode_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/recode_basic_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/recommended_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/recommended_settings.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/remove_accents_from_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/remove_accents_from_text.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/replace_all_occurrences_of_string_pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/replace_all_occurrences_of_string_pattern.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/segment_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/segment_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/segment_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/segment_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/segment_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/segment_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/segment_regex_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/segment_regex_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/segment_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/segment_text.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_advanced_regex_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_advanced_regex_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_advanced_sample_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_advanced_sample_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_advanced_threshold_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_advanced_threshold_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_annotation_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_annotation_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_annotation_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_annotation_key.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_example_reset_signals_dialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_example_reset_signals_dialog.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/select_example_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/select_example_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/settings_menu_macosx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/settings_menu_macosx.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/settings_menu_windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/settings_menu_windows.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/solution_exercise_intersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/solution_exercise_intersect.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/solution_exercise_merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/solution_exercise_merge.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/tagging_rows_annotations_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/tagging_rows_annotations_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/text_field_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/text_field_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/text_field_xml_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/text_field_xml_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/text_files_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/text_files_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/text_files_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/text_files_basic_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/titus_andronicus_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/titus_andronicus_map.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/titus_andronicus_schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/titus_andronicus_schema.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/urls_advanced_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/urls_advanced_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/urls_basic_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/urls_basic_example.png -------------------------------------------------------------------------------- /docs/doc_v2/figures/variety_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/axanthos/orange3-textable/25620bcdde3e88a5245a4dd09ccdb0b2173985d8/docs/doc_v2/figures/variety_widget.png -------------------------------------------------------------------------------- /docs/doc_v2/json_format.rst: -------------------------------------------------------------------------------- 1 | JSON im-/export format 2 | ====================== 3 | 4 | Beyond a restricted number of sources, substitutions, or regular expressions, 5 | it becomes tedious to configure instances of widgets :ref:`Text Files`, 6 | :ref:`URLs`, :ref:`Recode`, and :ref:`Segment` using their advanced interface. 7 | To alleviate this issue, these widgets enable the user to import or export 8 | manually edited configuration lists in `JSON `_ format 9 | as described in the following sections. 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | Generalities 15 | File list 16 | URL list 17 | Substitution list 18 | Regular expression list 19 | 20 | -------------------------------------------------------------------------------- /docs/doc_v2/text_import_widgets.rst: -------------------------------------------------------------------------------- 1 | .. meta:: 2 | :description: Orange Textable documentation, text import widgets 3 | :keywords: Orange, Textable, documentation, text, import, widgets 4 | 5 | Text import widgets 6 | =================== 7 | 8 | The common purpose of widgets of this category is to import text data in 9 | Orange Canvas, either from the keyboard (:ref:`Text Field`), from files 10 | (:ref:`Text Files`), or from the Internet (:ref:`URLs`). They all emit 11 | *Segmentation* data. 12 | 13 | .. toctree:: 14 | :maxdepth: 1 15 | 16 | Text Field 17 | Text Files 18 | URLs 19 | 20 | --------------------------------------------------------------------------------