Search found 13 matches
- 17 May 2012 08:50
- Forum: How-To and Troubleshooting
- Topic: Strange Behaviour in Linux
- Replies: 0
- Views: 2887
Strange Behaviour in Linux
Does anyone else have a problem with Gephi aesthetics on Linux? I've got really big fonts and I don't know why. I'm pretty sure it didn't always look like this, and other Java applications look fine (e.g. JDownloader). Normally the fonts are smaller and the menu isn't grey. I've uploaded a screensho...
- 28 Sep 2011 03:30
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] Degree Power Law Notation?
- Replies: 5
- Views: 7264
Re: Degree Power Law Notation?
Is there any other way to do this in Gephi?admin wrote:Not for the moment.
- 20 Sep 2011 03:24
- Forum: Layouts
- Topic: ForceAtlas publication
- Replies: 33
- Views: 266685
Re: ForceAtlas publication
Hello. I know there's been some talk about a ForceAtlas(2) publication, but I was wondering whether it would be possible to explain how all of the ForceAtlas2 settings factor into the algorithm? Say, perhaps, through the use of a formula? The reason why I ask is because if we cite Gephi in papers, i...
- 10 Aug 2011 09:19
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] Wiring Probability (Random Graph Generator)
- Replies: 4
- Views: 14666
Re: Wiring Probability (Random Graph Generator)
Well, This generator is based on Watts & Strogatz Alpha Model. The wiring probability is β from the description in Wikipedia: http://en.wikipedia.org/wiki/Watts_and_Strogatz_model So, as they write, varying this value makes it possible to interpolate between a regular lattice (β = 0) and a random g...
- 09 Aug 2011 11:24
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] Wiring Probability (Random Graph Generator)
- Replies: 4
- Views: 14666
[SOLVED] Wiring Probability (Random Graph Generator)
Hello, Would someone be able to explain the theoretical underpinning behind the wiring probability for the random graph generator? What does the value represent? Is there some ratio to calculate with respect to the number of nodes when investigating the small-world phenomenon? Forgive my inexperienc...
- 04 Aug 2011 03:43
- Forum: Statistics, Clustering & Data Lab
- Topic: [SOLVED] Degree Power Law Notation?
- Replies: 5
- Views: 7264
Re: Degree Power Law Notation?
Are there any plans to bring this metric back?admin wrote:Hi,,
The degree power law has heen removed on the latest version (0.8alpha) due to many problems, one of them is because it is not precise enough to decide if there is a good fit or not.
- 03 Aug 2011 13:08
- Forum: Data Import / Export
- Topic: Anonymize Data
- Replies: 12
- Views: 12622
Re: Anonymize Data
In the case of parallel edges, I suggest to alert the user and make the "road Import" to act as a CSV file importer, adding weight, if possible, and leave blank the other attributes. I opened a mistake. Not quite sure I understand. Would you be able to elaborate? Are you referring to the Python cod...
- 03 Aug 2011 12:49
- Forum: Data Import / Export
- Topic: Anonymize Data
- Replies: 12
- Views: 12622
Re: Anonymize Data
In the case of parallel edges, I suggest to alert the user and make the "road Import" to act as a CSV file importer, adding weight, if possible, and leave blank the other attributes. I opened a mistake. Not quite sure I understand. Would you be able to elaborate? Are you referring to the Python code?
- 02 Aug 2011 05:00
- Forum: Data Import / Export
- Topic: Anonymize Data
- Replies: 12
- Views: 12622
Re: Anonymize Data
In addition to the above proposed solutions, I have obtained the following Python code to do anonymize data programmatically: import sys hashes = {} count = 1 with open(sys.argv[1]) as f1: for line in f1: actors = line.strip("\n").split(',') hashActors = [] for actor in actors: try: hashActors.appen...
- 01 Aug 2011 20:51
- Forum: Data Import / Export
- Topic: Anonymize Data
- Replies: 12
- Views: 12622
Re: Anonymize Data
Hmm, can you walk me through an example?eduramiba wrote:It should be a short code. We can import the file with Gephi toolkit, set the Nodes Ids to 1,2,3... and export it.