-
|
Hi, I used "chart.feature_histogram(my_sample, property)" to create several charts to the distribution of NDVI values in my aoi. The charts are directly downloaded from the Junpyter notebook. However, I wonder if there is any method to extract data value as a csv file from the histogram chart? Thanks Thank you, Sincerely, JJChen |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Good question. It has been implemented. Update the package using hist = chart.feature_histogram(my_sample, property, show=False, **options)
hist.bins
hist.count
hist.midpoints |
Beta Was this translation helpful? Give feedback.




Good question. It has been implemented. Update the package using
geemap.update_package(), then setshow=Falsewhen creating chart, you should be able to get attributes from the chart object.