World MapΒΆ

Example

>>> from techminer2.database.metrics.collaboration import WorldMap
>>> # Creates, configure, and plots a world map.
>>> plotter = (
...     WorldMap()
...     #
...     # DATABASE:
...     .where_root_directory_is("examples/fintech/")
...     .where_database_is("main")
...     .where_record_years_range_is(None, None)
...     .where_record_citations_range_is(None, None)
...     .where_records_match(None)
... )
>>> plot = plotter.run()
>>> plot.write_html("docs_source/_generated/px.database.metrics.collaboration.world_map.html")