Login
Discover
Waves
Communities
Login
Signup
Topics
#graphviz
Global
Trending
Hot
New
Top
#graphviz
New
Top communities
Create your community
latest #graphviz created topics | Ecency
oflyhigh
HIVE CN 中文社区
2023-10-20 09:54
每天进步一点点:解决Windows下Graphviz输出图像中文显示的问题
前一篇文章中,给大家介绍了Graphviz这个强大的工具,不过学习过程中还是遇到一些麻烦,比如说输出PNG格式图像时,中文显示为乱码。 (图源 :pixabay) 这篇文章着手解决我们之前遇到的这个问题,毕竟作为一个讲中文的中国人,作图中肯定经常用到中文呀。 问题描述 以之前的Hello World示例为例,我们对其进行修改,将: digraph G {Hello->World} 修改为: digraph
$ 62.761
197
10
1
oflyhigh
HIVE CN 中文社区
2023-10-19 10:13
每天进步一点点:学习使用Graphviz
最近发现一个很好玩的软件,叫做Graphviz,它可以通过简单的语言来描述结构图、流程图、关系图等,并自动生成相应的图像。我在考虑使用它来帮我生成一些思维导图。 安装 我们可以在 页面来下载适合我们系统的版本,我计划在Windows中使用它,所以下载的是graphviz-9.0.0 (64-bit) EXE installer。 安装过程很简单,一顿下一步即可。 (此处略作一些修改) 安装完成。
$ 73.766
258
11
2
markgritter
procjam
2018-11-07 05:49
Visual representation of graph grammar
A lot of the existing packages for graph grammars seem to have GUIs for writing rules, and in some of them that seems to be your only option. Tonight I prototyped a way to export a graph grammar as a HTML
markgritter
procjam
2018-11-04 05:45
A complicated Soffit example
Suppose we want to create a graph grammar that makes rectangular grids. A first cut at it would be something like "expand outwards from any edge that hasn't already been used", something like
tonyz
Photography Lovers
2026-07-17 19:09
Promoted
Sciacca boats.
Once proud fishing boats. Port of Sciacca, Sicily.
markgritter
programming
2018-11-03 06:11
Graph rewrite examples, generated by Soffit
I started at doc/examples directory for the soffit project, and my first two examples are there. Unfortunately, only one of them looks any good. The way I finally convinced graphviz to lay things out the
markgritter
procjam
2018-11-02 08:14
graphviz clusters suck
The #1 question about graphviz seems to be "why can't I get it to lay out my clusters in the way I want", judging from the number of StackOverflow questions I see. I wrote some code in Soffit
markgritter
visualization
2018-06-30 20:24
Steem Tags' Covariance, Graphed
As a follow up to the discussion from a couple days ago ( I though I'd try graphing the highest-value relationships between Steem tags. Here are the top 20 covariances and bottom 20 covariances: Green
markgritter
visualization
2018-06-27 07:06
Tracing and visualizing a large build
What happens when we build a large software package? A lot! Visualizing the inputs and outputs of a build Here's a graph of every process that read or wrote a file while building the 'graphviz' toolkit,
bhattg
Fitness lovers
2026-07-18 17:03
Promoted
A Relaxing Weekend Walk, New Smartwatch & 18.5K Steps 🚶⌚
Hello friends, as you might have understood from the title of the post, through this post today, I will share with you some topics or tips that you can adopt whether online or offline. To get complete
markgritter
visualization
2018-06-22 04:22
#steemstem and 20 of its closest friends
Which Steem tags are most commonly used together? Can we learn anything from visualizing the "word cloud" of tags which are frequent neighbors? I gathered the tags and net rshares for all top-level
markgritter
steemit
2018-06-10 22:12
Another Rshares Visualization Attempt
I modified my earlier code to use a priority queue. Starting with myself, it select nodes to include based on total incoming weight of rshares from nodes already visited. For this experiment I took the
markgritter
steemit
2018-06-10 08:27
An Experiment in Visualizing Steem Voting Patterns (but not very well)
I thought I'd play around with the Steem API and see if I could built a visualization on top of it. I installed the steem-python library and found it pretty quick to start making API calls. My goal was
weichencoder
graphviz
2018-02-20 05:36
!
New account with an unverified outbound link, Reveal content
macOS下实现Keras模型的可视化及错误处理
第一部分:如何实现可视化 第一种:利用 plot_model 导出模型结构图 keras.utils.vis_utils模块提供了画出Keras模型的函数,依赖于graphviz。 该函数将已经设计好的模型画成结构图,并保存成图片: from keras.utils import plot_model plot_model(model, to_file='model.png')