Search found 10 matches
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1275: count(): Parameter must be an array or an object that implements Countable- 03 Aug 2012 09:03
- Forum: Statistics, Clustering & Data Lab
- Topic: Speed and accuracy of Louvain method in Gephi
- Replies: 9
- Views: 17119
Re: Speed and accuracy of Louvain method in Gephi
Concerning speed: I do not know how Louvain is implemented in Pajek. In Gephi, it is not as efficient as it could since the whole graph is copied and the algorithm works on its own copy of the graph. Another optimisation is to stop the algorithm when the modularity does not raise of more than epsilo...
- 03 May 2012 10:04
- Forum: Layouts
- Topic: Using modularity communities to layout graph?
- Replies: 5
- Views: 14603
Re: Using modularity communities to layout graph?
Hi,
There is no way to directly use the modularity. One good layout if you want to show the cluster of your graph is OpenOrd, available in the plugins.
There is no way to directly use the modularity. One good layout if you want to show the cluster of your graph is OpenOrd, available in the plugins.
- 03 May 2012 09:57
- Forum: Statistics, Clustering & Data Lab
- Topic: Resolution in Modularity
- Replies: 4
- Views: 7185
Re: Resolution in Modularity
Hi,
It is described in :
R. Lambiotte, J.-C. Delvenne, M. Barahona Laplacian Dynamics and Multiscale Modular Structure in Networks 2009
It is the simple version which just add a *t somewhere in the modularity definition.
It is described in :
R. Lambiotte, J.-C. Delvenne, M. Barahona Laplacian Dynamics and Multiscale Modular Structure in Networks 2009
It is the simple version which just add a *t somewhere in the modularity definition.
- 03 Feb 2012 14:09
- Forum: Statistics, Clustering & Data Lab
- Topic: Modularity for directed / weighted graphs?
- Replies: 3
- Views: 7515
Re: Modularity for directed / weighted graphs?
Hi, Currently, Gephi does not handle directions and weights. I am working on using weight for modularity, it needs debugging but I will do my best to finish it for the next release. It is more difficult for directed graphs, because modularity is not defined for them. Community detection is IMHO stil...
- 24 Jun 2011 09:29
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] code download
- Replies: 1
- Views: 2770
Re: code download
Hello, The whole gephi source is at https://launchpad.net/gephi/+download You can also browse it at http://bazaar.launchpad.net/~gephi.team/gephi/0.8/files Finally, modularity code is at http://bazaar.launchpad.net/~gephi.team/gephi/0.8/view/head:/StatisticsPlugin/src/org/gephi/statistics/plugin/Mod...
- 29 Apr 2011 09:22
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] About Community detection
- Replies: 2
- Views: 4469
Re: About Community detection
It is more complicated I think. "First level" is imprecise, it could be the first level found by the algorithm (the one whith lowest modularity, but the highest number of communities) or the level the closest of the root (the one with the lowest number of communities and the highest modularity). It ...
- 28 Apr 2011 09:05
- Forum: Statistics, Clustering & Data Lab
- Topic: Clustering coefficient
- Replies: 7
- Views: 12192
Re: Clustering coefficient
It seems you are using Gephi 0.7 which contains a bug in the algorithm to count triangles. It should be already solved in gephi 0.8 which gives 0.267 for your graph and produces also the number of triangles a node is involved in to verify.
- 06 Apr 2011 14:37
- Forum: GSoC
- Topic: Porting of Gython
- Replies: 23
- Views: 91972
Re: Porting of Gython
It is as Luizibeiro said. The plugin uses java scripting api and jython to execute the script. It builds one object of type ScriptExporter and push it into the script with the name gephi. This object gives access to Lookup and models API of gephi to the script, and thus the script can do almost ever...
- 31 Mar 2011 10:55
- Forum: GSoC
- Topic: Porting of Gython
- Replies: 23
- Views: 91972
Re: Porting of Gython
Hello, First release of the plugin! Documentation and examples: http://wiki.gephi.org/index.php/Script_plugin nbm: http://perso.crans.org/aynaud/software/org-gephi-scriptconsole.nbm sources: http://perso.crans.org/aynaud/software/sources.zip These are temporary. I use this because the gephi website ...
- 25 Mar 2011 18:46
- Forum: GSoC
- Topic: Porting of Gython
- Replies: 23
- Views: 91972
Re: Porting of Gython
Hello, Sorry to appear like that in the thread, I do not read gephi forum very regularly. I am currently writing a similar python plugin on my spare time and the main difficulty is clearly not the language of the console but the api. Writting a console using one JSR 223 language is done(I use now jy...