Scatter🍋
scatter(geo_object, property_x, property_y, region=None, marginal_plot=None, nbins=20, **kwargs)
🍋
Return a scatter plot of two given properties, marginal_plot
parameter indicates if
their associated histograms or distribution curves need to be plotted too.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
geo_object
|
GeoRefObject
|
GeoRefObject (e.g. |
required |
property_x
|
str
|
|
required |
property_y
|
str
|
|
required |
region
|
Optional[str]
|
Region or condition to filter data to plot. |
None
|
marginal_plot
|
Optional[ScatterMethod]
|
Can be None, |
None
|
nbins
|
int
|
Refers to the number of bins on both histograms if the |
20
|
**kwargs
|
Extra arguments to pass along to Plotly - Update Layout, arguments available at Plotly - Layout. |
{}
|
Returns:
Type | Description |
---|---|
Figure
|
Plotly Figure. |
scatter_matrix(geo_object, properties=None, region=None, **kwargs)
🍋
Return correlation scatter plot of given properties belonging to a single GeoRefObject.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
geo_object
|
GeoRefObject
|
GeoRefObject (e.g. |
required |
properties
|
Optional[List[str]]
|
List of properties belonging to the |
None
|
region
|
Optional[str]
|
Object region or condition to select data from. |
None
|
**kwargs
|
Extra arguments to pass along to Plotly - Update Layout, arguments available at Plotly - Layout. |
{}
|
Returns:
Type | Description |
---|---|
Figure
|
Plotly Figure. |