Skip to content

Commit

Permalink
Merge branch 'feature/progress_bar' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
vc1492a committed Apr 15, 2020
2 parents 6cfe37b + 40c484a commit ba6b23d
Show file tree
Hide file tree
Showing 17 changed files with 25,338 additions and 10 deletions.
Binary file added images/d3.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/d3_mls.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/d3_mls_static.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/d3_static.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 23 additions & 9 deletions notebooks/Compute Top Authors.ipynb

Large diffs are not rendered by default.

1,699 changes: 1,699 additions & 0 deletions notebooks/Microwave Limb Sounder.ipynb

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion requirements_notebooks.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
jupyter>=1.0.0
matplotlib>=3.1.2
networkx>=2.4
networkx>=2.4
tqdm>=4.43.0
20 changes: 20 additions & 0 deletions visualization/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# AuthorRank Visualization

This code allows you to view the results of the
AuthorRank approach using an interactive
directed graph in your browser using d3.js.

![D3Graph](../images/d3.png)

## Run

From this directory, run the Python simple http server.

```python
python3 -m http.server 8000
```

Then visit `127.0.0.1:8000` in your browser. You can use other
data by replacing the files in `data` and changing the file names
in `js/authorRank.js`.

19 changes: 19 additions & 0 deletions visualization/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
body {
font-family: 'Montserrat', sans-serif;
}

.annotation-note-label {
font-size: 0.35rem;
}

.stats-container {
position: fixed;
margin: 10px;
background-color: rgba(0, 0, 0, 0.75);
height: 50px;
width: 200px;
text-align: left;
color: white;
padding: 10px;
font-size: 0.9rem;
}

0 comments on commit ba6b23d

Please sign in to comment.