ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Reducer.intervalMean
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
নির্দিষ্ট পার্সেন্টাইল পরিসরে সমস্ত ইনপুটের গড় গণনা করতে একটি হ্রাসকারী তৈরি করে। অল্প সংখ্যক ইনপুটের জন্য (maxRaw পর্যন্ত) গড় সরাসরি গণনা করা হবে; বৃহত্তর সংখ্যক ইনপুটের জন্য গড় হিস্টোগ্রাম থেকে প্রাপ্ত করা হবে।
ব্যবহার | রিটার্নস | ee.Reducer.intervalMean(minPercentile, maxPercentile, maxBuckets , minBucketWidth , maxRaw ) | হ্রাসকারী |
যুক্তি | টাইপ | বিস্তারিত | minPercentile | ভাসা | পার্সেন্টাইল ব্যাপ্তির নিম্ন সীমা। |
maxPercentile | ভাসা | পার্সেন্টাইল ব্যাপ্তির উপরের সীমা। |
maxBuckets | পূর্ণসংখ্যা, ডিফল্ট: নাল | হিস্টোগ্রাম তৈরি করার সময় সর্বাধিক সংখ্যক বালতি ব্যবহার করতে হবে; 2 এর শক্তি পর্যন্ত বৃত্তাকার করা হবে। |
minBucketWidth | ফ্লোট, ডিফল্ট: নাল | ন্যূনতম হিস্টোগ্রাম বালতি প্রস্থ, বা 2 এর যেকোন শক্তির অনুমতি দিতে শূন্য। |
maxRaw | পূর্ণসংখ্যা, ডিফল্ট: নাল | প্রাথমিক হিস্টোগ্রাম তৈরি করার আগে যে মানের সংখ্যা জমা করতে হবে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eCalculates the mean of values within a specified percentile range, using either direct computation or a histogram-based approach.\u003c/p\u003e\n"],["\u003cp\u003eOffers control over the histogram construction with parameters for maximum buckets, minimum bucket width, and the threshold for switching to histogram-based calculation.\u003c/p\u003e\n"],["\u003cp\u003eAccepts lower and upper percentile bounds as inputs to define the range of values for the mean calculation.\u003c/p\u003e\n"]]],[],null,["# ee.Reducer.intervalMean\n\nCreates a Reducer to compute the mean of all inputs in the specified percentile range. For small numbers of inputs (up to maxRaw) the mean will be computed directly; for larger numbers of inputs the mean will be derived from a histogram.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------------------------------------------|---------|\n| `ee.Reducer.intervalMean(minPercentile, maxPercentile, `*maxBuckets* `, `*minBucketWidth* `, `*maxRaw*`)` | Reducer |\n\n| Argument | Type | Details |\n|------------------|------------------------|-----------------------------------------------------------------------------------------------------|\n| `minPercentile` | Float | The lower bound of the percentile range. |\n| `maxPercentile` | Float | The upper bound of the percentile range. |\n| `maxBuckets` | Integer, default: null | The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. |\n| `minBucketWidth` | Float, default: null | The minimum histogram bucket width, or null to allow any power of 2. |\n| `maxRaw` | Integer, default: null | The number of values to accumulate before building the initial histogram. |"]]