You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Creates a coauthorship network for the RecordCollection.
476
476
477
+
# Parameters
478
+
479
+
_detailedInfo_ : `optional [bool or iterable[WOS tag Strings]]`
480
+
481
+
> default `False`, if `True` all nodes will be given info strings composed of information from the Record objects themselves. This is Equivalent to passing the list: `['PY', 'TI', 'SO', 'VL', 'BP']`.
482
+
483
+
> If _detailedCore_ is an iterable (That evaluates to `True`) of WOS Tags (or long names) The values of those tags will be used to make the info attributes. All
484
+
485
+
> For each of the selected tags an attribute will be added to the node using the values of those tags on the first `Record` encountered. **Warning** iterating over `RecordCollection` objects is not deterministic the first `Record` will not always be same between runs. The node will be given attributes with the names of the WOS tags for each of the selected tags. The attributes will contain strings of containing the values (with commas removed), if multiple values are encountered they will be comma separated.
486
+
487
+
> Note: _detailedInfo_ is not identical to the _detailedCore_ argument of [`Recordcollection.coCiteNetwork()`](#RecordCollection.coCiteNetwork) or [`Recordcollection.citationNetwork()'](#RecordCollection.citationNetwork)
488
+
489
+
_weighted_ : `optional [bool]`
490
+
491
+
> default `True`, wether the edges are weighted. If `True` the edges are weighted by the number of co-authorships.
492
+
493
+
_dropNonJournals_ : `optional [bool]`
494
+
495
+
> default `False`, wether to drop authors from non-journals
496
+
497
+
_count_ : `optional [bool]`
498
+
499
+
> default `True`, causes the number of occurrences of a node to be counted
> The resultant string is the values of each tag, with commas removed, seperated by `', '`, just like the info given by non-core Citations. Note that for tags like `'AF'` that return lists only the first entry in the list will be used. Also a second attribute is created for all nodes called inCore wich is a boolean describing if the node is in the core or not.
591
619
620
+
> Note: _detailedCore_ is not identical to the _detailedInfo_ argument of [`Recordcollection.coAuthNetwork()`](#RecordCollection.coAuthNetwork)
621
+
592
622
_coreOnly_ : `optional [bool]`
593
623
594
624
> default `False`, if `True` only Citations from the RecordCollection will be included in the network
> The resultant string is the values of each tag, with commas removed, seperated by `', '`, just like the info given by non-core Citations. Note that for tags like `'AF'` that return lists only the first entry in the list will be used. Also a second attribute is created for all nodes called inCore wich is a boolean describing if the node is in the core or not.
691
721
722
+
> Note: _detailedCore_ is not identical to the _detailedInfo_ argument of [`Recordcollection.coAuthNetwork()`](#RecordCollection.coAuthNetwork)
723
+
692
724
_coreOnly_ : `optional [bool]`
693
725
694
726
> default `False`, if `True` only Citations from the RecordCollection will be included in the network
0 commit comments