Skip to content

Commit

Permalink
updated documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ljchang committed Jul 14, 2020
1 parent ba70cd7 commit 91822a4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@
'sphinx.ext.viewcode',
'sphinx.ext.mathjax',
'sphinxcontrib.napoleon',
'sphinx_gallery.gen_gallery',
'sphinxcontrib.yt'
'sphinx_gallery.gen_gallery'
]

# Add any paths that contain templates here, relative to this directory.
Expand Down
1 change: 0 additions & 1 deletion docs/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ dependencies:
- sphinxcontrib-napoleon
- sphinx_bootstrap_theme
- networkx
- sphinxcontrib.yt

2 changes: 1 addition & 1 deletion examples/01_DataOperations/plot_adjacency.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

m1 = block_diag(np.ones((4, 4)), np.zeros((4, 4)), np.zeros((4, 4)))
m2 = block_diag(np.zeros((4, 4)), np.ones((4, 4)), np.zeros((4, 4)))
m3 = block_diag(np.zeros((4, 4)), np.zeros((4, 4)), np.ones((4, 4)))*3
m3 = block_diag(np.zeros((4, 4)), np.zeros((4, 4)), np.ones((4, 4)))
noisy = (m1*1+m2*2+m3*3) + np.random.randn(12, 12)*.1
dat = Adjacency(noisy, matrix_type='similarity', labels=['C1']*4 + ['C2']*4 + ['C3']*4)

Expand Down

0 comments on commit 91822a4

Please sign in to comment.