Science Score: 18.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
○Academic publication links
-
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (0.2%) to scientific vocabulary
Last synced: 9 months ago
·
JSON representation
·
Repository
look at a zoom of the julia fractal
Basic Info
- Host: GitHub
- Owner: howonlee
- Language: Python
- Default Branch: master
- Size: 6.29 MB
Statistics
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
- Releases: 0
Created almost 11 years ago
· Last pushed over 10 years ago
Metadata Files
Readme
Citation
readme.md
Fractal zoom
Owner
- Name: Howon Lee
- Login: howonlee
- Kind: user
- Location: San Francisco
- Website: http://www.howonlee.com
- Repositories: 114
- Profile: https://github.com/howonlee
I do things.
Citation (citation_dataset.py)
import numpy as np
import networkx as nx
import matplotlib.pyplot as plt
import scipy.sparse as sci_sp
if __name__ == "__main__":
net = nx.read_edgelist("/home/curuinor/data/Cit-HepPh.txt")
net = net.subgraph(map(str, range(3000)))
print "net created"
net_arr = nx.to_numpy_matrix(net)
net_arr = np.squeeze(np.asarray(net_arr))
degrees = net_arr.sum(axis=0)
degrees = np.sort(degrees)
plt.plot(degrees)
plt.title("citation network degrees")
plt.savefig("./pics/citation_degrees")