@@ -10,7 +10,7 @@ msgstr ""
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"POT-Creation-Date : 2018-06-26 13:41+0900\n "
12
12
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
13
- "Last-Translator : tomo🐧 , 2018\n "
13
+ "Last-Translator : yuji takesue <taketakeyyy@gmail.com> , 2018\n "
14
14
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
15
15
"MIME-Version : 1.0\n "
16
16
"Content-Type : text/plain; charset=UTF-8\n "
@@ -67,11 +67,11 @@ msgstr "データの算術平均。"
67
67
68
68
#: ../../library/statistics.rst:42
69
69
msgid ":func:`harmonic_mean`"
70
- msgstr ""
70
+ msgstr ":func:`harmonic_mean` "
71
71
72
72
#: ../../library/statistics.rst:42
73
73
msgid "Harmonic mean of data."
74
- msgstr ""
74
+ msgstr "データの調和平均。 "
75
75
76
76
#: ../../library/statistics.rst:43
77
77
msgid ":func:`median`"
@@ -170,7 +170,7 @@ msgstr "註釈: 関数の引数となるデータをソートしておく必要
170
170
msgid ""
171
171
"Return the sample arithmetic mean of *data* which can be a sequence or "
172
172
"iterator."
173
- msgstr ""
173
+ msgstr "シーケンス型またはイテレータになり得る *data* の標本算術平均を返します。 "
174
174
175
175
#: ../../library/statistics.rst:74
176
176
msgid ""
@@ -215,7 +215,7 @@ msgstr ""
215
215
msgid ""
216
216
"Return the harmonic mean of *data*, a sequence or iterator of real-valued "
217
217
"numbers."
218
- msgstr ""
218
+ msgstr "実数値のシーケンス型またはイテレータの *data* の調和平均を返します。 "
219
219
220
220
#: ../../library/statistics.rst:119
221
221
msgid ""
@@ -224,39 +224,46 @@ msgid ""
224
224
"the harmonic mean of three values *a*, *b* and *c* will be equivalent to "
225
225
"``3/(1/a + 1/b + 1/c)``."
226
226
msgstr ""
227
+ "調和平均(harmonic mean, subcontrary mean)は、データの逆数の算術平均の逆数です。例えば、3つの値 *a*, *b*, "
228
+ "*c* の調和平均は``3/(1/a + 1/b + 1/c)`` になります。"
227
229
228
230
#: ../../library/statistics.rst:124
229
231
msgid ""
230
232
"The harmonic mean is a type of average, a measure of the central location of"
231
233
" the data. It is often appropriate when averaging quantities which are "
232
234
"rates or ratios, for example speeds. For example:"
233
235
msgstr ""
236
+ "調和平均は平均の一種で、データの中心位置の測度です。速度のような率(rates)や比(ratios)の量を平均するときにしばしば適切です。例えば、"
234
237
235
238
#: ../../library/statistics.rst:128
236
239
msgid ""
237
240
"Suppose an investor purchases an equal value of shares in each of three "
238
241
"companies, with P/E (price/earning) ratios of 2.5, 3 and 10. What is the "
239
242
"average P/E ratio for the investor's portfolio?"
240
243
msgstr ""
244
+ "投資家がP / E(価格/収益)の比率が2.5,3,10という3つの会社のそれぞれに等しい価値の株式を購入したとします。投資家のポートフォリオの平均P "
245
+ "/ Eの比率はいくつでしょうか?"
241
246
242
247
#: ../../library/statistics.rst:137
243
248
msgid ""
244
249
"Using the arithmetic mean would give an average of about 5.167, which is too"
245
250
" high."
246
- msgstr ""
251
+ msgstr "算術平均を使うと平均は約5.167になり、高すぎる値になります。 "
247
252
248
253
#: ../../library/statistics.rst:140
249
254
msgid ""
250
255
":exc:`StatisticsError` is raised if *data* is empty, or any element is less "
251
256
"than zero."
252
- msgstr ""
257
+ msgstr "もし *data* が空の場合、またはいずれの要素が0より小さい場合、 :exc:`StatisticsError` は例外を送出します。 "
253
258
254
259
#: ../../library/statistics.rst:148
255
260
msgid ""
256
261
"Return the median (middle value) of numeric data, using the common \" mean of"
257
262
" middle two\" method. If *data* is empty, :exc:`StatisticsError` is raised."
258
263
" *data* can be a sequence or iterator."
259
264
msgstr ""
265
+ "一般的な「中央2つの平均をとる」方法を使用して、数値データの中央値(中間値)を返します。もし *data* が空の場合、例外 "
266
+ ":exc:`StatisticsError` が送出されます。*data* はシーケンス型またはイテレータにもなれます。"
260
267
261
268
#: ../../library/statistics.rst:152
262
269
msgid ""
@@ -283,6 +290,8 @@ msgid ""
283
290
" support addition), you should use :func:`median_low` or :func:`median_high`"
284
291
" instead."
285
292
msgstr ""
293
+ "もしあなたのデータが(注文操作をサポートする)序数で、(追加操作をサポートしない)数値でないならば、代わりに :func:`median_low` "
294
+ "または :func:`median_high` を使うべきです。"
286
295
287
296
#: ../../library/statistics.rst:176
288
297
msgid ":func:`median_low`, :func:`median_high`, :func:`median_grouped`"
@@ -293,6 +302,8 @@ msgid ""
293
302
"Return the low median of numeric data. If *data* is empty, "
294
303
":exc:`StatisticsError` is raised. *data* can be a sequence or iterator."
295
304
msgstr ""
305
+ "数値データの小さい方の中央値(low median)を返します。もし *data* "
306
+ "が空の場合、:exc:`StatisticsError`が送出されます。*data* はシーケンス型またはイテレータにもなれます。"
296
307
297
308
#: ../../library/statistics.rst:184
298
309
msgid ""
@@ -312,6 +323,8 @@ msgid ""
312
323
"Return the high median of data. If *data* is empty, :exc:`StatisticsError` "
313
324
"is raised. *data* can be a sequence or iterator."
314
325
msgstr ""
326
+ "データの大きい方の中央値(high median)を返します。もし *data* が空の場合、:exc:`StatisticsError` "
327
+ "が送出されます。 *data* はシーケンス型やイテレータにもなれます。"
315
328
316
329
#: ../../library/statistics.rst:204
317
330
msgid ""
@@ -332,6 +345,8 @@ msgid ""
332
345
"percentile, using interpolation. If *data* is empty, :exc:`StatisticsError`"
333
346
" is raised. *data* can be a sequence or iterator."
334
347
msgstr ""
348
+ "補間を使用して、50番目のパーセンタイルとして計算されたグループ化された連続データの中央値を返します。もし *data* "
349
+ "が空の場合、:exc:`StatisticsError` が送出されます。*data* はシーケンス型やイテレータにもなれます。"
335
350
336
351
#: ../../library/statistics.rst:230
337
352
msgid ""
0 commit comments