General Metrics TextΒΆ

Example

>>> from techminer2.thesaurus.countries import (
...     InitializeThesaurus as CreateCountryThesaurus,
...     ApplyThesaurus as ApplyCountryThesaurus,
... )  
Note...
>>> from techminer2.thesaurus.organizations import (
...     InitializeThesaurus as CreateOrganizationsThesaurus,
...     ApplyThesaurus as ApplyOrganizationsThesaurus,
... )
>>> from techminer2.thesaurus.descriptors import (
...     InitializeThesaurus as CreateDescriptorsThesaurus,
...     ApplyThesaurus as ApplyDescriptorsThesaurus,
... )
>>> # Create and apply thesauri
>>> CreateCountryThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> ApplyCountryThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> CreateOrganizationsThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> ApplyOrganizationsThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> CreateDescriptorsThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> ApplyDescriptorsThesaurus(root_directory="examples/fintech/", quiet=True).run()
>>> # Create, configure, and run the Text generator
>>> from techminer2.manuscript.results.general_metrics.text import Text
>>> (
...     Text()
...     #
...     # DATABASE:
...     .where_root_directory("examples/fintech/")
...     .where_database("main")
...     .where_record_years_range(None, None)
...     .where_record_citations_range(None, None)
...     .where_records_match(None)
...     #
...     .run() 
... )