Re: [R] igraph_vertex

2024-02-25 Thread Kimmo Elo
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 +, Kimmo Elo kirjoitti: > > Hi again, > > your code is still not reproducible without

Re: [R] igraph_vertex

2024-02-25 Thread Kimmo Elo
Hi again, your code is still not reproducible without modifications, but I succeed in getting the data straight. All read.csv-command are missing 'sep="\t"', it is need to read you tsv-data. And it could be more reproducible if you used e.g. --- snip --- aes<-read.csv(text="A.A B.B

Re: [R] Interactions in regression

2024-02-25 Thread Bert Gunter
It is trivial in R to add whatever decorations to a plot that you would like, but that requires that you go beyond point and click production of graphics and write actual code. If you are unwilling or unable to do this, you are stuck with whatever various packaged graphics functionality

[R] Interactions in regression

2024-02-25 Thread Jacek Kownacki
Hi All, I stumbled upon some topics regarding interactions in anova and regression and packages for tabulating and visualizations the results of them. Here we are: https://stackoverflow.com/questions/77933272/how-to-add-a-reference-level-for-interaction-in-gtsummary-and-sjplot/77935742#77935742 ,

[R] Data consideration in executing pca

2024-02-25 Thread Jiji Sid
Dear R users, I have a txt file named 'data_1.txt' whose first column contains the names of the individuals and the other columns contain the values of four variables X_1,X_2,X_3 and X_4. I read it with R from its location and called it data. I'd like to do a normalized principal component

Re: [R] igraph_vertex

2024-02-25 Thread SIBYLLE STĂ–CKLI via R-help
Dear coummunity Thanks a lot to David and Kimmo. Yes I see now that I need to provide the two raw tables. Find here the reproducible example. Kind regards Sibylle # R-labraries library(circlize) library(ggplot2) library(igraph) library(tidyverse) library(RColorBrewer) library(stringi)