إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.ImageCollection.errorMatrix
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تحسب هذه الدالة مصفوفة خطأ ثنائية الأبعاد لمجموعة من خلال مقارنة عمودَين في المجموعة: أحدهما يحتوي على القيم الفعلية، والآخر يحتوي على القيم المتوقّعة. من المتوقّع أن تكون القيم أعدادًا صحيحة صغيرة ومتجاورة، بدءًا من 0. يتوافق المحور 0 (الصفوف) للمصفوفة مع القيم الفعلية، ويتوافق المحور 1 (الأعمدة) مع القيم المتوقّعة.
الاستخدام | المرتجعات |
---|
ImageCollection.errorMatrix(actual, predicted, order) | ConfusionMatrix |
الوسيطة | النوع | التفاصيل |
---|
هذا: collection | FeatureCollection | مجموعة الإدخال |
actual | سلسلة | اسم السمة التي تحتوي على القيمة الفعلية |
predicted | سلسلة | اسم السمة التي تحتوي على القيمة المتوقّعة |
order | قائمة، القيمة التلقائية: فارغة | قائمة بالقيم المتوقّعة إذا لم يتم تحديد هذه الوسيطة، يُفترض أنّ القيم متجاورة وتمتد على النطاق من 0 إلى maxValue. في حال تحديدها، يتم استخدام القيم المطابقة لهذه القائمة فقط، وستحتوي المصفوفة على سمات وترتيب مطابقين لهذه القائمة. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eComputes a 2D error matrix (confusion matrix) by comparing actual and predicted values within a collection.\u003c/p\u003e\n"],["\u003cp\u003eThe matrix is structured with actual values on rows and predicted values on columns, assuming small contiguous integers starting from 0 for both.\u003c/p\u003e\n"],["\u003cp\u003eUsers specify the properties holding actual and predicted values, and optionally, a list of expected values to customize the matrix structure.\u003c/p\u003e\n"]]],["The `errorMatrix` method computes a 2D error matrix (ConfusionMatrix) from a FeatureCollection. It compares 'actual' and 'predicted' value columns. Rows represent actual values, columns represent predicted values. Input values are small, contiguous integers starting from 0. An optional 'order' list defines the expected values, dictating matrix dimensions and order. If 'order' is unspecified values are assumed to be contiguous from 0 to a maximum value. The input collection is a FeatureCollection.\n"],null,["# ee.ImageCollection.errorMatrix\n\nComputes a 2D error matrix for a collection by comparing two columns of a collection: one containing the actual values, and one containing predicted values. The values are expected to be small contiguous integers, starting from 0. Axis 0 (the rows) of the matrix correspond to the actual values, and Axis 1 (the columns) to the predicted values.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------------|-----------------|\n| ImageCollection.errorMatrix`(actual, predicted, `*order*`)` | ConfusionMatrix |\n\n| Argument | Type | Details |\n|--------------------|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| this: `collection` | FeatureCollection | The input collection. |\n| `actual` | String | The name of the property containing the actual value. |\n| `predicted` | String | The name of the property containing the predicted value. |\n| `order` | List, default: null | A list of the expected values. If this argument is not specified, the values are assumed to be contiguous and span the range 0 to maxValue. If specified, only values matching this list are used, and the matrix will have dimensions and order matching this list. |"]]