pyPloticus is a python wrapper for libploticus. On my Mandriva 2009.1 system I was having trouble with an undefined symbol error after compiling libploticus...
2205
Stephen Grubb
Stephen.Grubb@...
Jul 15, 2009 5:58 pm
Thanks! I'll include these notes, and the FPIC Makefile mods in the next release. -Steve ________________________________________ From:...
2206
Joshua Simons
jsimons@...
Jul 24, 2009 6:02 pm
I used the second prefab dist example in the handbook as a reference: http://ploticus.sourceforge.net/doc/prefab_dist_ex.html and created my own histogram. My...
2207
travis_bear
travis_bear@...
Jul 24, 2009 6:02 pm
Hi, I am using ploticus 2.32 with the lines prefab to graph network bandwidth use. The numbers involved have many digits, typically 6 or 7. By default...
2208
Stephen Grubb
Stephen.Grubb@...
Jul 27, 2009 3:03 pm
Hello Josh, short answer - you are getting the expected behavior ploticus uses native x11 fonts, and x11 doesn't support vertical text. Steve ...
2209
dpa2te
dpa2te@...
Jul 27, 2009 3:03 pm
Hi, i'm looking for a simple way to draw arrays directly in png format. I thought a "proc array" would exist in Ploticus but i didn't find it. I tried to do it...
2210
Stephen Grubb
Stephen.Grubb@...
Jul 27, 2009 3:03 pm
Hello, use something like this: yinc="100 1000" this should put a stub every 100,000 but show numbers in the 100's (native value divided by 1000)... you...
2211
travis_bear
travis_bear@...
Jul 28, 2009 7:54 pm
Thank you Steve. That was a very useful suggestion. The charts look great now. -Travis...
2212
Stephen Grubb
Stephen.Grubb@...
Jul 28, 2009 7:55 pm
Hello, can you supply an example of an "array plot" (such as a url). I'd like to know exactly what these are. -Steve ________________________________________...
2213
Joshua Simons
jsimons@...
Jul 28, 2009 7:55 pm
Steve, It looks like X11R6 added some matrix transformation capabilities to its fonts support, so it may be possible now to write the text vertically. See this...
2214
dpa2te
denis.patte@...
Aug 11, 2009 8:42 pm
Hello, first of all, sorry to be late but I was off for a few days. Well, the rigth word should be "table" : I would like to draw tables such html can do but...
2215
beribboned
ben@...
Aug 13, 2009 5:21 pm
Is there a way (using prefabs) to create a bubble plot which is essentially a scatterplot in which the plotting symbol diameter or area is proportional to a...
2216
beribboned
ben@...
Aug 13, 2009 6:15 pm
have a look at http://www.thregr.org/~wavexx/software/trend/ or you might be able to modify http://gapcmon.sourceforge.net/ ( I know this group is for...
2217
Stephen Grubb
Stephen.Grubb@...
Aug 13, 2009 6:15 pm
Hello, The underlying engine has this capability but the scat prefab does not. You can easily add it... go into your ./prefabs directory and edit scat.pl......
2218
beribboned
ben@...
Aug 18, 2009 4:21 pm
Ok, the sizefield and sizescale worked as advertised. I haven't got the colorfield to work yet: datafile: 3 3 20.45 black 5 1 1.00 blue 0...
2219
Stephen Grubb
Stephen.Grubb@...
Aug 18, 2009 4:47 pm
Hello Ben, I tried your example and the colors seem to work here, using x11 and image output formats... see attached img. echo "3 3 20.45 black 5 1 1.00 blue 0...
2220
beribboned
ben@...
Sep 1, 2009 11:54 am
Is ps/eps output incompatible with colorfield? I searched and did not yet find that restriction....
2221
beribboned
ben@...
Sep 1, 2009 11:55 am
I am making a concept chart using the #proc annotate method based on the "simple E-R diagram" example on http://ploticus.sourceforge.net/doc/clickmap.html When...
2222
Stephen Grubb
Stephen.Grubb@...
Sep 9, 2009 4:59 pm
Hello, did you try increasing -pagesize ? Steve ________________________________________ From: ploticus@yahoogroups.com [ploticus@yahoogroups.com] On Behalf Of...
2223
Stephen Grubb
Stephen.Grubb@...
Sep 9, 2009 5:00 pm
Hello, Are you able to get the desired results if you produce an img? If so, then it indicates that the problem may be specific to ps/eps. Let me know,...
2224
beribboned
ben@...
Sep 11, 2009 6:14 pm
Thanks. I experimented with the pagesize option and found that I need to increase the pixsize option appropriately to make it all work out pretty. In my case,...
Hello Champ, If you built ploticus from the source code you can raise the limit yourself. cd src edit clickmap.c find this: #define MAXENTRIES 500 and change...
2226
chmarrcheetah
chris@...
Oct 20, 2009 2:25 pm
Hi folks! I respectfully submit the following patch for the next release of ploticus. It makes some super-trivial but useful changes to a prefab script. We use...
2227
berthold_mayer
berthold_mayer@...
Oct 20, 2009 2:25 pm
Hello everyone, I want to generate a gif-file using 'proc scatterplot39;. Further I want to use the clickmap-mouseover-feature of ploticus, so that a label...
2228
xuxa
kris@...
Oct 21, 2009 5:34 pm
I am a musician tracking my daily practice time in four categories. I would like to have a graph that represents one day's practice as a stacked bar totalling...
Hello Berthold, mouseover on gif images is only possible when viewing an html page via a web browser. the <area.. > tags that pl writtes to stdout need to be...
ploticus, Trying to make the world's simplest bar graph here, with this script: #proc getdata file: wine.dat showdata: yes delim: whitespace fieldnames: wine...
Hello, it looks like your x axis needs to be categories for what you're trying to do. See my edits below. -Steve ... axis: x datafield: wine ... xscaletype:...