7
7
# Takanori Suzuki <takanori@takanory.net>, 2021
8
8
# tomo, 2021
9
9
# Arihiro TAKASE, 2023
10
+ # TENMYO Masakazu, 2023
10
11
#
11
12
#, fuzzy
12
13
msgid ""
@@ -15,7 +16,7 @@ msgstr ""
15
16
"Report-Msgid-Bugs-To : \n "
16
17
"POT-Creation-Date : 2023-10-06 14:14+0000\n "
17
18
"PO-Revision-Date : 2021-06-28 01:13+0000\n "
18
- "Last-Translator : Arihiro TAKASE , 2023\n "
19
+ "Last-Translator : TENMYO Masakazu , 2023\n "
19
20
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
20
21
"ja/)\n "
21
22
"MIME-Version : 1.0\n "
@@ -48,6 +49,10 @@ msgid ""
48
49
"statisticians such as Minitab, SAS and Matlab. It is aimed at the level of "
49
50
"graphing and scientific calculators."
50
51
msgstr ""
52
+ "このモジュールは、 `NumPy <https://numpy.org>`_, `SciPy <https://scipy.org/"
53
+ ">`_ のような third-party ライブラリや、Minitab、SAS、Matlab のようなプロ統計"
54
+ "家向けのフル装備なプロプライエタリ統計パッケージと競合することを意図していま"
55
+ "せん。グラフ関数電卓のレベルを対象としています。"
51
56
52
57
#: ../../library/statistics.rst:31
53
58
msgid ""
@@ -59,6 +64,11 @@ msgid ""
59
64
"you may be able to use :func:`map` to ensure a consistent result, for "
60
65
"example: ``map(float, input_data)``."
61
66
msgstr ""
67
+ "特に明記しない限り、これらの関数は :class:`int`, :class:`float`, :class:"
68
+ "`~decimal.Decimal` そして :class:`~fractions.Fraction` をサポートします。他の"
69
+ "型 (算術型及びそれ以外) は現在サポートされていません。型が混ざったコレクショ"
70
+ "ンも未定義で実装依存です。入力データが複数の型からなる場合、:func:`map` を使"
71
+ "用すると正しい結果が得られるでしょう。 例: ``map(float, input_data)``。"
62
72
63
73
#: ../../library/statistics.rst:39
64
74
msgid ""
@@ -70,6 +80,12 @@ msgid ""
70
80
"``quantiles()``. The ``NaN`` values should be stripped before calling these "
71
81
"functions::"
72
82
msgstr ""
83
+ "あるデータセットでは欠損値を表すために ``NaN`` (not a number) を使います。 "
84
+ "NaNは通常と異なる比較セマンティクスを持つため、ソートやカウントを行う統計関数"
85
+ "では、驚きや未定義の振る舞いを引き起こします。 影響を受ける関数は "
86
+ "``median()``, ``median_low()``, ``median_high()``, ``median_grouped()``, "
87
+ "``mode()``, ``multimode()``, そして ``quantiles()`` です。 これらの関数を呼"
88
+ "ぶ前に、 ``NaN`` 値を取り除く必要があります::"
73
89
74
90
#: ../../library/statistics.rst:69
75
91
msgid "Averages and measures of central location"
0 commit comments