├── .gitignore ├── CHANGELOG.md ├── CHANGES-1.0.0.md ├── LICENSE ├── aggregation-scripts ├── Alignment.R ├── GrammaticalMarkers.R ├── LocusOfMarking.R ├── MaximallyInflectedVerbInflection.R ├── MorphologyPerLanguage.R ├── NPStructurePerLanguage.R ├── PredicateClasses.R └── enhancements │ ├── Alienability.R │ ├── Clusivity.R │ ├── GrammaticalMarkers.R │ ├── MaximallyInflectedVerbSynthesis.R │ └── WordDomains.R ├── bibliography └── autotyp.bib ├── data ├── autotyp.RData ├── cldf │ ├── .gitattributes │ ├── StructureDataset-metadata.json │ ├── codes.csv │ ├── contributions.csv │ ├── languages.csv │ ├── parameters.csv │ ├── requirements.txt │ ├── sources.bib │ └── values.csv ├── csv │ ├── Categories │ │ ├── Alienability.csv │ │ ├── Clusivity.csv │ │ ├── Gender.csv │ │ └── NumeralClassifiers.csv │ ├── Definitions │ │ ├── Areas.csv │ │ ├── Category.csv │ │ ├── Continents.csv │ │ ├── Diathesis.csv │ │ ├── Flexivity.csv │ │ ├── HostRestriction.csv │ │ ├── LocusOfMarking.csv │ │ ├── MorphemeType.csv │ │ ├── PartOfSpeech.csv │ │ ├── PhonologicalFusion.csv │ │ ├── Placement.csv │ │ ├── Polarity.csv │ │ ├── Position.csv │ │ ├── PositionalBehavior.csv │ │ ├── SemanticClass.csv │ │ ├── SemanticRole.csv │ │ ├── SourceOfMarking.csv │ │ ├── SyntacticDomain.csv │ │ ├── SyntacticRole.csv │ │ └── TAM.csv │ ├── GrammaticalRelations │ │ ├── Alignment.csv │ │ ├── GrammaticalRelationCoverage.csv │ │ ├── GrammaticalRelations.csv │ │ ├── GrammaticalRelationsRaw.csv │ │ └── PredicateClasses.csv │ ├── Morphology │ │ ├── DefaultLocusOfMarkingPerMacrorelation.csv │ │ ├── GrammaticalMarkers.csv │ │ ├── LocusOfMarkingPerMicrorelation.csv │ │ ├── MaximallyInflectedVerbSynthesis.csv │ │ └── MorphemeClasses.csv │ ├── NP │ │ ├── NPStructure.csv │ │ └── NPStructurePresence.csv │ ├── PerLanguageSummaries │ │ ├── AlignmentForDefaultPredicatesPerLanguage.csv │ │ ├── GrammaticalMarkersPerLanguage.csv │ │ ├── LocusOfMarkingPerLanguage.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.csv │ │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.csv │ │ ├── MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.csv │ │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.csv │ │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.csv │ │ ├── MorphologyPerLanguage.csv │ │ ├── NPStructurePerLanguage.csv │ │ └── PredicateClassesSemanticsPerLanguage.csv │ ├── Register.csv │ ├── Sentence │ │ ├── ClauseLinkage.csv │ │ └── ClauseWordOrder.csv │ └── Word │ │ └── WordDomains.csv └── json │ ├── Categories │ ├── Alienability.json │ ├── Clusivity.json │ ├── Gender.json │ └── NumeralClassifiers.json │ ├── Definitions │ ├── Areas.json │ ├── Category.json │ ├── Continents.json │ ├── Diathesis.json │ ├── Flexivity.json │ ├── HostRestriction.json │ ├── LocusOfMarking.json │ ├── MorphemeType.json │ ├── PartOfSpeech.json │ ├── PhonologicalFusion.json │ ├── Placement.json │ ├── Polarity.json │ ├── Position.json │ ├── PositionalBehavior.json │ ├── SemanticClass.json │ ├── SemanticRole.json │ ├── SourceOfMarking.json │ ├── SyntacticDomain.json │ ├── SyntacticRole.json │ └── TAM.json │ ├── GrammaticalRelations │ ├── Alignment.json │ ├── GrammaticalRelationCoverage.json │ ├── GrammaticalRelations.json │ ├── GrammaticalRelationsRaw.json │ └── PredicateClasses.json │ ├── Morphology │ ├── DefaultLocusOfMarkingPerMacrorelation.json │ ├── GrammaticalMarkers.json │ ├── LocusOfMarkingPerMicrorelation.json │ ├── MaximallyInflectedVerbSynthesis.json │ └── MorphemeClasses.json │ ├── NP │ ├── NPStructure.json │ └── NPStructurePresence.json │ ├── PerLanguageSummaries │ ├── AlignmentForDefaultPredicatesPerLanguage.json │ ├── GrammaticalMarkersPerLanguage.json │ ├── LocusOfMarkingPerLanguage.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.json │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.json │ ├── MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.json │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.json │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.json │ ├── MorphologyPerLanguage.json │ ├── NPStructurePerLanguage.json │ └── PredicateClassesSemanticsPerLanguage.json │ ├── Register.json │ ├── Sentence │ ├── ClauseLinkage.json │ └── ClauseWordOrder.json │ └── Word │ └── WordDomains.json ├── datasets.md ├── figures ├── areas.jpg ├── continents.jpg └── data-coverage-map.png ├── metadata ├── Categories │ ├── Alienability.yaml │ ├── Clusivity.yaml │ ├── Gender.yaml │ └── NumeralClassifiers.yaml ├── Definitions │ ├── Areas.yaml │ ├── Category.yaml │ ├── Continents.yaml │ ├── Diathesis.yaml │ ├── Flexivity.yaml │ ├── HostRestriction.yaml │ ├── LocusOfMarking.yaml │ ├── MorphemeType.yaml │ ├── PartOfSpeech.yaml │ ├── PhonologicalFusion.yaml │ ├── Placement.yaml │ ├── Polarity.yaml │ ├── Position.yaml │ ├── PositionalBehavior.yaml │ ├── SemanticClass.yaml │ ├── SemanticRole.yaml │ ├── SourceOfMarking.yaml │ ├── SyntacticDomain.yaml │ ├── SyntacticRole.yaml │ └── TAM.yaml ├── GrammaticalRelations │ ├── Alignment.yaml │ ├── GrammaticalRelationCoverage.yaml │ ├── GrammaticalRelations.yaml │ ├── GrammaticalRelationsRaw.yaml │ └── PredicateClasses.yaml ├── Morphology │ ├── DefaultLocusOfMarkingPerMacrorelation.yaml │ ├── GrammaticalMarkers.yaml │ ├── LocusOfMarkingPerMicrorelation.yaml │ ├── MaximallyInflectedVerbSynthesis.yaml │ └── MorphemeClasses.yaml ├── NP │ ├── NPStructure.yaml │ └── NPStructurePresence.yaml ├── PerLanguageSummaries │ ├── AlignmentForDefaultPredicatesPerLanguage.yaml │ ├── GrammaticalMarkersPerLanguage.yaml │ ├── LocusOfMarkingPerLanguage.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.yaml │ ├── MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.yaml │ ├── MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.yaml │ ├── MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.yaml │ ├── MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.yaml │ ├── MorphologyPerLanguage.yaml │ ├── NPStructurePerLanguage.yaml │ └── PredicateClassesSemanticsPerLanguage.yaml ├── Register.yaml ├── Sentence │ ├── ClauseLinkage.yaml │ └── ClauseWordOrder.yaml └── Word │ └── WordDomains.yaml ├── readme.md └── variables_overview.csv /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGES-1.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/CHANGES-1.0.0.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/LICENSE -------------------------------------------------------------------------------- /aggregation-scripts/Alignment.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/Alignment.R -------------------------------------------------------------------------------- /aggregation-scripts/GrammaticalMarkers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/GrammaticalMarkers.R -------------------------------------------------------------------------------- /aggregation-scripts/LocusOfMarking.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/LocusOfMarking.R -------------------------------------------------------------------------------- /aggregation-scripts/MaximallyInflectedVerbInflection.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/MaximallyInflectedVerbInflection.R -------------------------------------------------------------------------------- /aggregation-scripts/MorphologyPerLanguage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/MorphologyPerLanguage.R -------------------------------------------------------------------------------- /aggregation-scripts/NPStructurePerLanguage.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/NPStructurePerLanguage.R -------------------------------------------------------------------------------- /aggregation-scripts/PredicateClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/PredicateClasses.R -------------------------------------------------------------------------------- /aggregation-scripts/enhancements/Alienability.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/enhancements/Alienability.R -------------------------------------------------------------------------------- /aggregation-scripts/enhancements/Clusivity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/enhancements/Clusivity.R -------------------------------------------------------------------------------- /aggregation-scripts/enhancements/GrammaticalMarkers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/enhancements/GrammaticalMarkers.R -------------------------------------------------------------------------------- /aggregation-scripts/enhancements/MaximallyInflectedVerbSynthesis.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/enhancements/MaximallyInflectedVerbSynthesis.R -------------------------------------------------------------------------------- /aggregation-scripts/enhancements/WordDomains.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/aggregation-scripts/enhancements/WordDomains.R -------------------------------------------------------------------------------- /bibliography/autotyp.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/bibliography/autotyp.bib -------------------------------------------------------------------------------- /data/autotyp.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/autotyp.RData -------------------------------------------------------------------------------- /data/cldf/.gitattributes: -------------------------------------------------------------------------------- 1 | *.csv text eol=crlf -------------------------------------------------------------------------------- /data/cldf/StructureDataset-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/StructureDataset-metadata.json -------------------------------------------------------------------------------- /data/cldf/codes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/codes.csv -------------------------------------------------------------------------------- /data/cldf/contributions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/contributions.csv -------------------------------------------------------------------------------- /data/cldf/languages.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/languages.csv -------------------------------------------------------------------------------- /data/cldf/parameters.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/parameters.csv -------------------------------------------------------------------------------- /data/cldf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/requirements.txt -------------------------------------------------------------------------------- /data/cldf/sources.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/sources.bib -------------------------------------------------------------------------------- /data/cldf/values.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/cldf/values.csv -------------------------------------------------------------------------------- /data/csv/Categories/Alienability.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Categories/Alienability.csv -------------------------------------------------------------------------------- /data/csv/Categories/Clusivity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Categories/Clusivity.csv -------------------------------------------------------------------------------- /data/csv/Categories/Gender.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Categories/Gender.csv -------------------------------------------------------------------------------- /data/csv/Categories/NumeralClassifiers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Categories/NumeralClassifiers.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Areas.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Category.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Category.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Continents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Continents.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Diathesis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Diathesis.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Flexivity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Flexivity.csv -------------------------------------------------------------------------------- /data/csv/Definitions/HostRestriction.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/HostRestriction.csv -------------------------------------------------------------------------------- /data/csv/Definitions/LocusOfMarking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/LocusOfMarking.csv -------------------------------------------------------------------------------- /data/csv/Definitions/MorphemeType.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/MorphemeType.csv -------------------------------------------------------------------------------- /data/csv/Definitions/PartOfSpeech.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/PartOfSpeech.csv -------------------------------------------------------------------------------- /data/csv/Definitions/PhonologicalFusion.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/PhonologicalFusion.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Placement.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Placement.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Polarity.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Polarity.csv -------------------------------------------------------------------------------- /data/csv/Definitions/Position.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/Position.csv -------------------------------------------------------------------------------- /data/csv/Definitions/PositionalBehavior.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/PositionalBehavior.csv -------------------------------------------------------------------------------- /data/csv/Definitions/SemanticClass.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/SemanticClass.csv -------------------------------------------------------------------------------- /data/csv/Definitions/SemanticRole.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/SemanticRole.csv -------------------------------------------------------------------------------- /data/csv/Definitions/SourceOfMarking.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/SourceOfMarking.csv -------------------------------------------------------------------------------- /data/csv/Definitions/SyntacticDomain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/SyntacticDomain.csv -------------------------------------------------------------------------------- /data/csv/Definitions/SyntacticRole.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/SyntacticRole.csv -------------------------------------------------------------------------------- /data/csv/Definitions/TAM.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Definitions/TAM.csv -------------------------------------------------------------------------------- /data/csv/GrammaticalRelations/Alignment.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/GrammaticalRelations/Alignment.csv -------------------------------------------------------------------------------- /data/csv/GrammaticalRelations/GrammaticalRelationCoverage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/GrammaticalRelations/GrammaticalRelationCoverage.csv -------------------------------------------------------------------------------- /data/csv/GrammaticalRelations/GrammaticalRelations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/GrammaticalRelations/GrammaticalRelations.csv -------------------------------------------------------------------------------- /data/csv/GrammaticalRelations/GrammaticalRelationsRaw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/GrammaticalRelations/GrammaticalRelationsRaw.csv -------------------------------------------------------------------------------- /data/csv/GrammaticalRelations/PredicateClasses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/GrammaticalRelations/PredicateClasses.csv -------------------------------------------------------------------------------- /data/csv/Morphology/DefaultLocusOfMarkingPerMacrorelation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Morphology/DefaultLocusOfMarkingPerMacrorelation.csv -------------------------------------------------------------------------------- /data/csv/Morphology/GrammaticalMarkers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Morphology/GrammaticalMarkers.csv -------------------------------------------------------------------------------- /data/csv/Morphology/LocusOfMarkingPerMicrorelation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Morphology/LocusOfMarkingPerMicrorelation.csv -------------------------------------------------------------------------------- /data/csv/Morphology/MaximallyInflectedVerbSynthesis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Morphology/MaximallyInflectedVerbSynthesis.csv -------------------------------------------------------------------------------- /data/csv/Morphology/MorphemeClasses.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Morphology/MorphemeClasses.csv -------------------------------------------------------------------------------- /data/csv/NP/NPStructure.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/NP/NPStructure.csv -------------------------------------------------------------------------------- /data/csv/NP/NPStructurePresence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/NP/NPStructurePresence.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/GrammaticalMarkersPerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/GrammaticalMarkersPerLanguage.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/LocusOfMarkingPerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/LocusOfMarkingPerLanguage.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/MorphologyPerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/MorphologyPerLanguage.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/NPStructurePerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/NPStructurePerLanguage.csv -------------------------------------------------------------------------------- /data/csv/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.csv -------------------------------------------------------------------------------- /data/csv/Register.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Register.csv -------------------------------------------------------------------------------- /data/csv/Sentence/ClauseLinkage.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Sentence/ClauseLinkage.csv -------------------------------------------------------------------------------- /data/csv/Sentence/ClauseWordOrder.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Sentence/ClauseWordOrder.csv -------------------------------------------------------------------------------- /data/csv/Word/WordDomains.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/csv/Word/WordDomains.csv -------------------------------------------------------------------------------- /data/json/Categories/Alienability.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Categories/Alienability.json -------------------------------------------------------------------------------- /data/json/Categories/Clusivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Categories/Clusivity.json -------------------------------------------------------------------------------- /data/json/Categories/Gender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Categories/Gender.json -------------------------------------------------------------------------------- /data/json/Categories/NumeralClassifiers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Categories/NumeralClassifiers.json -------------------------------------------------------------------------------- /data/json/Definitions/Areas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Areas.json -------------------------------------------------------------------------------- /data/json/Definitions/Category.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Category.json -------------------------------------------------------------------------------- /data/json/Definitions/Continents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Continents.json -------------------------------------------------------------------------------- /data/json/Definitions/Diathesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Diathesis.json -------------------------------------------------------------------------------- /data/json/Definitions/Flexivity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Flexivity.json -------------------------------------------------------------------------------- /data/json/Definitions/HostRestriction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/HostRestriction.json -------------------------------------------------------------------------------- /data/json/Definitions/LocusOfMarking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/LocusOfMarking.json -------------------------------------------------------------------------------- /data/json/Definitions/MorphemeType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/MorphemeType.json -------------------------------------------------------------------------------- /data/json/Definitions/PartOfSpeech.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/PartOfSpeech.json -------------------------------------------------------------------------------- /data/json/Definitions/PhonologicalFusion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/PhonologicalFusion.json -------------------------------------------------------------------------------- /data/json/Definitions/Placement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Placement.json -------------------------------------------------------------------------------- /data/json/Definitions/Polarity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Polarity.json -------------------------------------------------------------------------------- /data/json/Definitions/Position.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/Position.json -------------------------------------------------------------------------------- /data/json/Definitions/PositionalBehavior.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/PositionalBehavior.json -------------------------------------------------------------------------------- /data/json/Definitions/SemanticClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/SemanticClass.json -------------------------------------------------------------------------------- /data/json/Definitions/SemanticRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/SemanticRole.json -------------------------------------------------------------------------------- /data/json/Definitions/SourceOfMarking.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/SourceOfMarking.json -------------------------------------------------------------------------------- /data/json/Definitions/SyntacticDomain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/SyntacticDomain.json -------------------------------------------------------------------------------- /data/json/Definitions/SyntacticRole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/SyntacticRole.json -------------------------------------------------------------------------------- /data/json/Definitions/TAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Definitions/TAM.json -------------------------------------------------------------------------------- /data/json/GrammaticalRelations/Alignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/GrammaticalRelations/Alignment.json -------------------------------------------------------------------------------- /data/json/GrammaticalRelations/GrammaticalRelationCoverage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/GrammaticalRelations/GrammaticalRelationCoverage.json -------------------------------------------------------------------------------- /data/json/GrammaticalRelations/GrammaticalRelations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/GrammaticalRelations/GrammaticalRelations.json -------------------------------------------------------------------------------- /data/json/GrammaticalRelations/GrammaticalRelationsRaw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/GrammaticalRelations/GrammaticalRelationsRaw.json -------------------------------------------------------------------------------- /data/json/GrammaticalRelations/PredicateClasses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/GrammaticalRelations/PredicateClasses.json -------------------------------------------------------------------------------- /data/json/Morphology/DefaultLocusOfMarkingPerMacrorelation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Morphology/DefaultLocusOfMarkingPerMacrorelation.json -------------------------------------------------------------------------------- /data/json/Morphology/GrammaticalMarkers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Morphology/GrammaticalMarkers.json -------------------------------------------------------------------------------- /data/json/Morphology/LocusOfMarkingPerMicrorelation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Morphology/LocusOfMarkingPerMicrorelation.json -------------------------------------------------------------------------------- /data/json/Morphology/MaximallyInflectedVerbSynthesis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Morphology/MaximallyInflectedVerbSynthesis.json -------------------------------------------------------------------------------- /data/json/Morphology/MorphemeClasses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Morphology/MorphemeClasses.json -------------------------------------------------------------------------------- /data/json/NP/NPStructure.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/NP/NPStructure.json -------------------------------------------------------------------------------- /data/json/NP/NPStructurePresence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/NP/NPStructurePresence.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/GrammaticalMarkersPerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/GrammaticalMarkersPerLanguage.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/LocusOfMarkingPerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/LocusOfMarkingPerLanguage.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/MorphologyPerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/MorphologyPerLanguage.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/NPStructurePerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/NPStructurePerLanguage.json -------------------------------------------------------------------------------- /data/json/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.json -------------------------------------------------------------------------------- /data/json/Register.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Register.json -------------------------------------------------------------------------------- /data/json/Sentence/ClauseLinkage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Sentence/ClauseLinkage.json -------------------------------------------------------------------------------- /data/json/Sentence/ClauseWordOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Sentence/ClauseWordOrder.json -------------------------------------------------------------------------------- /data/json/Word/WordDomains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/data/json/Word/WordDomains.json -------------------------------------------------------------------------------- /datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/datasets.md -------------------------------------------------------------------------------- /figures/areas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/figures/areas.jpg -------------------------------------------------------------------------------- /figures/continents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/figures/continents.jpg -------------------------------------------------------------------------------- /figures/data-coverage-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/figures/data-coverage-map.png -------------------------------------------------------------------------------- /metadata/Categories/Alienability.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Categories/Alienability.yaml -------------------------------------------------------------------------------- /metadata/Categories/Clusivity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Categories/Clusivity.yaml -------------------------------------------------------------------------------- /metadata/Categories/Gender.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Categories/Gender.yaml -------------------------------------------------------------------------------- /metadata/Categories/NumeralClassifiers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Categories/NumeralClassifiers.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Areas.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Areas.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Category.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Category.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Continents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Continents.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Diathesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Diathesis.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Flexivity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Flexivity.yaml -------------------------------------------------------------------------------- /metadata/Definitions/HostRestriction.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/HostRestriction.yaml -------------------------------------------------------------------------------- /metadata/Definitions/LocusOfMarking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/LocusOfMarking.yaml -------------------------------------------------------------------------------- /metadata/Definitions/MorphemeType.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/MorphemeType.yaml -------------------------------------------------------------------------------- /metadata/Definitions/PartOfSpeech.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/PartOfSpeech.yaml -------------------------------------------------------------------------------- /metadata/Definitions/PhonologicalFusion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/PhonologicalFusion.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Placement.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Placement.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Polarity.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Polarity.yaml -------------------------------------------------------------------------------- /metadata/Definitions/Position.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/Position.yaml -------------------------------------------------------------------------------- /metadata/Definitions/PositionalBehavior.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/PositionalBehavior.yaml -------------------------------------------------------------------------------- /metadata/Definitions/SemanticClass.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/SemanticClass.yaml -------------------------------------------------------------------------------- /metadata/Definitions/SemanticRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/SemanticRole.yaml -------------------------------------------------------------------------------- /metadata/Definitions/SourceOfMarking.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/SourceOfMarking.yaml -------------------------------------------------------------------------------- /metadata/Definitions/SyntacticDomain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/SyntacticDomain.yaml -------------------------------------------------------------------------------- /metadata/Definitions/SyntacticRole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/SyntacticRole.yaml -------------------------------------------------------------------------------- /metadata/Definitions/TAM.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Definitions/TAM.yaml -------------------------------------------------------------------------------- /metadata/GrammaticalRelations/Alignment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/GrammaticalRelations/Alignment.yaml -------------------------------------------------------------------------------- /metadata/GrammaticalRelations/GrammaticalRelationCoverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/GrammaticalRelations/GrammaticalRelationCoverage.yaml -------------------------------------------------------------------------------- /metadata/GrammaticalRelations/GrammaticalRelations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/GrammaticalRelations/GrammaticalRelations.yaml -------------------------------------------------------------------------------- /metadata/GrammaticalRelations/GrammaticalRelationsRaw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/GrammaticalRelations/GrammaticalRelationsRaw.yaml -------------------------------------------------------------------------------- /metadata/GrammaticalRelations/PredicateClasses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/GrammaticalRelations/PredicateClasses.yaml -------------------------------------------------------------------------------- /metadata/Morphology/DefaultLocusOfMarkingPerMacrorelation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Morphology/DefaultLocusOfMarkingPerMacrorelation.yaml -------------------------------------------------------------------------------- /metadata/Morphology/GrammaticalMarkers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Morphology/GrammaticalMarkers.yaml -------------------------------------------------------------------------------- /metadata/Morphology/LocusOfMarkingPerMicrorelation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Morphology/LocusOfMarkingPerMicrorelation.yaml -------------------------------------------------------------------------------- /metadata/Morphology/MaximallyInflectedVerbSynthesis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Morphology/MaximallyInflectedVerbSynthesis.yaml -------------------------------------------------------------------------------- /metadata/Morphology/MorphemeClasses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Morphology/MorphemeClasses.yaml -------------------------------------------------------------------------------- /metadata/NP/NPStructure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/NP/NPStructure.yaml -------------------------------------------------------------------------------- /metadata/NP/NPStructurePresence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/NP/NPStructurePresence.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/AlignmentForDefaultPredicatesPerLanguage.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/GrammaticalMarkersPerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/GrammaticalMarkersPerLanguage.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/LocusOfMarkingPerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/LocusOfMarkingPerLanguage.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasMultipleExponents.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPostposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerHasPreposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPosition.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned4.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbAgreementAggregatedByMarkerPositionBinned5.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionAndAgreementCountsByPosition.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasMultipleExponents.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPostposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerHasPreposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPosition.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned4.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedByMarkerPositionBinned5.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionCategoriesAggregatedPresence.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasMultipleExponents.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPostposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerHasPreposedExponent.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPosition.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned4.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MaximallyInflectedVerbInflectionMacrocategoriesAggregatedByMarkerPositionBinned5.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/MorphologyPerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/MorphologyPerLanguage.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/NPStructurePerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/NPStructurePerLanguage.yaml -------------------------------------------------------------------------------- /metadata/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/PerLanguageSummaries/PredicateClassesSemanticsPerLanguage.yaml -------------------------------------------------------------------------------- /metadata/Register.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Register.yaml -------------------------------------------------------------------------------- /metadata/Sentence/ClauseLinkage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Sentence/ClauseLinkage.yaml -------------------------------------------------------------------------------- /metadata/Sentence/ClauseWordOrder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Sentence/ClauseWordOrder.yaml -------------------------------------------------------------------------------- /metadata/Word/WordDomains.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/metadata/Word/WordDomains.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/readme.md -------------------------------------------------------------------------------- /variables_overview.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autotyp/autotyp-data/HEAD/variables_overview.csv --------------------------------------------------------------------------------