Pclanglais commited on
Commit
106d6b9
·
verified ·
1 Parent(s): 2bb600a

Upload folder using huggingface_hub

Browse files
mattia_stats/.stats_by_language.json.swp ADDED
Binary file (16.4 kB). View file
 
mattia_stats/collect_stats.py ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import pandas as pd
3
+ import pyarrow.parquet as pq
4
+ import json
5
+ import numpy as np
6
+
7
+ # Configuration
8
+ base_dir = "/lustre/fsn1/projects/rech/fmr/uft12cr/statistics_corpus_full"
9
+ set_dirs = [f"set_{i}" for i in range(1, 11)] # Sets 1 to 10, excluding filtered sets
10
+ test = False # Set to True to process only a single Parquet file
11
+ min_tokens_threshold = 100000 # Minimum tokens required to report certain statistics
12
+
13
+ # Dictionary to accumulate statistics
14
+ stats = {
15
+ "total_tokens_by_language": {},
16
+ "total_words_by_language": {},
17
+ "total_tokens_by_collection": {},
18
+ "total_words_by_collection": {},
19
+ "doc_count_by_language": {},
20
+ "doc_count_by_collection": {},
21
+ "license_distribution": {},
22
+ "compression_rate_by_language": {},
23
+ "avg_doc_length_words_by_language": {},
24
+ "avg_doc_length_tokens_by_language": {},
25
+ "compression_rate_by_collection": {},
26
+ "avg_doc_length_words_by_collection": {},
27
+ "avg_doc_length_tokens_by_collection": {},
28
+ }
29
+
30
+ processed_files = 0
31
+ errors_count = 0
32
+
33
+ # Helper function to update dictionaries for language and collection statistics
34
+ def update_stats(df):
35
+ required_columns = {"collection", "language", "token_count", "word_count", "license"}
36
+ if not required_columns.issubset(df.columns):
37
+ print("DataFrame is missing required columns.")
38
+ return
39
+
40
+ try:
41
+ df.loc[df['collection'].notna() & df['collection'].str.contains("Github", case=False), 'language'] = 'code'
42
+
43
+ for collection_name, col_df in df.groupby("collection"):
44
+ stats["total_tokens_by_collection"].setdefault(collection_name, 0)
45
+ stats["total_tokens_by_collection"][collection_name] += col_df["token_count"].sum()
46
+ stats["total_words_by_collection"].setdefault(collection_name, 0)
47
+ stats["total_words_by_collection"][collection_name] += col_df["word_count"].sum()
48
+ stats["doc_count_by_collection"].setdefault(collection_name, 0)
49
+ stats["doc_count_by_collection"][collection_name] += len(col_df)
50
+
51
+ license_counts = col_df["license"].value_counts().to_dict()
52
+ for license_type, count in license_counts.items():
53
+ stats["license_distribution"].setdefault(collection_name, {}).setdefault(license_type, 0)
54
+ stats["license_distribution"][collection_name][license_type] += count
55
+
56
+ for language, lang_df in df.groupby("language"):
57
+ stats["total_tokens_by_language"].setdefault(language, 0)
58
+ stats["total_tokens_by_language"][language] += lang_df["token_count"].sum()
59
+ stats["total_words_by_language"].setdefault(language, 0)
60
+ stats["total_words_by_language"][language] += lang_df["word_count"].sum()
61
+ stats["doc_count_by_language"].setdefault(language, 0)
62
+ stats["doc_count_by_language"][language] += len(lang_df)
63
+
64
+ except Exception as e:
65
+ print(f"Error updating statistics: {e}")
66
+
67
+ # Gather all parquet files, with only one if in test mode
68
+ all_parquet_files = []
69
+ for set_dir in set_dirs:
70
+ set_path = os.path.join(base_dir, set_dir)
71
+ if not os.path.isdir(set_path):
72
+ print(f"Directory {set_path} not found, skipping...")
73
+ continue
74
+ try:
75
+ parquet_files = [os.path.join(set_path, f) for f in os.listdir(set_path) if f.endswith(".parquet")]
76
+ all_parquet_files.extend(parquet_files)
77
+ except Exception as e:
78
+ print(f"Error reading directory {set_path}: {e}")
79
+ if test:
80
+ all_parquet_files = all_parquet_files[:1]
81
+
82
+ # Process all selected parquet files
83
+ total_files = len(all_parquet_files)
84
+ for file_path in all_parquet_files:
85
+ try:
86
+ df = pq.read_table(file_path).to_pandas()
87
+ update_stats(df)
88
+ processed_files += 1
89
+ except Exception as e:
90
+ print(f"Error processing file {file_path}: {e}")
91
+ errors_count += 1
92
+
93
+ if processed_files % 10 == 0 or processed_files == total_files:
94
+ print(f"Processed {processed_files}/{total_files} files with {errors_count} errors.")
95
+
96
+ # Compute compression rates and average document lengths by language with threshold checks
97
+ for language in stats["total_tokens_by_language"]:
98
+ try:
99
+ total_tokens = stats["total_tokens_by_language"][language]
100
+ total_words = stats["total_words_by_language"][language]
101
+ doc_count = stats["doc_count_by_language"][language]
102
+
103
+ if total_tokens >= min_tokens_threshold:
104
+ stats["compression_rate_by_language"][language] = total_tokens / total_words if total_words > 0 else None
105
+ stats["avg_doc_length_words_by_language"][language] = total_words / doc_count if doc_count > 0 else None
106
+ stats["avg_doc_length_tokens_by_language"][language] = total_tokens / doc_count if doc_count > 0 else None
107
+ else:
108
+ stats["compression_rate_by_language"][language] = "N/A"
109
+ stats["avg_doc_length_words_by_language"][language] = "N/A"
110
+ stats["avg_doc_length_tokens_by_language"][language] = "N/A"
111
+ except Exception as e:
112
+ print(f"Error calculating stats for language {language}: {e}")
113
+
114
+ # Compute compression rates and average document lengths by collection with threshold checks
115
+ for collection in stats["total_tokens_by_collection"]:
116
+ try:
117
+ total_tokens = stats["total_tokens_by_collection"][collection]
118
+ total_words = stats["total_words_by_collection"][collection]
119
+ doc_count = stats["doc_count_by_collection"][collection]
120
+
121
+ if total_tokens >= min_tokens_threshold:
122
+ stats["compression_rate_by_collection"][collection] = total_tokens / total_words if total_words > 0 else None
123
+ stats["avg_doc_length_words_by_collection"][collection] = total_words / doc_count if doc_count > 0 else None
124
+ stats["avg_doc_length_tokens_by_collection"][collection] = total_tokens / doc_count if doc_count > 0 else None
125
+ else:
126
+ stats["compression_rate_by_collection"][collection] = "N/A"
127
+ stats["avg_doc_length_words_by_collection"][collection] = "N/A"
128
+ stats["avg_doc_length_tokens_by_collection"][collection] = "N/A"
129
+ except Exception as e:
130
+ print(f"Error calculating stats for collection {collection}: {e}")
131
+
132
+ # Convert to native types function
133
+ def convert_to_native_types(stats):
134
+ def convert(value):
135
+ if isinstance(value, (np.integer, np.floating)):
136
+ return value.item()
137
+ elif isinstance(value, dict):
138
+ return {k: convert(v) for k, v in value.items()}
139
+ return value
140
+ return {k: convert(v) for k, v in stats.items()}
141
+
142
+ # Print and save statistics in human-readable format
143
+ def print_stats(stats):
144
+ output = []
145
+ output.append("============ Corpus Statistics Overview ============")
146
+ total_tokens = sum(stats["total_tokens_by_collection"].values())
147
+ total_words = sum(stats["total_words_by_collection"].values())
148
+ total_docs = sum(stats["doc_count_by_collection"].values())
149
+ output.append(f"\nTotal Tokens in Corpus: {total_tokens:,}")
150
+ output.append(f"Total Words in Corpus: {total_words:,}")
151
+ output.append(f"Total Documents in Corpus: {total_docs:,}")
152
+
153
+ # Display top 10 collections by total tokens
154
+ output.append("\nTop 10 Collections by Total Tokens:")
155
+ for collection, count in sorted(stats["total_tokens_by_collection"].items(), key=lambda x: x[1], reverse=True)[:10]:
156
+ output.append(f" - {collection}: {count:,}")
157
+
158
+ # Display top 10 languages by total tokens
159
+ output.append("\nTop 10 Languages by Total Tokens:")
160
+ for language, count in sorted(stats["total_tokens_by_language"].items(), key=lambda x: x[1], reverse=True)[:10]:
161
+ output.append(f" - {language}: {count:,}")
162
+
163
+ # Display compression rate by language (top 10)
164
+ output.append("\nCompression Rate by Language (Top 10):")
165
+ for language, rate in sorted(stats["compression_rate_by_language"].items(), key=lambda x: x[1] if isinstance(x[1], (int, float)) else 0, reverse=True)[:10]:
166
+ output.append(f" - {language}: {rate:.2f}" if isinstance(rate, (int, float)) else f" - {language}: N/A")
167
+
168
+ # Display average document length by language (top 10)
169
+ output.append("\nAverage Document Length (Words) by Language (Top 10):")
170
+ for language, avg_len in sorted(stats["avg_doc_length_words_by_language"].items(), key=lambda x: x[1] if isinstance(x[1], (int, float)) else 0, reverse=True)[:10]:
171
+ output.append(f" - {language}: {avg_len:.2f}" if isinstance(avg_len, (int, float)) else f" - {language}: N/A")
172
+
173
+ # License distribution by collection (top 5 collections)
174
+ output.append("\nLicense Distribution by Collection (Top 5):")
175
+ for collection, licenses in list(sorted(stats["license_distribution"].items(), key=lambda x: sum(x[1].values()), reverse=True))[:5]:
176
+ output.append(f" - {collection}:")
177
+ for license_type, count in sorted(licenses.items(), key=lambda x: x[1], reverse=True):
178
+ output.append(f" * {license_type}: {count:,}")
179
+
180
+ output.append("====================================================")
181
+ print("\n".join(output))
182
+
183
+ # Save to text file
184
+ with open('stats_readable_output.txt', 'w') as f:
185
+ f.write("\n".join(output))
186
+
187
+ # Print and save the human-readable stats
188
+ print_stats(stats)
189
+
190
+ # Convert to native types and save as JSON
191
+ stats_native = convert_to_native_types(stats)
192
+
193
+ with open('stats_by_language.json', 'w') as f:
194
+ json.dump({
195
+ 'total_tokens_by_language': stats_native['total_tokens_by_language'],
196
+ 'total_words_by_language': stats_native['total_words_by_language'],
197
+ 'doc_count_by_language': stats_native['doc_count_by_language'],
198
+ 'compression_rate_by_language': stats_native['compression_rate_by_language'],
199
+ 'avg_doc_length_words_by_language': stats_native['avg_doc_length_words_by_language'],
200
+ 'avg_doc_length_tokens_by_language': stats_native['avg_doc_length_tokens_by_language'],
201
+ }, f, indent=4)
202
+
203
+ with open('stats_by_collection.json', 'w') as f:
204
+ json.dump({
205
+ 'total_tokens_by_collection': stats_native['total_tokens_by_collection'],
206
+ 'total_words_by_collection': stats_native['total_words_by_collection'],
207
+ 'doc_count_by_collection': stats_native['doc_count_by_collection'],
208
+ 'compression_rate_by_collection': stats_native['compression_rate_by_collection'],
209
+ 'avg_doc_length_words_by_collection': stats_native['avg_doc_length_words_by_collection'],
210
+ 'avg_doc_length_tokens_by_collection': stats_native['avg_doc_length_tokens_by_collection'],
211
+ 'license_distribution': stats_native['license_distribution'],
212
+ }, f, indent=4)
mattia_stats/stats_by_collection.json ADDED
@@ -0,0 +1,493 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_tokens_by_collection": {
3
+ "BNL Newspapers": 304963266,
4
+ "Caselaw_Access_Project": 13823526194,
5
+ "Creative Commons Common Crawl": 94414845678,
6
+ "Czech-PD": 746496707,
7
+ "Dutch-PD": 28823247353,
8
+ "English-PD": 174238439337,
9
+ "Eurlex": 64896588374,
10
+ "European Open Data": 7093430212,
11
+ "Europeana": 21085763119,
12
+ "Eurovoc": 31613548606,
13
+ "French Open Data": 32323474906,
14
+ "French-PD-Books": 24076731714,
15
+ "French-PD-Newspapers": 110805801848,
16
+ "French-PD-diverse": 69567373118,
17
+ "French-Science-Pile": 46943907918,
18
+ "GATT_library": 215338931,
19
+ "German-PD": 58023695130,
20
+ "German-PD-Newspapers": 18437430683,
21
+ "German-Science-Pile": 7804419373,
22
+ "Github OpenSource": 334658896533,
23
+ "Greek-PD": 4258075867,
24
+ "Italian-PD": 18162074838,
25
+ "Latin-PD": 27156376259,
26
+ "LoC-PD-Books": 10567506782,
27
+ "Multilingual-PD": 8395426749,
28
+ "NewZealand-PD-Newspapers": 12640311684,
29
+ "OECD": 575213706,
30
+ "Open-Science-Pile": 11088438504,
31
+ "Polish-PD": 5918644048,
32
+ "Portuguese-PD": 2558290270,
33
+ "Russian-PD": 1946531049,
34
+ "SEC": 9648522224,
35
+ "Spanish-PD-Books": 15459221038,
36
+ "Spanish-PD-Newspapers": 8087546718,
37
+ "Spanish-Science-Pile": 16515147259,
38
+ "TEDEUTenders": 649323694,
39
+ "UN-Digital-Library": 1764113826,
40
+ "US-PD-Books": 82849512838,
41
+ "US-PD-Newspapers": 199301091817,
42
+ "USPTO": 200115310846,
43
+ "WTO": 2783387015,
44
+ "Wikipedia": 37660470037,
45
+ "Wikisource": 5465374743,
46
+ "Youtube-Commons-Whisper": 4148083045,
47
+ "courtlistener": 22463960458,
48
+ "Sanskrit-PD": 20059008,
49
+ "Arabic-PD": 266526149,
50
+ "Danish-PD": 533492500,
51
+ "Persian-PD": 3005063,
52
+ "Serbian-PD": 278460246,
53
+ "Urdu-PD": 23763411,
54
+ "Bengali-PD": 1148440,
55
+ "Catalan-PD": 23567192
56
+ },
57
+ "total_words_by_collection": {
58
+ "BNL Newspapers": 176272693,
59
+ "Caselaw_Access_Project": 10285285789,
60
+ "Creative Commons Common Crawl": 59340682533,
61
+ "Czech-PD": 310862564,
62
+ "Dutch-PD": 14295979074,
63
+ "English-PD": 119525447934,
64
+ "Eurlex": 28334282090,
65
+ "European Open Data": 3625209319,
66
+ "Europeana": 9862973752,
67
+ "Eurovoc": 15211755822,
68
+ "French Open Data": 20054357643,
69
+ "French-PD-Books": 14983296925,
70
+ "French-PD-Newspapers": 63938174591,
71
+ "French-PD-diverse": 43569797125,
72
+ "French-Science-Pile": 27243202490,
73
+ "GATT_library": 128171786,
74
+ "German-PD": 29408254116,
75
+ "German-PD-Newspapers": 10390291220,
76
+ "German-Science-Pile": 3652714541,
77
+ "Github OpenSource": 95487571039,
78
+ "Greek-PD": 1255327713,
79
+ "Italian-PD": 10097607585,
80
+ "Latin-PD": 12225718089,
81
+ "LoC-PD-Books": 7646053601,
82
+ "Multilingual-PD": 4371541919,
83
+ "NewZealand-PD-Newspapers": 8104737540,
84
+ "OECD": 364085354,
85
+ "Open-Science-Pile": 5825331692,
86
+ "Polish-PD": 2544220366,
87
+ "Portuguese-PD": 1679485013,
88
+ "Russian-PD": 658373763,
89
+ "SEC": 7172350921,
90
+ "Spanish-PD-Books": 9369469279,
91
+ "Spanish-PD-Newspapers": 4670631485,
92
+ "Spanish-Science-Pile": 8709665386,
93
+ "TEDEUTenders": 270227208,
94
+ "UN-Digital-Library": 672969319,
95
+ "US-PD-Books": 58467113006,
96
+ "US-PD-Newspapers": 129719461724,
97
+ "USPTO": 146277653860,
98
+ "WTO": 1588680990,
99
+ "Wikipedia": 15225561717,
100
+ "Wikisource": 1857075738,
101
+ "Youtube-Commons-Whisper": 3171546991,
102
+ "courtlistener": 15871047126,
103
+ "Sanskrit-PD": 10095633,
104
+ "Arabic-PD": 94823366,
105
+ "Danish-PD": 260635988,
106
+ "Persian-PD": 1205639,
107
+ "Serbian-PD": 117189635,
108
+ "Urdu-PD": 8884694,
109
+ "Bengali-PD": 306809,
110
+ "Catalan-PD": 12469577
111
+ },
112
+ "doc_count_by_collection": {
113
+ "BNL Newspapers": 405711,
114
+ "Caselaw_Access_Project": 6775938,
115
+ "Creative Commons Common Crawl": 84718236,
116
+ "Czech-PD": 42379,
117
+ "Dutch-PD": 2096508,
118
+ "English-PD": 16783328,
119
+ "Eurlex": 6796112,
120
+ "European Open Data": 1097870,
121
+ "Europeana": 1363501,
122
+ "Eurovoc": 1528403,
123
+ "French Open Data": 16482805,
124
+ "French-PD-Books": 2139429,
125
+ "French-PD-Newspapers": 8584617,
126
+ "French-PD-diverse": 6047368,
127
+ "French-Science-Pile": 4509548,
128
+ "GATT_library": 67584,
129
+ "German-PD": 4054143,
130
+ "German-PD-Newspapers": 1354382,
131
+ "German-Science-Pile": 749392,
132
+ "Github OpenSource": 203834392,
133
+ "Greek-PD": 168351,
134
+ "Italian-PD": 1490809,
135
+ "Latin-PD": 1694844,
136
+ "LoC-PD-Books": 1085312,
137
+ "Multilingual-PD": 607137,
138
+ "NewZealand-PD-Newspapers": 1850594,
139
+ "OECD": 78071,
140
+ "Open-Science-Pile": 1201355,
141
+ "Polish-PD": 458020,
142
+ "Portuguese-PD": 210826,
143
+ "Russian-PD": 89969,
144
+ "SEC": 1085088,
145
+ "Spanish-PD-Books": 1343666,
146
+ "Spanish-PD-Newspapers": 687585,
147
+ "Spanish-Science-Pile": 1681154,
148
+ "TEDEUTenders": 137835,
149
+ "UN-Digital-Library": 284773,
150
+ "US-PD-Books": 8165790,
151
+ "US-PD-Newspapers": 33719001,
152
+ "USPTO": 30395812,
153
+ "WTO": 772411,
154
+ "Wikipedia": 61377197,
155
+ "Wikisource": 1426922,
156
+ "Youtube-Commons-Whisper": 1134429,
157
+ "courtlistener": 10033356,
158
+ "Sanskrit-PD": 1445,
159
+ "Arabic-PD": 10979,
160
+ "Danish-PD": 35701,
161
+ "Persian-PD": 142,
162
+ "Serbian-PD": 15906,
163
+ "Urdu-PD": 912,
164
+ "Bengali-PD": 253,
165
+ "Catalan-PD": 1733
166
+ },
167
+ "compression_rate_by_collection": {
168
+ "BNL Newspapers": 1.730065280162254,
169
+ "Caselaw_Access_Project": 1.3440099261786298,
170
+ "Creative Commons Common Crawl": 1.591064370139236,
171
+ "Czech-PD": 2.40137216072116,
172
+ "Dutch-PD": 2.0161786194427664,
173
+ "English-PD": 1.4577518206266136,
174
+ "Eurlex": 2.290391130005158,
175
+ "European Open Data": 1.956695348547955,
176
+ "Europeana": 2.137870752695074,
177
+ "Eurovoc": 2.078231400498745,
178
+ "French Open Data": 1.6117930816538795,
179
+ "French-PD-Books": 1.6069047976902453,
180
+ "French-PD-Newspapers": 1.7330147843100472,
181
+ "French-PD-diverse": 1.5966880203369778,
182
+ "French-Science-Pile": 1.7231420548017957,
183
+ "GATT_library": 1.680080599017322,
184
+ "German-PD": 1.9730411367205694,
185
+ "German-PD-Newspapers": 1.7744864212766502,
186
+ "German-Science-Pile": 2.136608071996612,
187
+ "Github OpenSource": 3.504737767351054,
188
+ "Greek-PD": 3.3920033971240784,
189
+ "Italian-PD": 1.798651283000913,
190
+ "Latin-PD": 2.2212499962217964,
191
+ "LoC-PD-Books": 1.3820864112982303,
192
+ "Multilingual-PD": 1.9204726626344402,
193
+ "NewZealand-PD-Newspapers": 1.5596201137439918,
194
+ "OECD": 1.579886967933349,
195
+ "Open-Science-Pile": 1.9034862030651216,
196
+ "Polish-PD": 2.3263095159108556,
197
+ "Portuguese-PD": 1.5232587669420306,
198
+ "Russian-PD": 2.956574454197987,
199
+ "SEC": 1.3452384483517104,
200
+ "Spanish-PD-Books": 1.649956958890841,
201
+ "Spanish-PD-Newspapers": 1.7315745727261118,
202
+ "Spanish-Science-Pile": 1.896186193966373,
203
+ "TEDEUTenders": 2.4028805197143583,
204
+ "UN-Digital-Library": 2.621388191398366,
205
+ "US-PD-Books": 1.4170276002767201,
206
+ "US-PD-Newspapers": 1.536400854337853,
207
+ "USPTO": 1.3680511381289118,
208
+ "WTO": 1.7520112801249041,
209
+ "Wikipedia": 2.4735028327362434,
210
+ "Wikisource": 2.9430004555904654,
211
+ "Youtube-Commons-Whisper": 1.3079052767533155,
212
+ "courtlistener": 1.41540506304713,
213
+ "Sanskrit-PD": 1.986899484163103,
214
+ "Arabic-PD": 2.810764479716951,
215
+ "Danish-PD": 2.046887323940852,
216
+ "Persian-PD": 2.492506463377512,
217
+ "Serbian-PD": 2.376150808900463,
218
+ "Urdu-PD": 2.6746459697992977,
219
+ "Bengali-PD": 3.743175721703079,
220
+ "Catalan-PD": 1.8899752573804227
221
+ },
222
+ "avg_doc_length_words_by_collection": {
223
+ "BNL Newspapers": 434.478466198846,
224
+ "Caselaw_Access_Project": 1517.9132083262864,
225
+ "Creative Commons Common Crawl": 700.4475699069088,
226
+ "Czech-PD": 7335.297293470823,
227
+ "Dutch-PD": 6818.94801927777,
228
+ "English-PD": 7121.677413085176,
229
+ "Eurlex": 4169.1899853916475,
230
+ "European Open Data": 3302.038783280352,
231
+ "Europeana": 7233.565470065661,
232
+ "Eurovoc": 9952.712617025745,
233
+ "French Open Data": 1216.683546459477,
234
+ "French-PD-Books": 7003.409285842157,
235
+ "French-PD-Newspapers": 7447.993846551337,
236
+ "French-PD-diverse": 7204.753725091643,
237
+ "French-Science-Pile": 6041.22685688233,
238
+ "GATT_library": 1896.4812085700758,
239
+ "German-PD": 7253.876865221577,
240
+ "German-PD-Newspapers": 7671.610535284728,
241
+ "German-Science-Pile": 4874.2374364818415,
242
+ "Github OpenSource": 468.456623546629,
243
+ "Greek-PD": 7456.609779567689,
244
+ "Italian-PD": 6773.240291009781,
245
+ "Latin-PD": 7213.476927080014,
246
+ "LoC-PD-Books": 7045.028158723022,
247
+ "Multilingual-PD": 7200.256151412284,
248
+ "NewZealand-PD-Newspapers": 4379.533025612317,
249
+ "OECD": 4663.515953427009,
250
+ "Open-Science-Pile": 4848.967783877371,
251
+ "Polish-PD": 5554.823732588096,
252
+ "Portuguese-PD": 7966.213906254447,
253
+ "Russian-PD": 7317.784603585679,
254
+ "SEC": 6609.925573778348,
255
+ "Spanish-PD-Books": 6973.064198245695,
256
+ "Spanish-PD-Newspapers": 6792.805958536035,
257
+ "Spanish-Science-Pile": 5180.765941728122,
258
+ "TEDEUTenders": 1960.5122646642726,
259
+ "UN-Digital-Library": 2363.178106772763,
260
+ "US-PD-Books": 7160.006932091078,
261
+ "US-PD-Newspapers": 3847.0731005346215,
262
+ "USPTO": 4812.4279048705785,
263
+ "WTO": 2056.781933452527,
264
+ "Wikipedia": 248.06544549435844,
265
+ "Wikisource": 1301.4556773250395,
266
+ "Youtube-Commons-Whisper": 2795.721011187126,
267
+ "courtlistener": 1581.828365902695,
268
+ "Sanskrit-PD": 6986.59723183391,
269
+ "Arabic-PD": 8636.794425721833,
270
+ "Danish-PD": 7300.523458726646,
271
+ "Persian-PD": 8490.415492957747,
272
+ "Serbian-PD": 7367.637055199296,
273
+ "Urdu-PD": 9741.98903508772,
274
+ "Bengali-PD": 1212.6837944664032,
275
+ "Catalan-PD": 7195.370455856895
276
+ },
277
+ "avg_doc_length_tokens_by_collection": {
278
+ "BNL Newspapers": 751.6761093487729,
279
+ "Caselaw_Access_Project": 2040.0904190681792,
280
+ "Creative Commons Common Crawl": 1114.4571716294943,
281
+ "Czech-PD": 17614.77871115411,
282
+ "Dutch-PD": 13748.217203559443,
283
+ "English-PD": 10381.638214840346,
284
+ "Eurlex": 9549.075761847362,
285
+ "European Open Data": 6461.083927969614,
286
+ "Europeana": 15464.428056158375,
287
+ "Eurovoc": 20684.039880842945,
288
+ "French Open Data": 1961.0421227454915,
289
+ "French-PD-Books": 11253.811981608176,
290
+ "French-PD-Newspapers": 12907.483449523723,
291
+ "French-PD-diverse": 11503.743962332042,
292
+ "French-Science-Pile": 10409.892059692014,
293
+ "GATT_library": 3186.2412849195075,
294
+ "German-PD": 14312.19745578782,
295
+ "German-PD-Newspapers": 13613.168724185643,
296
+ "German-Science-Pile": 10414.335051615177,
297
+ "Github OpenSource": 1641.8176209096255,
298
+ "Greek-PD": 25292.845703322226,
299
+ "Italian-PD": 12182.697339498218,
300
+ "Latin-PD": 16022.935597022499,
301
+ "LoC-PD-Books": 9736.83768538448,
302
+ "Multilingual-PD": 13827.895102752756,
303
+ "NewZealand-PD-Newspapers": 6830.40779555105,
304
+ "OECD": 7367.828079568598,
305
+ "Open-Science-Pile": 9229.943275717835,
306
+ "Polish-PD": 12922.239308327147,
307
+ "Portuguese-PD": 12134.605172037605,
308
+ "Russian-PD": 21635.575020284763,
309
+ "SEC": 8891.926022589872,
310
+ "Spanish-PD-Books": 11505.255798688067,
311
+ "Spanish-PD-Newspapers": 11762.250075263422,
312
+ "Spanish-Science-Pile": 9823.69685287606,
313
+ "TEDEUTenders": 4710.876729422861,
314
+ "UN-Digital-Library": 6194.807183265268,
315
+ "US-PD-Books": 10145.927440945701,
316
+ "US-PD-Newspapers": 5910.646398361565,
317
+ "USPTO": 6583.6474724215295,
318
+ "WTO": 3603.5051481659375,
319
+ "Wikipedia": 613.5905821342737,
320
+ "Wikisource": 3830.1846512983893,
321
+ "Youtube-Commons-Whisper": 3656.5382628617567,
322
+ "courtlistener": 2238.9278779702427,
323
+ "Sanskrit-PD": 13881.666435986159,
324
+ "Arabic-PD": 24275.994990436287,
325
+ "Danish-PD": 14943.348925800397,
326
+ "Persian-PD": 21162.415492957745,
327
+ "Serbian-PD": 17506.61674839683,
328
+ "Urdu-PD": 26056.371710526317,
329
+ "Bengali-PD": 4539.288537549407,
330
+ "Catalan-PD": 13599.072129255626
331
+ },
332
+ "license_distribution": {
333
+ "BNL Newspapers": {
334
+ "Public Domain": 405711
335
+ },
336
+ "Caselaw_Access_Project": {
337
+ "Public Domain": 6775938
338
+ },
339
+ "Creative Commons Common Crawl": {
340
+ "Various open licenses": 84718236
341
+ },
342
+ "Czech-PD": {
343
+ "Public Domain": 42379
344
+ },
345
+ "Dutch-PD": {
346
+ "Public Domain": 2096508
347
+ },
348
+ "English-PD": {
349
+ "Public Domain": 16783328
350
+ },
351
+ "Eurlex": {
352
+ "CC-By": 6796112
353
+ },
354
+ "European Open Data": {
355
+ "Various open data": 1097870
356
+ },
357
+ "Europeana": {
358
+ "Public Domain": 1363501
359
+ },
360
+ "Eurovoc": {
361
+ "CC-By": 1528403
362
+ },
363
+ "French Open Data": {
364
+ "Various open data": 16482805
365
+ },
366
+ "French-PD-Books": {
367
+ "Public Domain": 2139429
368
+ },
369
+ "French-PD-Newspapers": {
370
+ "Public Domain": 8584617
371
+ },
372
+ "French-PD-diverse": {
373
+ "Public Domain": 6047368
374
+ },
375
+ "French-Science-Pile": {
376
+ "Various open science": 4509548
377
+ },
378
+ "GATT_library": {
379
+ "Various open data": 67584
380
+ },
381
+ "German-PD": {
382
+ "Public Domain": 4054143
383
+ },
384
+ "German-PD-Newspapers": {
385
+ "Public Domain": 1354382
386
+ },
387
+ "German-Science-Pile": {
388
+ "Various open science": 749392
389
+ },
390
+ "Github OpenSource": {
391
+ "Various open source": 203834392
392
+ },
393
+ "Greek-PD": {
394
+ "Public Domain": 168351
395
+ },
396
+ "Italian-PD": {
397
+ "Public Domain": 1490809
398
+ },
399
+ "Latin-PD": {
400
+ "Public Domain": 1694844
401
+ },
402
+ "LoC-PD-Books": {
403
+ "Public Domain": 1085312
404
+ },
405
+ "Multilingual-PD": {
406
+ "Public Domain": 607137
407
+ },
408
+ "NewZealand-PD-Newspapers": {
409
+ "Public Domain": 1850594
410
+ },
411
+ "OECD": {
412
+ "Various open data": 78071
413
+ },
414
+ "Open-Science-Pile": {
415
+ "Various open science": 1201355
416
+ },
417
+ "Polish-PD": {
418
+ "Public Domain": 458020
419
+ },
420
+ "Portuguese-PD": {
421
+ "Public Domain": 210826
422
+ },
423
+ "Russian-PD": {
424
+ "Public Domain": 89969
425
+ },
426
+ "SEC": {
427
+ "Public Domain": 1085088
428
+ },
429
+ "Spanish-PD-Books": {
430
+ "Public Domain": 1343666
431
+ },
432
+ "Spanish-PD-Newspapers": {
433
+ "Public Domain": 687585
434
+ },
435
+ "Spanish-Science-Pile": {
436
+ "Various open science": 1681154
437
+ },
438
+ "TEDEUTenders": {
439
+ "Various open data": 137835
440
+ },
441
+ "UN-Digital-Library": {
442
+ "Various open data": 284773
443
+ },
444
+ "US-PD-Books": {
445
+ "Public Domain": 8165790
446
+ },
447
+ "US-PD-Newspapers": {
448
+ "Public Domain": 33719001
449
+ },
450
+ "USPTO": {
451
+ "Public Domain": 30395812
452
+ },
453
+ "WTO": {
454
+ "Various open data": 772411
455
+ },
456
+ "Wikipedia": {
457
+ "CC-By-SA": 61377197
458
+ },
459
+ "Wikisource": {
460
+ "Public Domain": 1426922
461
+ },
462
+ "Youtube-Commons-Whisper": {
463
+ "CC-By": 1134429
464
+ },
465
+ "courtlistener": {
466
+ "Public Domain": 10033356
467
+ },
468
+ "Sanskrit-PD": {
469
+ "Public Domain": 1445
470
+ },
471
+ "Arabic-PD": {
472
+ "Public Domain": 10979
473
+ },
474
+ "Danish-PD": {
475
+ "Public Domain": 35701
476
+ },
477
+ "Persian-PD": {
478
+ "Public Domain": 142
479
+ },
480
+ "Serbian-PD": {
481
+ "Public Domain": 15906
482
+ },
483
+ "Urdu-PD": {
484
+ "Public Domain": 912
485
+ },
486
+ "Bengali-PD": {
487
+ "Public Domain": 253
488
+ },
489
+ "Catalan-PD": {
490
+ "Public Domain": 1733
491
+ }
492
+ }
493
+ }
mattia_stats/stats_by_language.json ADDED
@@ -0,0 +1,1130 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "total_tokens_by_language": {
3
+ "af": 113974285,
4
+ "be": 243765810,
5
+ "bg": 3382601468,
6
+ "bh": 9751711,
7
+ "bi": 6003969,
8
+ "ca": 666655418,
9
+ "co": 16486025,
10
+ "code": 334658896533,
11
+ "cs": 4719731894,
12
+ "cy": 422895680,
13
+ "da": 5335076180,
14
+ "de": 111560851243,
15
+ "el": 11402393122,
16
+ "en": 867033445848,
17
+ "es": 46419509578,
18
+ "et": 4190555546,
19
+ "fi": 3816977643,
20
+ "fr": 266390866637,
21
+ "ga": 940544079,
22
+ "gd": 158340289,
23
+ "gl": 237255066,
24
+ "hi": 370115361,
25
+ "hmn": 10063943,
26
+ "hr": 2343847066,
27
+ "ht": 18344750,
28
+ "hu": 3894399766,
29
+ "ia": 6184088,
30
+ "id": 760610875,
31
+ "ik": 209404,
32
+ "is": 125170011,
33
+ "it": 23945428984,
34
+ "ja": 2285191499,
35
+ "kl": 6297926,
36
+ "ko": 854574547,
37
+ "ky": 58569879,
38
+ "la": 33755509453,
39
+ "lg": 5023059,
40
+ "lt": 2654178338,
41
+ "lv": 2568118394,
42
+ "mg": 42581953,
43
+ "mi": 8119931,
44
+ "mk": 163287318,
45
+ "ms": 153694902,
46
+ "mt": 2552419234,
47
+ "my": 92876205,
48
+ "na": 2257630,
49
+ "ne": 51531044,
50
+ "nl": 29037083208,
51
+ "nn": 118632149,
52
+ "no": 334876633,
53
+ "oc": 43014911,
54
+ "or": 27917592,
55
+ "pl": 11422651049,
56
+ "pt": 9261971528,
57
+ "rm": 23407730,
58
+ "ro": 2923044836,
59
+ "ru": 7268405830,
60
+ "sa": 57969998,
61
+ "sco": 32759343,
62
+ "sk": 3727378777,
63
+ "sl": 2540217198,
64
+ "so": 139093572,
65
+ "sq": 98329825,
66
+ "sr": 772886275,
67
+ "sv": 3345831217,
68
+ "ta": 264330135,
69
+ "te": 246812334,
70
+ "tg": 40072166,
71
+ "uk": 1480561184,
72
+ "un": 2085476426,
73
+ "unknown": 24595787475,
74
+ "ur": 161069273,
75
+ "uz": 228970859,
76
+ "vi": 590330311,
77
+ "war": 142020033,
78
+ "wo": 10787850,
79
+ "xx-Mtei": 4551807,
80
+ "yi": 471540754,
81
+ "zh": 781736244,
82
+ "zh-Hant": 1731425782,
83
+ "az": 217664324,
84
+ "bs": 178441824,
85
+ "gv": 34503298,
86
+ "ie": 5889240,
87
+ "ka": 265325096,
88
+ "kha": 3953880,
89
+ "kk": 180256061,
90
+ "ln": 2049023,
91
+ "rw": 20551340,
92
+ "tk": 12203294,
93
+ "tr": 510076838,
94
+ "aa": 4059704,
95
+ "fj": 3023696,
96
+ "gn": 7529644,
97
+ "ha": 30703589,
98
+ "hy": 459347662,
99
+ "kn": 168685950,
100
+ "mfe": 2901122,
101
+ "qu": 9059044,
102
+ "sg": 2916159,
103
+ "to": 6889438,
104
+ "yo": 20891505,
105
+ "zzp": 3171182,
106
+ "ar": 2019009714,
107
+ "eu": 223569178,
108
+ "fo": 7504737,
109
+ "fy": 94985209,
110
+ "lb": 31787954,
111
+ "mr": 90656293,
112
+ "st": 3772938,
113
+ "tt": 176955686,
114
+ "xh": 38491655,
115
+ "si": 58430687,
116
+ "ak": 10362841,
117
+ "ig": 27476235,
118
+ "iw": 1047969727,
119
+ "vo": 10564600,
120
+ "haw": 12333327,
121
+ "jw": 41741247,
122
+ "mn": 36472170,
123
+ "ba": 86330797,
124
+ "ml": 177153076,
125
+ "th": 297740509,
126
+ "ab": 1800599,
127
+ "sm": 7046857,
128
+ "tlh": 21505129,
129
+ "ny": 5100530,
130
+ "rn": 3246077,
131
+ "sn": 4772698,
132
+ "ve": 3038527,
133
+ "sw": 28952011,
134
+ "tl": 39465579,
135
+ "ay": 2907170,
136
+ "br": 44304908,
137
+ "lo": 8976231,
138
+ "su": 19555706,
139
+ "ts": 4880991,
140
+ "om": 13541059,
141
+ "crs": 1746026,
142
+ "km": 38705068,
143
+ "sd": 13556293,
144
+ "tn": 3954616,
145
+ "za": 2763717,
146
+ "eo": 187952663,
147
+ "ug": 17946817,
148
+ "zu": 7170606,
149
+ "bn": 201899802,
150
+ "fa": 577908527,
151
+ "ss": 1159270,
152
+ "nso": 588563,
153
+ "ks": 664517,
154
+ "ceb": 954332261,
155
+ "pa": 80112176,
156
+ "ps": 40415640,
157
+ "dz": 2519591,
158
+ "am": 14343937,
159
+ "ku": 41937924,
160
+ "xx-Qaai": 118024,
161
+ "iu": 581011,
162
+ "gu": 50175313,
163
+ "xx-Nkoo": 7553384,
164
+ "syr": 42084089,
165
+ "xx-Mand": 3479,
166
+ "nr": 24747,
167
+ "xx-Tfng": 757723,
168
+ "xx-Olck": 19725854,
169
+ "bo": 27142884,
170
+ "chr": 1331556,
171
+ "xx-Java": 873315,
172
+ "ti": 884643,
173
+ "dv": 12783833,
174
+ "xx-Cakm": 15542,
175
+ "as": 17655421,
176
+ "xx-Copt": 634178,
177
+ "xx-Sund": 55842,
178
+ "xx-Runr": 2278,
179
+ "xx-Xsux": 8,
180
+ "xx-Xpeo": 440,
181
+ "xx-Avst": 1097,
182
+ "xx-Lisu": 788,
183
+ "xx-Bugi": 43536,
184
+ "xx-Ital": 2949,
185
+ "xx-Bopo": 16920,
186
+ "xx-Glag": 1065,
187
+ "xx-Goth": 905388,
188
+ "xx-Bali": 13985
189
+ },
190
+ "total_words_by_language": {
191
+ "af": 57166176,
192
+ "be": 66879811,
193
+ "bg": 1433235908,
194
+ "bh": 2087112,
195
+ "bi": 3672252,
196
+ "ca": 336218303,
197
+ "co": 7415011,
198
+ "code": 95487571039,
199
+ "cs": 1944981047,
200
+ "cy": 188039124,
201
+ "da": 2199943330,
202
+ "de": 56465823023,
203
+ "el": 3805704293,
204
+ "en": 591662278630,
205
+ "es": 26213820642,
206
+ "et": 1540618116,
207
+ "fi": 1315868628,
208
+ "fr": 159646843666,
209
+ "ga": 365844438,
210
+ "gd": 68473181,
211
+ "gl": 109138840,
212
+ "hi": 102378151,
213
+ "hmn": 5816534,
214
+ "hr": 969545020,
215
+ "ht": 8664524,
216
+ "hu": 1444802510,
217
+ "ia": 3630501,
218
+ "id": 309105138,
219
+ "ik": 107510,
220
+ "is": 48856724,
221
+ "it": 12866016550,
222
+ "ja": 175358974,
223
+ "kl": 3405546,
224
+ "ko": 181458015,
225
+ "ky": 13569255,
226
+ "la": 15293894259,
227
+ "lg": 2547091,
228
+ "lt": 1017627443,
229
+ "lv": 964260522,
230
+ "mg": 16857951,
231
+ "mi": 4419494,
232
+ "mk": 58904016,
233
+ "ms": 63487546,
234
+ "mt": 912293019,
235
+ "my": 7085068,
236
+ "na": 1308146,
237
+ "ne": 9263999,
238
+ "nl": 15287157758,
239
+ "nn": 52686459,
240
+ "no": 153206392,
241
+ "oc": 20260823,
242
+ "or": 3143872,
243
+ "pl": 4804302998,
244
+ "pt": 4865687926,
245
+ "rm": 11629829,
246
+ "ro": 1408132400,
247
+ "ru": 2554252065,
248
+ "sa": 14994047,
249
+ "sco": 18733640,
250
+ "sk": 1570972099,
251
+ "sl": 1092007249,
252
+ "so": 18692955,
253
+ "sq": 39801365,
254
+ "sr": 279033260,
255
+ "sv": 1507840390,
256
+ "ta": 34522905,
257
+ "te": 36862226,
258
+ "tg": 10372855,
259
+ "uk": 459446024,
260
+ "un": 678015287,
261
+ "unknown": 12522706498,
262
+ "ur": 54247826,
263
+ "uz": 67020349,
264
+ "vi": 263930866,
265
+ "war": 67878370,
266
+ "wo": 6116088,
267
+ "xx-Mtei": 441693,
268
+ "yi": 124201020,
269
+ "zh": 38545956,
270
+ "zh-Hant": 74821132,
271
+ "az": 60214921,
272
+ "bs": 72048996,
273
+ "gv": 9417505,
274
+ "ie": 2862388,
275
+ "ka": 50660853,
276
+ "kha": 1987809,
277
+ "kk": 40046562,
278
+ "ln": 1058310,
279
+ "rw": 9790847,
280
+ "tk": 3442723,
281
+ "tr": 162897203,
282
+ "aa": 1901797,
283
+ "fj": 1409414,
284
+ "gn": 3338409,
285
+ "ha": 14031825,
286
+ "hy": 92797595,
287
+ "kn": 21851755,
288
+ "mfe": 1745440,
289
+ "qu": 3064023,
290
+ "sg": 1109539,
291
+ "to": 4106151,
292
+ "yo": 9758748,
293
+ "zzp": 1712210,
294
+ "ar": 655175511,
295
+ "eu": 82511028,
296
+ "fo": 3202070,
297
+ "fy": 46964670,
298
+ "lb": 13845471,
299
+ "mr": 14945178,
300
+ "st": 1946019,
301
+ "tt": 50855346,
302
+ "xh": 16849747,
303
+ "si": 7905470,
304
+ "ak": 4463407,
305
+ "ig": 11135368,
306
+ "iw": 322044238,
307
+ "vo": 4682867,
308
+ "haw": 6822150,
309
+ "jw": 16490019,
310
+ "mn": 8622458,
311
+ "ba": 20782437,
312
+ "ml": 20162108,
313
+ "th": 24103879,
314
+ "ab": 316973,
315
+ "sm": 4043556,
316
+ "tlh": 10628300,
317
+ "ny": 2116051,
318
+ "rn": 1896699,
319
+ "sn": 1785551,
320
+ "ve": 1614958,
321
+ "sw": 12050461,
322
+ "tl": 18832652,
323
+ "ay": 975008,
324
+ "br": 19416532,
325
+ "lo": 324356,
326
+ "su": 7565298,
327
+ "ts": 3150293,
328
+ "om": 5443759,
329
+ "crs": 935865,
330
+ "km": 1612069,
331
+ "sd": 3921443,
332
+ "tn": 1827519,
333
+ "za": 1225199,
334
+ "eo": 79718542,
335
+ "ug": 2775052,
336
+ "zu": 1947097,
337
+ "bn": 32617000,
338
+ "fa": 181741550,
339
+ "ss": 562450,
340
+ "nso": 273872,
341
+ "ks": 138412,
342
+ "ceb": 557691944,
343
+ "pa": 10172879,
344
+ "ps": 12825615,
345
+ "dz": 69714,
346
+ "am": 1407170,
347
+ "ku": 8450416,
348
+ "xx-Qaai": 21436,
349
+ "iu": 46111,
350
+ "gu": 7196470,
351
+ "xx-Nkoo": 724229,
352
+ "syr": 6487397,
353
+ "xx-Mand": 76,
354
+ "nr": 15916,
355
+ "xx-Tfng": 87786,
356
+ "xx-Olck": 2011091,
357
+ "bo": 481531,
358
+ "chr": 128823,
359
+ "xx-Java": 33671,
360
+ "ti": 143442,
361
+ "dv": 767980,
362
+ "xx-Cakm": 3617,
363
+ "as": 3122987,
364
+ "xx-Copt": 83951,
365
+ "xx-Sund": 4138,
366
+ "xx-Runr": 219,
367
+ "xx-Xsux": 1,
368
+ "xx-Xpeo": 158,
369
+ "xx-Avst": 161,
370
+ "xx-Lisu": 245,
371
+ "xx-Bugi": 4116,
372
+ "xx-Ital": 290,
373
+ "xx-Bopo": 2831,
374
+ "xx-Glag": 21,
375
+ "xx-Goth": 38328,
376
+ "xx-Bali": 121
377
+ },
378
+ "doc_count_by_language": {
379
+ "af": 118771,
380
+ "be": 331149,
381
+ "bg": 571174,
382
+ "bh": 20063,
383
+ "bi": 5586,
384
+ "ca": 763474,
385
+ "co": 61194,
386
+ "code": 203834392,
387
+ "cs": 1006717,
388
+ "cy": 312057,
389
+ "da": 829906,
390
+ "de": 11547094,
391
+ "el": 848937,
392
+ "en": 207202733,
393
+ "es": 6314035,
394
+ "et": 588299,
395
+ "fi": 885067,
396
+ "fr": 39026377,
397
+ "ga": 129569,
398
+ "gd": 29165,
399
+ "gl": 285263,
400
+ "hi": 220471,
401
+ "hmn": 1893,
402
+ "hr": 596481,
403
+ "ht": 286375,
404
+ "hu": 832376,
405
+ "ia": 6341,
406
+ "id": 990118,
407
+ "ik": 723,
408
+ "is": 72261,
409
+ "it": 3765197,
410
+ "ja": 1410449,
411
+ "kl": 4987,
412
+ "ko": 674100,
413
+ "ky": 93416,
414
+ "la": 2316979,
415
+ "lg": 4554,
416
+ "lt": 500255,
417
+ "lv": 366421,
418
+ "mg": 101134,
419
+ "mi": 13321,
420
+ "mk": 136878,
421
+ "ms": 353380,
422
+ "mt": 235322,
423
+ "my": 125984,
424
+ "na": 823,
425
+ "ne": 90335,
426
+ "nl": 4363406,
427
+ "nn": 232507,
428
+ "no": 560736,
429
+ "oc": 111310,
430
+ "or": 16461,
431
+ "pl": 2573223,
432
+ "pt": 1716981,
433
+ "rm": 23521,
434
+ "ro": 693416,
435
+ "ru": 2339157,
436
+ "sa": 21821,
437
+ "sco": 12982,
438
+ "sk": 575159,
439
+ "sl": 444608,
440
+ "so": 15451,
441
+ "sq": 118308,
442
+ "sr": 778043,
443
+ "sv": 2806000,
444
+ "ta": 162012,
445
+ "te": 93720,
446
+ "tg": 114948,
447
+ "uk": 1316913,
448
+ "un": 1083662,
449
+ "unknown": 2743262,
450
+ "ur": 254357,
451
+ "uz": 471038,
452
+ "vi": 1507722,
453
+ "war": 1599968,
454
+ "wo": 5306,
455
+ "xx-Mtei": 10822,
456
+ "yi": 60491,
457
+ "zh": 766972,
458
+ "zh-Hant": 938505,
459
+ "az": 225337,
460
+ "bs": 315868,
461
+ "gv": 12292,
462
+ "ie": 5841,
463
+ "ka": 189632,
464
+ "kha": 2943,
465
+ "kk": 246658,
466
+ "ln": 6153,
467
+ "rw": 30254,
468
+ "tk": 13667,
469
+ "tr": 589588,
470
+ "aa": 2988,
471
+ "fj": 2512,
472
+ "gn": 12392,
473
+ "ha": 40579,
474
+ "hy": 309833,
475
+ "kn": 42088,
476
+ "mfe": 1298,
477
+ "qu": 27215,
478
+ "sg": 14610,
479
+ "to": 3812,
480
+ "yo": 41386,
481
+ "zzp": 1421,
482
+ "ar": 2911919,
483
+ "eu": 415738,
484
+ "fo": 13903,
485
+ "fy": 60985,
486
+ "lb": 66076,
487
+ "mr": 104373,
488
+ "st": 4680,
489
+ "tt": 513152,
490
+ "xh": 9554,
491
+ "si": 22700,
492
+ "ak": 8346,
493
+ "ig": 23347,
494
+ "iw": 437078,
495
+ "vo": 38991,
496
+ "haw": 5138,
497
+ "jw": 95228,
498
+ "mn": 34437,
499
+ "ba": 65119,
500
+ "ml": 87773,
501
+ "th": 161041,
502
+ "ab": 7367,
503
+ "sm": 3666,
504
+ "tlh": 5019,
505
+ "ny": 16851,
506
+ "rn": 2312,
507
+ "sn": 11529,
508
+ "ve": 6818,
509
+ "sw": 78882,
510
+ "tl": 95231,
511
+ "ay": 5515,
512
+ "br": 86938,
513
+ "lo": 4852,
514
+ "su": 65232,
515
+ "ts": 1883,
516
+ "om": 6948,
517
+ "crs": 1493,
518
+ "km": 11905,
519
+ "sd": 17170,
520
+ "tn": 7124,
521
+ "za": 3696,
522
+ "eo": 364083,
523
+ "ug": 10334,
524
+ "zu": 11847,
525
+ "bn": 149479,
526
+ "fa": 1040411,
527
+ "ss": 1808,
528
+ "nso": 3630,
529
+ "ks": 3220,
530
+ "ceb": 5704850,
531
+ "pa": 47198,
532
+ "ps": 21258,
533
+ "dz": 504,
534
+ "am": 13655,
535
+ "ku": 53356,
536
+ "xx-Qaai": 36,
537
+ "iu": 701,
538
+ "gu": 31016,
539
+ "xx-Nkoo": 1588,
540
+ "syr": 2725,
541
+ "xx-Mand": 1,
542
+ "nr": 18,
543
+ "xx-Tfng": 25,
544
+ "xx-Olck": 8436,
545
+ "bo": 12860,
546
+ "chr": 1106,
547
+ "xx-Java": 154,
548
+ "ti": 398,
549
+ "dv": 4307,
550
+ "xx-Cakm": 3,
551
+ "as": 10131,
552
+ "xx-Copt": 12,
553
+ "xx-Sund": 19,
554
+ "xx-Runr": 3,
555
+ "xx-Xsux": 1,
556
+ "xx-Xpeo": 1,
557
+ "xx-Avst": 1,
558
+ "xx-Lisu": 1,
559
+ "xx-Bugi": 62,
560
+ "xx-Ital": 1,
561
+ "xx-Bopo": 21,
562
+ "xx-Glag": 1,
563
+ "xx-Goth": 995,
564
+ "xx-Bali": 25
565
+ },
566
+ "compression_rate_by_language": {
567
+ "af": 1.9937363835565982,
568
+ "be": 3.644834014258802,
569
+ "bg": 2.3601149323144086,
570
+ "bh": 4.6723467643327234,
571
+ "bi": 1.6349556076216991,
572
+ "ca": 1.9828052549536543,
573
+ "co": 2.223331158915341,
574
+ "code": 3.504737767351054,
575
+ "cs": 2.4266210209502366,
576
+ "cy": 2.2489770798974793,
577
+ "da": 2.425097095569275,
578
+ "de": 1.97572346014612,
579
+ "el": 2.9961321858277126,
580
+ "en": 1.4654195090071058,
581
+ "es": 1.7708028986673647,
582
+ "et": 2.7200482082348825,
583
+ "fi": 2.900728508742896,
584
+ "fr": 1.6686259528833596,
585
+ "ga": 2.5708852761074366,
586
+ "gd": 2.312442429102279,
587
+ "gl": 2.1738829732843046,
588
+ "hi": 3.6151791899425882,
589
+ "hmn": 1.73023023676987,
590
+ "hr": 2.4174711000011118,
591
+ "ht": 2.1172253663328764,
592
+ "hu": 2.695454734502088,
593
+ "ia": 1.7033704163695313,
594
+ "id": 2.460686612721397,
595
+ "ik": 1.94776299879081,
596
+ "is": 2.5619812535936712,
597
+ "it": 1.8611377415024388,
598
+ "ja": 13.03150586978229,
599
+ "kl": 1.849314617979026,
600
+ "ko": 4.709489117909727,
601
+ "ky": 4.316366594923598,
602
+ "la": 2.2071232402522916,
603
+ "lg": 1.972076773071712,
604
+ "lt": 2.6082023988812573,
605
+ "lv": 2.6633034697649896,
606
+ "mg": 2.525926964670855,
607
+ "mi": 1.8372987948394093,
608
+ "mk": 2.772091430913641,
609
+ "ms": 2.420866952394096,
610
+ "mt": 2.79780638549422,
611
+ "my": 13.108724573991386,
612
+ "na": 1.7258241817044886,
613
+ "ne": 5.562505350011372,
614
+ "nl": 1.8994428962966943,
615
+ "nn": 2.251662974731325,
616
+ "no": 2.185787607347349,
617
+ "oc": 2.123058426599946,
618
+ "or": 8.88000274820349,
619
+ "pl": 2.3775875613497264,
620
+ "pt": 1.9035276550533133,
621
+ "rm": 2.012732087462335,
622
+ "ro": 2.0758309630543264,
623
+ "ru": 2.8456102393324287,
624
+ "sa": 3.86620089959702,
625
+ "sco": 1.748690750969913,
626
+ "sk": 2.372657528018898,
627
+ "sl": 2.326190783372721,
628
+ "so": 7.440962223468681,
629
+ "sq": 2.4705138881543385,
630
+ "sr": 2.76987150205678,
631
+ "sv": 2.2189558252912964,
632
+ "ta": 7.656659687242427,
633
+ "te": 6.695535261489634,
634
+ "tg": 3.863176145815207,
635
+ "uk": 3.2224921027937765,
636
+ "un": 3.075854580252259,
637
+ "unknown": 1.9640951801376316,
638
+ "ur": 2.9691378415791263,
639
+ "uz": 3.416437879188006,
640
+ "vi": 2.236685386392056,
641
+ "war": 2.0922722952834607,
642
+ "wo": 1.7638480675883015,
643
+ "xx-Mtei": 10.305363680203218,
644
+ "yi": 3.7965932485900677,
645
+ "zh": 20.280629283134136,
646
+ "zh-Hant": 23.14086589868755,
647
+ "az": 3.6147904935389685,
648
+ "bs": 2.4766732904924864,
649
+ "gv": 3.663740874042541,
650
+ "ie": 2.0574569205851896,
651
+ "ka": 5.237280469793906,
652
+ "kha": 1.9890643416948006,
653
+ "kk": 4.501161947435088,
654
+ "ln": 1.9361274106830701,
655
+ "rw": 2.0990359669597534,
656
+ "tk": 3.5446633377126187,
657
+ "tr": 3.131280516829991,
658
+ "aa": 2.134667369861242,
659
+ "fj": 2.1453568646260077,
660
+ "gn": 2.2554588128656494,
661
+ "ha": 2.188139390278884,
662
+ "hy": 4.949995331236763,
663
+ "kn": 7.719560740087009,
664
+ "mfe": 1.66211499679164,
665
+ "qu": 2.956584855923079,
666
+ "sg": 2.628261827659956,
667
+ "to": 1.6778335721214344,
668
+ "yo": 2.1407976719964488,
669
+ "zzp": 1.8520987495692702,
670
+ "ar": 3.0816318377321035,
671
+ "eu": 2.709567235060991,
672
+ "fo": 2.3437142223624092,
673
+ "fy": 2.022482197788252,
674
+ "lb": 2.29590990440123,
675
+ "mr": 6.065922600587293,
676
+ "st": 1.9387981309535005,
677
+ "tt": 3.479588674905486,
678
+ "xh": 2.2844055165932167,
679
+ "si": 7.391171808886758,
680
+ "ak": 2.3217333754237512,
681
+ "ig": 2.4674743573809144,
682
+ "iw": 3.2541173023564545,
683
+ "vo": 2.2560111145586665,
684
+ "haw": 1.8078357995646535,
685
+ "jw": 2.5313037541072574,
686
+ "mn": 4.229904048242392,
687
+ "ba": 4.154026642784963,
688
+ "ml": 8.786436219863518,
689
+ "th": 12.352389795849872,
690
+ "ab": 5.680606865568992,
691
+ "sm": 1.742737580486087,
692
+ "tlh": 2.0233837020031427,
693
+ "ny": 2.4104003164384977,
694
+ "rn": 1.7114349720224453,
695
+ "sn": 2.6729552950321778,
696
+ "ve": 1.8814897972578855,
697
+ "sw": 2.402564598980902,
698
+ "tl": 2.0955932812861406,
699
+ "ay": 2.981688355377597,
700
+ "br": 2.281813662707635,
701
+ "lo": 27.674009421746476,
702
+ "su": 2.5849221008875,
703
+ "ts": 1.5493768357419453,
704
+ "om": 2.4874464501459377,
705
+ "crs": 1.8656814818376581,
706
+ "km": 24.009560384822237,
707
+ "sd": 3.4569654588884755,
708
+ "tn": 2.1639260658849513,
709
+ "za": 2.255729069318535,
710
+ "eo": 2.3577032179038095,
711
+ "ug": 6.467200254265506,
712
+ "zu": 3.682716372117054,
713
+ "bn": 6.190017536867278,
714
+ "fa": 3.1798371203502995,
715
+ "ss": 2.06110765401369,
716
+ "nso": 2.1490440789858036,
717
+ "ks": 4.801007138109412,
718
+ "ceb": 1.7112175839498946,
719
+ "pa": 7.875074106356716,
720
+ "ps": 3.151165850526466,
721
+ "dz": 36.14182230255042,
722
+ "am": 10.193464186985226,
723
+ "ku": 4.962823605370434,
724
+ "xx-Qaai": 5.505877962306401,
725
+ "iu": 12.600268916310641,
726
+ "gu": 6.972211792726156,
727
+ "xx-Nkoo": 10.42955197872496,
728
+ "syr": 6.487053127779909,
729
+ "xx-Mand": "N/A",
730
+ "nr": "N/A",
731
+ "xx-Tfng": 8.631478823502608,
732
+ "xx-Olck": 9.808533775945495,
733
+ "bo": 56.36788493368028,
734
+ "chr": 10.336321930090124,
735
+ "xx-Java": 25.93671111639096,
736
+ "ti": 6.167252269209855,
737
+ "dv": 16.64604937628584,
738
+ "xx-Cakm": "N/A",
739
+ "as": 5.653376398941142,
740
+ "xx-Copt": 7.554144679634549,
741
+ "xx-Sund": "N/A",
742
+ "xx-Runr": "N/A",
743
+ "xx-Xsux": "N/A",
744
+ "xx-Xpeo": "N/A",
745
+ "xx-Avst": "N/A",
746
+ "xx-Lisu": "N/A",
747
+ "xx-Bugi": "N/A",
748
+ "xx-Ital": "N/A",
749
+ "xx-Bopo": "N/A",
750
+ "xx-Glag": "N/A",
751
+ "xx-Goth": 23.622103944896683,
752
+ "xx-Bali": "N/A"
753
+ },
754
+ "avg_doc_length_words_by_language": {
755
+ "af": 481.31426021503563,
756
+ "be": 201.96289585654796,
757
+ "bg": 2509.2807235623472,
758
+ "bh": 104.02791207695758,
759
+ "bi": 657.4027926960258,
760
+ "ca": 440.3795060473572,
761
+ "co": 121.17219008399516,
762
+ "code": 468.456623546629,
763
+ "cs": 1932.0037776256881,
764
+ "cy": 602.5794133764024,
765
+ "da": 2650.834347504416,
766
+ "de": 4890.046190236262,
767
+ "el": 4482.905437034786,
768
+ "en": 2855.475263591238,
769
+ "es": 4151.674902340579,
770
+ "et": 2618.7671847138954,
771
+ "fi": 1486.7446509699266,
772
+ "fr": 4090.742106703884,
773
+ "ga": 2823.5491359816006,
774
+ "gd": 2347.786079204526,
775
+ "gl": 382.5902412861114,
776
+ "hi": 464.36107696703874,
777
+ "hmn": 3072.6539883782357,
778
+ "hr": 1625.441581542413,
779
+ "ht": 30.255867306852902,
780
+ "hu": 1735.757049698694,
781
+ "ia": 572.5439205172686,
782
+ "id": 312.19020157193387,
783
+ "ik": 148.69986168741355,
784
+ "is": 676.1146953405018,
785
+ "it": 3417.0898760410146,
786
+ "ja": 124.3284755421855,
787
+ "kl": 682.8847002205734,
788
+ "ko": 269.18560302625724,
789
+ "ky": 145.2562194913077,
790
+ "la": 6600.791055508056,
791
+ "lg": 559.308519982433,
792
+ "lt": 2034.2174351080948,
793
+ "lv": 2631.5645718995365,
794
+ "mg": 166.68925386121384,
795
+ "mi": 331.76893626604607,
796
+ "mk": 430.3395432428878,
797
+ "ms": 179.65800554643727,
798
+ "mt": 3876.7859316171034,
799
+ "my": 56.23783972567945,
800
+ "na": 1589.4848116646415,
801
+ "ne": 102.55160236895998,
802
+ "nl": 3503.4919413870725,
803
+ "nn": 226.60160339258604,
804
+ "no": 273.2237487873081,
805
+ "oc": 182.02158835684125,
806
+ "or": 190.98912581252657,
807
+ "pl": 1867.0371740031858,
808
+ "pt": 2833.8624166487575,
809
+ "rm": 494.4444964074657,
810
+ "ro": 2030.7180682303265,
811
+ "ru": 1091.9540950008914,
812
+ "sa": 687.1383987901563,
813
+ "sco": 1443.047296256355,
814
+ "sk": 2731.3701063532,
815
+ "sl": 2456.112460864402,
816
+ "so": 1209.8216943887128,
817
+ "sq": 336.4215860296852,
818
+ "sr": 358.63475412027356,
819
+ "sv": 537.3629330007128,
820
+ "ta": 213.08856751351752,
821
+ "te": 393.3229406743491,
822
+ "tg": 90.23954309774855,
823
+ "uk": 348.88107566710937,
824
+ "un": 625.6704461354186,
825
+ "unknown": 4564.896279684551,
826
+ "ur": 213.27435848040352,
827
+ "uz": 142.28225535944023,
828
+ "vi": 175.05273916544297,
829
+ "war": 42.42482974659493,
830
+ "wo": 1152.6739540143235,
831
+ "xx-Mtei": 40.814359637774906,
832
+ "yi": 2053.214858408689,
833
+ "zh": 50.25731838971957,
834
+ "zh-Hant": 79.72374361351298,
835
+ "az": 267.22163248822875,
836
+ "bs": 228.09843352286398,
837
+ "gv": 766.1491213797592,
838
+ "ie": 490.05101866118815,
839
+ "ka": 267.1535025734053,
840
+ "kha": 675.4362895005097,
841
+ "kk": 162.35663144921307,
842
+ "ln": 171.99902486591907,
843
+ "rw": 323.62157070139483,
844
+ "tk": 251.90041706299846,
845
+ "tr": 276.289888871551,
846
+ "aa": 636.4782463186077,
847
+ "fj": 561.0724522292994,
848
+ "gn": 269.4003389283409,
849
+ "ha": 345.790310259001,
850
+ "hy": 299.50842873418907,
851
+ "kn": 519.1920499904961,
852
+ "mfe": 1344.7149460708783,
853
+ "qu": 112.58581664523241,
854
+ "sg": 75.94380561259412,
855
+ "to": 1077.164480587618,
856
+ "yo": 235.79828927656695,
857
+ "zzp": 1204.933145672062,
858
+ "ar": 224.99784884126242,
859
+ "eu": 198.46881449374365,
860
+ "fo": 230.31503991944186,
861
+ "fy": 770.1019922931869,
862
+ "lb": 209.5385767903626,
863
+ "mr": 143.19007789370815,
864
+ "st": 415.81602564102565,
865
+ "tt": 99.10386396233474,
866
+ "xh": 1763.6327192798828,
867
+ "si": 348.25859030837006,
868
+ "ak": 534.7959501557632,
869
+ "ig": 476.9507003041076,
870
+ "iw": 736.81182306133,
871
+ "vo": 120.10122848862558,
872
+ "haw": 1327.783184118334,
873
+ "jw": 173.1635548368127,
874
+ "mn": 250.3835409588524,
875
+ "ba": 319.14551820513213,
876
+ "ml": 229.70740432707098,
877
+ "th": 149.67541806123907,
878
+ "ab": 43.026062169132615,
879
+ "sm": 1102.9885433715222,
880
+ "tlh": 2117.613070332736,
881
+ "ny": 125.5742092457421,
882
+ "rn": 820.3715397923876,
883
+ "sn": 154.874750628849,
884
+ "ve": 236.86682311528307,
885
+ "sw": 152.7656626353287,
886
+ "tl": 197.757578939631,
887
+ "ay": 176.79202175883952,
888
+ "br": 223.3376889277416,
889
+ "lo": 66.84995877988459,
890
+ "su": 115.97525754231052,
891
+ "ts": 1673.0180562931491,
892
+ "om": 783.5001439263098,
893
+ "crs": 626.8352310783657,
894
+ "km": 135.41108777824442,
895
+ "sd": 228.38922539312756,
896
+ "tn": 256.52989893318363,
897
+ "za": 331.4932359307359,
898
+ "eo": 218.95705649535958,
899
+ "ug": 268.53609444551967,
900
+ "zu": 164.35359162657213,
901
+ "bn": 218.20456385177852,
902
+ "fa": 174.68245722123277,
903
+ "ss": 311.0896017699115,
904
+ "nso": 75.44683195592286,
905
+ "ks": 42.98509316770186,
906
+ "ceb": 97.75751229217245,
907
+ "pa": 215.5362303487436,
908
+ "ps": 603.3312164832063,
909
+ "dz": 138.32142857142858,
910
+ "am": 103.05162943976565,
911
+ "ku": 158.37798935452432,
912
+ "xx-Qaai": 595.4444444444445,
913
+ "iu": 65.77888730385165,
914
+ "gu": 232.02443899922622,
915
+ "xx-Nkoo": 456.06360201511336,
916
+ "syr": 2380.696146788991,
917
+ "xx-Mand": "N/A",
918
+ "nr": "N/A",
919
+ "xx-Tfng": 3511.44,
920
+ "xx-Olck": 238.3939070649597,
921
+ "bo": 37.44409020217729,
922
+ "chr": 116.47649186256781,
923
+ "xx-Java": 218.64285714285714,
924
+ "ti": 360.4070351758794,
925
+ "dv": 178.309728349199,
926
+ "xx-Cakm": "N/A",
927
+ "as": 308.2604876122791,
928
+ "xx-Copt": 6995.916666666667,
929
+ "xx-Sund": "N/A",
930
+ "xx-Runr": "N/A",
931
+ "xx-Xsux": "N/A",
932
+ "xx-Xpeo": "N/A",
933
+ "xx-Avst": "N/A",
934
+ "xx-Lisu": "N/A",
935
+ "xx-Bugi": "N/A",
936
+ "xx-Ital": "N/A",
937
+ "xx-Bopo": "N/A",
938
+ "xx-Glag": "N/A",
939
+ "xx-Goth": 38.52060301507538,
940
+ "xx-Bali": "N/A"
941
+ },
942
+ "avg_doc_length_tokens_by_language": {
943
+ "af": 959.6137525153447,
944
+ "be": 736.1212324361542,
945
+ "bg": 5922.190905048199,
946
+ "bh": 486.05447839306186,
947
+ "bi": 1074.8243823845328,
948
+ "ca": 873.1867987645945,
949
+ "co": 269.4059058077589,
950
+ "code": 1641.8176209096255,
951
+ "cs": 4688.240979341761,
952
+ "cy": 1355.1872895015974,
953
+ "da": 6428.530676968235,
954
+ "de": 9661.378979247938,
955
+ "el": 13431.37726592197,
956
+ "en": 4184.469158753808,
957
+ "es": 7351.797951389246,
958
+ "et": 7123.1729885653385,
959
+ "fi": 4312.642594289472,
960
+ "fr": 6825.91844579885,
961
+ "ga": 7259.020900060971,
962
+ "gd": 5429.120144008229,
963
+ "gl": 831.7064112766114,
964
+ "hi": 1678.7485020705672,
965
+ "hmn": 5316.398837823561,
966
+ "hr": 3929.458048118884,
967
+ "ht": 64.05848974247054,
968
+ "hu": 4678.65455755572,
969
+ "ia": 975.2543762813436,
970
+ "id": 768.2022496308521,
971
+ "ik": 289.63208852005533,
972
+ "is": 1732.1931747415617,
973
+ "it": 6359.674934405823,
974
+ "ja": 1620.1872588090744,
975
+ "kl": 1262.8686585121316,
976
+ "ko": 1267.726668150126,
977
+ "ky": 626.9790935171706,
978
+ "la": 14568.759342661284,
979
+ "lg": 1102.9993412384717,
980
+ "lt": 5305.650794095011,
981
+ "lv": 7008.655055250654,
982
+ "mg": 421.04488104890544,
983
+ "mi": 609.5586667667593,
984
+ "mk": 1192.9405602068996,
985
+ "ms": 434.92812836040525,
986
+ "mt": 10846.496434672492,
987
+ "my": 737.2063516002032,
988
+ "na": 2743.171324422843,
989
+ "ne": 570.4438368295788,
990
+ "nl": 6654.682880300389,
991
+ "nn": 510.23044037383823,
992
+ "no": 597.2090841322832,
993
+ "oc": 386.4424669840985,
994
+ "or": 1695.983962092218,
995
+ "pl": 4439.044361487519,
996
+ "pt": 5394.335480707125,
997
+ "rm": 995.1843033884613,
998
+ "ro": 4215.42744326638,
999
+ "ru": 3107.275753615512,
1000
+ "sa": 2656.615095550158,
1001
+ "sco": 2523.443460175628,
1002
+ "sk": 6480.605844644699,
1003
+ "sl": 5713.386169389664,
1004
+ "so": 9002.237525079283,
1005
+ "sq": 831.1342005612469,
1006
+ "sr": 993.372185084886,
1007
+ "sv": 1192.3846104775482,
1008
+ "ta": 1631.5466446929856,
1009
+ "te": 2633.5076184379,
1010
+ "tg": 348.6112503044855,
1011
+ "uk": 1124.266511151458,
1012
+ "un": 1924.4713074741016,
1013
+ "unknown": 8965.890780756632,
1014
+ "ur": 633.2409684026782,
1015
+ "uz": 486.0984867462922,
1016
+ "vi": 391.5379035392466,
1017
+ "war": 88.76429591091822,
1018
+ "wo": 2033.1417263475312,
1019
+ "xx-Mtei": 420.60681944187763,
1020
+ "yi": 7795.22166933924,
1021
+ "zh": 1019.2500430263425,
1022
+ "zh-Hant": 1844.8764599016522,
1023
+ "az": 965.9502167864132,
1024
+ "bs": 564.9252979092532,
1025
+ "gv": 2806.9718516108037,
1026
+ "ie": 1008.2588597842835,
1027
+ "ka": 1399.1578214647318,
1028
+ "kha": 1343.48623853211,
1029
+ "kk": 730.7934913929408,
1030
+ "ln": 333.01202665366486,
1031
+ "rw": 679.2933165862365,
1032
+ "tk": 892.9021731177288,
1033
+ "tr": 865.141146020611,
1034
+ "aa": 1358.669344042838,
1035
+ "fj": 1203.7006369426751,
1036
+ "gn": 607.6213686249193,
1037
+ "ha": 756.6373986544764,
1038
+ "hy": 1482.5653239002947,
1039
+ "kn": 4007.9345656719256,
1040
+ "mfe": 2235.070878274268,
1041
+ "qu": 332.8695204850266,
1042
+ "sg": 199.60020533880905,
1043
+ "to": 1807.3027282266528,
1044
+ "yo": 504.7964287440197,
1045
+ "zzp": 2231.655172413793,
1046
+ "ar": 693.3605344104695,
1047
+ "eu": 537.7645969336457,
1048
+ "fo": 539.792634683162,
1049
+ "fy": 1557.5175698942362,
1050
+ "lb": 481.08169380713116,
1051
+ "mr": 868.5799296752991,
1052
+ "st": 806.1833333333333,
1053
+ "tt": 344.8406826827139,
1054
+ "xh": 4028.8523131672596,
1055
+ "si": 2574.039074889868,
1056
+ "ak": 1241.6536065180926,
1057
+ "ig": 1176.8636227352551,
1058
+ "iw": 2397.6721020046766,
1059
+ "vo": 270.94970634248926,
1060
+ "haw": 2400.4139743090695,
1061
+ "jw": 438.3295564329819,
1062
+ "mn": 1059.0983535151145,
1063
+ "ba": 1325.7389855495323,
1064
+ "ml": 2018.30945735021,
1065
+ "th": 1848.849106749213,
1066
+ "ab": 244.41414415637303,
1067
+ "sm": 1922.2195853791598,
1068
+ "tlh": 4284.743773660091,
1069
+ "ny": 302.6841137024509,
1070
+ "rn": 1404.0125432525952,
1071
+ "sn": 413.97328476017003,
1072
+ "ve": 445.66251100029336,
1073
+ "sw": 367.0293729875003,
1074
+ "tl": 414.4194537493043,
1075
+ "ay": 527.1387126019946,
1076
+ "br": 509.61498999286846,
1077
+ "lo": 1850.0063891178895,
1078
+ "su": 299.7870063772382,
1079
+ "ts": 2592.1354221986194,
1080
+ "om": 1948.9146516983305,
1081
+ "crs": 1169.4748827863361,
1082
+ "km": 3251.1606887862245,
1083
+ "sd": 789.5336633663367,
1084
+ "tn": 555.1117349803482,
1085
+ "za": 747.7589285714286,
1086
+ "eo": 516.2357566818555,
1087
+ "ug": 1736.6766982775305,
1088
+ "zu": 605.2676626994175,
1089
+ "bn": 1350.6900768669846,
1090
+ "fa": 555.4617617460792,
1091
+ "ss": 641.1891592920354,
1092
+ "nso": 162.13856749311296,
1093
+ "ks": 206.37173913043478,
1094
+ "ceb": 167.28437399756348,
1095
+ "pa": 1697.3637866011272,
1096
+ "ps": 1901.1967259384703,
1097
+ "dz": 4999.188492063492,
1098
+ "am": 1050.4530941047235,
1099
+ "ku": 786.0020241397406,
1100
+ "xx-Qaai": 3278.4444444444443,
1101
+ "iu": 828.8316690442225,
1102
+ "gu": 1617.7235297910756,
1103
+ "xx-Nkoo": 4756.539042821159,
1104
+ "syr": 15443.702385321101,
1105
+ "xx-Mand": "N/A",
1106
+ "nr": "N/A",
1107
+ "xx-Tfng": 30308.92,
1108
+ "xx-Olck": 2338.294689426268,
1109
+ "bo": 2110.644167962675,
1110
+ "chr": 1203.9385171790236,
1111
+ "xx-Java": 5670.876623376624,
1112
+ "ti": 2222.721105527638,
1113
+ "dv": 2968.1525423728813,
1114
+ "xx-Cakm": "N/A",
1115
+ "as": 1742.7125653933472,
1116
+ "xx-Copt": 52848.166666666664,
1117
+ "xx-Sund": "N/A",
1118
+ "xx-Runr": "N/A",
1119
+ "xx-Xsux": "N/A",
1120
+ "xx-Xpeo": "N/A",
1121
+ "xx-Avst": "N/A",
1122
+ "xx-Lisu": "N/A",
1123
+ "xx-Bugi": "N/A",
1124
+ "xx-Ital": "N/A",
1125
+ "xx-Bopo": "N/A",
1126
+ "xx-Glag": "N/A",
1127
+ "xx-Goth": 909.9376884422111,
1128
+ "xx-Bali": "N/A"
1129
+ }
1130
+ }