Create a co-citation graph from a list of papers
Project description
Co-citation graph generator
Generate a co-citation graph from an article list in two steps:
- Get the references of each article and their corresponding journals
- Generate the co-citation pairs and add them the graph. The weights are the number of times the journals are co-cited.
Example
from co_citation import CoCitation
cites = CoCitation(
[
"arxiv:1602.05112",
"pubmed:8113053",
"sciencedirect:S0167923610001703",
"scopus:10.1016/j.cmet.2020.11.014",
],
data_type="journal", # or "article", "institution"
wait=None, # None or the time to wait between requests (in seconds)
retries=None, # None or the number of retries for HTTPS requests
first_last_author=False, # Set to True to only get the institution of the first and last authors
node_weights="eigenvector", # Or "betweenness"
)
cites.write_graph_edges("graph")
cites.plot_graph(
display=False,
k=10, # The spacing between the nodes
seed=42, # Use the seed argument for reproducibility
margin=dict(b=0, l=110, r=150, t=40)
)
Documentation
See the documentation.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
co-citation-0.7.tar.gz
(22.1 kB
view details)
Built Distribution
co_citation-0.7-py3-none-any.whl
(20.4 kB
view details)
File details
Details for the file co-citation-0.7.tar.gz
.
File metadata
- Download URL: co-citation-0.7.tar.gz
- Upload date:
- Size: 22.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d45b061306ef7705adf53f38e89a44ee690363f56155092201ecfa5e4a8aef83 |
|
MD5 | b00e25245a9bc0bbf5604587f231dec2 |
|
BLAKE2b-256 | d2f71474e4d9b404e8d9fbfa951a5c697ff4dfa24514be17c3c025c588b8f574 |
File details
Details for the file co_citation-0.7-py3-none-any.whl
.
File metadata
- Download URL: co_citation-0.7-py3-none-any.whl
- Upload date:
- Size: 20.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/51.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57dc4d5a97d0a457d4b138248c676fdd0c8fe373f25181d4ff8f16112d654d07 |
|
MD5 | 5f13a2d54e2e5a02267a9490d8728fe1 |
|
BLAKE2b-256 | 44ffa36ec65bb0321148e509089208066ddbbcc35a9bb11b67312b5e35045f37 |