[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2023-10-06 UTC."],[[["Calculates the mean (average) value of a specified property across all features within a FeatureCollection."],["Accepts a FeatureCollection and the name of the property to analyze as input."],["Returns a single numerical value representing the calculated mean."],["Useful for understanding the central tendency of a property within a dataset, such as average power plant capacity in a region."]]],["The `aggregate_mean` function calculates the mean of a specified property across a FeatureCollection. It takes the `FeatureCollection` and the `property` name as inputs. The function returns a Number representing the mean value. For example, using a FeatureCollection of power plants, `aggregate_mean('capacitymw')` computes the mean power plant capacity in megawatts. The provided examples showcase how to implement it in both JavaScript and Python environments.\n"]]