geofacetpy
geofacetpy is a Python library built to simplify the creation of geofaceted plots using matplotlib. It allows to easily map data to a grid layout and visualize trends across different regions using matplotlib and seaborn.
This library was heavily inspired by the R library geofacet.
Installation
pip install geofacetpy
Usage
Before you start [IMPORTANT]
Grid
Currently, the grid has to be a pandas DataFrame with specific columns - name, row, and col.
There's a large repository of grids, which follow the same data structure at hafen/grid-desginer.
Custom plotting function
The custom plotting function, that is supplied to the geofacet() must take the following arguments
ax(Axesobject),datagroup_name(name of the grid element)- and all other arguments, such as column names to be plotted
geofacet
group_column argument in the geofacet() is the name of the column in the data that is equivalent to the name in the grid layout and is the basis for the placement on the grid.
Examples
Previewing Grid Layout
from geofacet import preview_grid
import pandas as pd
grid = pd.read_csv("grid.csv")
preview_grid(grid)
Creating a geofacet plot
from geofacet import geofacet
import pandas as pd
import matplotlib.pyplot as plt
# Load data and grid layout
data = pd.read_csv("data_grouped.csv")
grid = pd.read_csv("grid.csv")
# Define a custom plotting function
def custom_plot(ax, data, group_name):
ax.bar(data['col_x'], data['col_y'], color="blue")
ax.set_title(group_name.replace(" ", "\n"), fontsize=8)
ax.tick_params(axis="x", labelsize=8)
ax.grid(True, linestyle="--", linewidth=0.5)
# Create the geofaceted plot
fig = geofacet(
grid_layout=grid,
data=data,
group_column="district",
plotting_function=custom_plot,
figure_size=(11, 9),
grid_spacing=(0.5, 0.5),
sharex=True,
sharey=True,
)
# Add titles and labels
fig.suptitle("Example Geofaceted Plot")
fig.supxlabel("Year")
fig.supylabel("Count")
plt.tight_layout()
plt.show()
Creating a Geofacet Plot with Seaborn
from geofacet import geofacet
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
# Load data and grid layout
data = pd.read_csv("data_grouped.csv")
grid = pd.read_csv("grid.csv")
# Define a custom plotting function using Seaborn
def seaborn_plot(ax, data, group_name):
sns.lineplot(ax=ax, data=data, x='col_x', y='col_y', marker="o")
ax.set_title(group_name.replace(" ", "\n"), fontsize=8)
ax.tick_params(axis="x", labelsize=8)
ax.grid(True, linestyle="--", linewidth=0.5)
# Create the geofaceted plot
fig = geofacet(
grid_layout=grid,
data=data,
group_column="district",
plotting_function=seaborn_plot,
col_x="year",
col_y="count",
figure_size=(11, 9),
grid_spacing=(0.5, 0.5),
sharex=True,
sharey=True,
)
# Add titles and labels
fig.suptitle("Geofaceted Plot with Seaborn")
fig.supxlabel("Year")
fig.supylabel("Count")
plt.tight_layout()
plt.show()
Output Example
Contributing
Feel free to open an issue for suggestions, report bugs, or submit a pull request to improve the library.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file geofacetpy-0.1.0.tar.gz.
File metadata
- Download URL: geofacetpy-0.1.0.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3cec17581d68659c9f90d210c1ae129105c5d3cc18d7b3790672fb1c2932bdc
|
|
| MD5 |
0fe902019b8053ea5da3e654cabbe85e
|
|
| BLAKE2b-256 |
587bea8d40d94c0b21c725b0496acdd596c9d443601b4d88ba40e0f6865ec368
|
File details
Details for the file geofacetpy-0.1.0-py3-none-any.whl.
File metadata
- Download URL: geofacetpy-0.1.0-py3-none-any.whl
- Upload date:
- Size: 6.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.10.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
df221175fdc6209c8f299d3497bd309022c029f15601bf1efd584199feefc7eb
|
|
| MD5 |
0774088ebfff5b28b41a6b53f3720bda
|
|
| BLAKE2b-256 |
d71bbc5ccc733d06651ee42b348704911995738b5f6c39ad4e8f5ff23f3bfe86
|