Displaying 9 results from an estimated 9 matches for "aes_network_bymembership".
2024 Feb 26
1
igraph_vertex
...windowsFonts(Helvetica = windowsFont("Helvetica"))
No warning now with Helvetica
Additionally I used "sans", similarly no warning in the first part.
But still not able to open tiff with both versions:
Using "stress" as default layout
> dev.off()
TIFFOpen: figures/AES_network_bymembership.tiff: Cannot open.
RStudioGD
2
Warning message:
In dev.off() :
unable to open TIFF file 'figures/AES_network_bymembership.tiff'
Kind regards
Sibylle
-----Original Message-----
From: Ivan Krylov <ikrylov at disroot.org>
Sent: Monday, February 26, 2024 10:15 AM
To: SIBYLL...
2024 Feb 26
1
igraph_vertex
? Mon, 26 Feb 2024 09:02:56 +0100
SIBYLLE ST?CKLI via R-help <r-help at r-project.org> ?????:
> In the following code, which loads the tiff file, I get the following
> error
This warning is definitely worth investigating, but it shouldn't
interrupt your code. Does the figure come out wrong after you see this
warning?
> In doTryCatch(return(expr), name, parentenv, handler) :
2024 Mar 20
1
geom_edge & color
...vertex.frame.color=V(.)$color,
vertex.label.color="white",
vertex.label.cex=0.5,
vertex.label.family="Helvetica",
vertex.label.font=1,
edge.curved=0.5,
edge.width= network,
layout=layout_with_mds(.))
### part 2: ggraph
tiff("figures/AES_network_bymembership.tiff", width=1000, height=700,
res=120) network %>%
ggraph(., layout = "auto")+
geom_edge_arc(curvature=0.3, aes(width=(E(network)$weight/10),
color=c("darkblue", "red")[as.factor(edge_list$relationship)], alpha=0.5)) +
geom_node_point(aes(size = V(network...
2024 Feb 26
1
igraph_vertex
Dear Kimmo
First of all many thanks for the valuable advice to publish code and csv. Noted.
Yes, "edge.width= E(.)$weight" makes definitively sense.
In the following code, which loads the tiff file, I get the following error
tiff("figures/AES_network_bymembership.tiff", width=1000, height=700, res=120)
Warning message:
In doTryCatch(return(expr), name, parentenv, handler) : Character set family not found in the Windows character set database
--> I am unsure if mySQL is the right solution. I have no experience how to change mySQL.
Kind regards
Siby...
2024 Feb 26
1
igraph_vertex
Hi,
a quick additional note: try
"edge.width= E(.)$weight"
instead of the current "edge.width= network". Seems to work and makes a
visible difference...
HTH,
Kimmo
su, 2024-02-25 kello 19:11 +0000, Kimmo Elo kirjoitti:
>
> Hi again,
>
> your code is still not reproducible without modifications, but I
> succeed in getting the data straight. All
2024 Mar 21
1
geom_edge & color
...tex.label.color="white",
> ???? vertex.label.cex=0.5,
> ???? vertex.label.family="Helvetica",
> ???? vertex.label.font=1,
> ???? edge.curved=0.5,
> ???? edge.width= network,
> ???? layout=layout_with_mds(.))
>
> ### part 2: ggraph
> tiff("figures/AES_network_bymembership.tiff", width=1000, height=700,
> res=120) network %>%
> ? ggraph(., layout = "auto")+
> geom_edge_arc(curvature=0.3, aes(width=(E(network)$weight/10),
> color=c("darkblue", "red")[as.factor(edge_list$relationship)],
> alpha=0.5)) +
>
> ? g...
2024 Feb 24
1
igraph_vertex
The reason html is specifically advised against as a format is that it
does things like mangling data such as is happening in your example. You
should repost using settings on you mail client for plain-text. Your
code should start by loading necessary packages. You should also not
post screen output versions of code since that will insert lots of
superfluous "+"'s. Some but not
2024 Mar 22
1
geom_edge & color
....color="white",
> vertex.label.cex=0.5,
> vertex.label.family="Helvetica",
> vertex.label.font=1,
> edge.curved=0.5,
> edge.width= network,
> layout=layout_with_mds(.))
>
> ### part 2: ggraph
> tiff("figures/AES_network_bymembership.tiff", width=1000, height=700,
> res=120) network %>%
> ggraph(., layout = "auto")+
> geom_edge_arc(curvature=0.3, aes(width=(E(network)$weight/10),
> color=c("darkblue", "red")[as.factor(edge_list$relationship)],
> alpha=0.5)) +
>...
2024 Mar 22
1
geom_edge & color
...vertex.label.family="Helvetica",
>
> > ???? vertex.label.font=1,
>
> > ???? edge.curved=0.5,
>
> > ???? edge.width= network,
>
> > ???? layout=layout_with_mds(.))
>
> >
>
> > ### part 2: ggraph
>
> > tiff("figures/AES_network_bymembership.tiff", width=1000, height=700,
>
> > res=120) network %>%
>
> > ? ggraph(., layout = "auto")+
>
> > geom_edge_arc(curvature=0.3, aes(width=(E(network)$weight/10),
>
> > color=c("darkblue", "red")[as.factor(edge_list$rela...