Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions docs/api_examples/scatter_plot.ipynb

Large diffs are not rendered by default.

Binary file modified docs/images/logo/vuecore_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2,366 changes: 1,183 additions & 1,183 deletions docs/images/logo/vuecore_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/images/logo/vuecore_logo_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9,051 changes: 4,521 additions & 4,530 deletions docs/images/logo/vuecore_logo_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions src/vuecore/viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from webweb import Web
from wordcloud import STOPWORDS, WordCloud

from . import dendrogram, utils, wgcna
from . import dendrogram, utils_old, wgcna
from .linkers import get_clustergrammer_link
from .translate import hex2rgb, mpl_to_html_image

Expand Down Expand Up @@ -1440,7 +1440,7 @@ def get_notebook_network_pyvis(graph, args={}):
notebook_net.barnes_hut(overlap=0.8)
notebook_net.from_nx(graph)
notebook_net.show_buttons(["nodes", "edges", "physics"])
utils.generate_html(notebook_net)
utils_old.generate_html(notebook_net)

return notebook_net

Expand Down Expand Up @@ -1649,7 +1649,7 @@ def get_network(data, identifier, args):
args["title"] = identifier

if not data.empty:
if utils.check_columns(data, cols=[args["source"], args["target"]]):
if utils_old.check_columns(data, cols=[args["source"], args["target"]]):
if "values" not in args:
args["values"] = "width"
data[args["values"]] = 1
Expand Down Expand Up @@ -1720,7 +1720,7 @@ def get_network(data, identifier, args):
nx.set_node_attributes(graph, degrees, "radius")

clusters = network_analysis.get_network_communities(graph, args)
col = utils.get_hex_colors(len(set(clusters.values())))
col = utils_old.get_hex_colors(len(set(clusters.values())))
colors = {n: col[clusters[n]] for n in clusters}
nx.set_node_attributes(graph, colors, "color")
nx.set_node_attributes(graph, clusters, "cluster")
Expand Down Expand Up @@ -1795,7 +1795,7 @@ def get_network(data, identifier, args):
args["stylesheet"] = stylesheet
args["layout"] = layout

cy_elements, mouseover_node = utils.networkx_to_cytoscape(vis_graph)
cy_elements, mouseover_node = utils_old.networkx_to_cytoscape(vis_graph)

app_net = get_cytoscape_network(cy_elements, identifier, args)
# args['mouseover_node'] = mouseover_node
Expand Down