DataframeΒΆ
Example
>>> from techminer2.database.metrics.lotka_law import DataFrame
>>> generator = (
... DataFrame()
... #
... # DATABASE:
... .where_root_directory_is("example/")
... .where_database_is("main")
... .where_record_years_range_is(None, None)
... .where_record_citations_range_is(None, None)
... .where_records_match(None)
... )
>>> df = generator.run()
>>> df
Documents Written ... Prop Theoretical Authors
0 1 ... 0.735
1 2 ... 0.184
2 3 ... 0.082
[3 rows x 5 columns]