Word CloudΒΆ
>>> from techminer2.database.metrics.performance import WordCloud
>>> plot = (
... WordCloud()
... #
... # FIELD:
... .with_field("raw_document_title_nouns_and_phrases")
... #
... # TERMS:
... .having_terms_in_top(80)
... .having_terms_ordered_by("OCC")
... #
... .having_term_occurrences_between(None, None)
... .having_term_citations_between(None, None)
... .having_terms_in(None)
... #
... # PLOT:
... .using_plot_width(400)
... .using_plot_height(400)
... #
... # DATABASE:
... .where_root_directory_is("example/")
... .where_database_is("main")
... .where_record_years_range_is(None, None)
... .where_record_citations_range_is(None, None)
... #
... .run()
... )
>>> # plot.save("sphinx/images/database/metrics/performance/word_cloud.png")
