watex.property.References#

class watex.property.References(author=None, title=None, journal=None, volume=None, doi=None, year=None, **kws)[source]#

References information for a citation.

Holds the following information:

Attributes

Type

Explanation

author

string

Author names

title

string

Title of article, or publication

journal

string

Name of journal

doi

string

DOI number

year

int

year published

More attributes can be added by inputing a key word dictionary

Examples

>>> from watex.property import References
>>> refobj = References(
    **{'volume':18, 'pages':'234--214',
    'title':'watex :A machine learning research for hydrogeophysic' ,
    'journal':'Computers and Geosciences',
    'year':'2021', 'author':'DMaryE'}
    )
>>> refobj.journal
Out[21]: 'Computers and Geosciences'