Sponsored Content
Top Forums UNIX for Beginners Questions & Answers Gnuplot 4.6 : problem with my X axis Post 303046000 by Tim2424 on Tuesday 21st of April 2020 10:16:42 AM
Old 04-21-2020
Quote:
Originally Posted by Neo
Because Gnuplot is setting the labels on the axis based on the width of the chart.

Thanks for your help !

I've increase the width of my graph ( replace 900,520 by 900,800 ) and there is no difference.

I realy don't understand...
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Help with gnuplot

Hi, I am a beginner using UNIX, and was wondering how to use gnuplot from UNIX on my pc. I am connected remotely to my work's UNIX server using Secure Shell Client, and gnuplot won't open a new window when I use the plot command. How do I do this? Moreover, is it possible to save things from the... (0 Replies)
Discussion started by: KTTFB64
0 Replies

2. AIX

Add printer connected to a axis printserver

Hi guys, I have a AIX 4.3 system, and I need to configure a printer, but that printer it's connected to a axis print server. I have lot of years working with unix, but never added a printer in a AIX system. I need to add using "remote print queue", and add the hostname and ip to the /etc/hosts?... (2 Replies)
Discussion started by: uadm26
2 Replies

3. OS X (Apple)

Adjust X & Y screen axis

I'm using my wife's Macbook, and I just noticed that her screen is off axis, but I can't find a way to adjust it. I've tried playing around with resolution in preferences, but nothing. Maybe a terminal command for adjusting the x and y values of the screen? Any and all suggestions welcomed :) (2 Replies)
Discussion started by: andou
2 Replies

4. UNIX and Linux Applications

GNUplot

Hi, I am trying to make a plot of an ASCII file using GNUplot, but I keep getting error msg: for example plot filename.txt It says that (.txt ) is not identified ... I tried to write it without the .txt part, but I also get the error msg. Any idea why? :confused: (1 Reply)
Discussion started by: cosmologist
1 Replies

5. Shell Programming and Scripting

xargs and gnuplot

Hi All, Seems I have an xargs stdin problem that I don't understand. I have a script (call it myscript.sh) that takes the names of one or more file(s) specified on the command line and creates a single gnuplot command file containing multiple records, one for each specified file. Each of... (9 Replies)
Discussion started by: paulianna2002
9 Replies

6. UNIX for Dummies Questions & Answers

GNUPLOT problem

Hi, Im trying to plot a time series with gnuplot. this is my script set xdata time set yrange set timefmt "%H" set xrange set format x "%H:%M:%S" plot "time_vs_times.txt" using 1:2 title 'Interarrival time' with points lw 2 and this is my data 11:14:18 5 11:14:19 10... (10 Replies)
Discussion started by: jamie_123
10 Replies

7. Shell Programming and Scripting

Transposing X and Y axis of CSV data

Hello list, I have a source CSV data file as follows: PC_NAME,MS11-040,MS11-039,MS11-038,MS11-035 abc123,Not Applicable,Not Applicable,Not Applicable,Not Applicable abc987,Not Applicable,Not Applicable,Not Applicable,Not Applicable tnt999,Not Applicable,Not Applicable,Applicable,Not... (2 Replies)
Discussion started by: landossa
2 Replies

8. Shell Programming and Scripting

Problem creating graph with gnuplot with time on x-axis

Let me start by saying I'm new to gnuplot and not very good at unix at all.. Anyway, I'm each minute measuring temperature and humidity and saves the last 60 readings along with time in a textfile, values_minute. The contents of the file is formatted like this: time temperature humidity ... (8 Replies)
Discussion started by: hakro807
8 Replies

9. Shell Programming and Scripting

Gnuplot 3d binning

Hello I have a text file with tens of thousands of rows The format is x y where both x and y can be anything between -100 and +100. What I would like to do is have a 3d gnuplot where there are 10,000 squared or bins and each bin will count how many rows have a value that would be... (1 Reply)
Discussion started by: garethsays
1 Replies
Strip(3pm)						User Contributed Perl Documentation						Strip(3pm)

NAME
Chart::Strip - Draw strip chart type graphs. SYNOPSIS
use Chart::Strip; my $ch = Chart::Strip->new( title => 'Happiness of our Group', # other options ... ); $ch->add_data( $davey_data, { style => 'line', color => 'FF0000', label => 'Davey' } ); $ch->add_data( $jenna_data, { style => 'line', color => '00FF88', label => 'Jenna' } ); print $ch->png(); DESCRIPTION
The Chart::Strip package plots data values versus time graphs, such as used for seismographs, EKGs, or network usage reports. It can plot multiple data sets on one graph. It offers several styles of plots. It automatically determines the proper ranges and labels for both axii. USAGE
Create the Chart $chart = Chart::Strip->new(); $chart = Chart::Strip->new( option1 => value, option2 => value, ); If no options are specified, sensible default values will be used. The following options are recognized: "width" The width of the image "height" The height of the image. "title" The title of the graph. Will be placed centered at the top. "x_label" The label for the x axis. Will be placed centered at the bottom. "y_label" The label for the y axis. Will be placed vertically along the left side. "draw_grid" Should a grid be drawn on the graph? "draw_border" Should a border be drawn around the edge of the image? "draw_tic_labels" Should value labels be shown? "draw_data_labels" Should each data set be labeled? "transparent" Should the background be transparent? "grid_on_top" Should the grid be drawn over the data(1) or below the data(0)? "binary" Use powers of 2 instead of powers of 10 for the y axis labels. "data_label_style" Style for drawing the graph labels. "text" or "box" "thickness" Thickness of lines in pixels. (Requires GD newer than $VERSION). "skip_undefined" Don't draw a line into or out of a datapoint whose value is undefined. If false, undefined values are treated as though they were 0. "boxwidth" Width of boxes for box style graphs. The width may also be specified as "width" in the data options or per point. If no width is specified a reasonable default is used. Adding Data $chart->add_data( $data, $options ); The data should be an array ref of data points. Each data point should be a hash ref containing: { time => $time_t, # must be a unix time_t value => $value, # the data value color => $color, # optional, used for this one point } or, range style graphs should contain: { time => $time_t, # must be a unix time_t min => $low, # the minimum data value max => $high, # the maximum data value color => $color, # optional, used for this one point } and the options may contain: { style => 'line', # graph style: line, filled, range, points, box color => 'FF00FF', # color used for the graph label => 'New England', # name of the data set } points style graphs may specify the point diameter, as "diam" box style graphs may specify the box width, as "width" line and filled graphs may specify a "smooth" parameter, to connect points using smooth curves instead of straight lines. A value of 1 is recommended, larger values will be less smooth. line, points, box, and filled graphs may specify a drop shadow, consisting of a hashref containing "dx", "dy", "dw", and optionally, "color" shadow => { dx => 3, dy => 3, dw => 3, color => 'CCCCCC' } Outputing The Image $chart->png() Will return the PNG image $chart->jpeg() Will return the jpeg image $chart->gd() Will return the underlying GD object. EXAMPLE IMAGES
http://argus.tcp4me.com/shots.html http://search.cpan.org/src/JAW/Chart-Strip-1.07/eg/index.html LICENSE
This software may be copied and distributed under the terms found in the Perl "Artistic License". A copy of the "Artistic License" may be found in the standard Perl distribution. BUGS
There are no known bugs in the module. SEE ALSO
Yellowstone National Park. AUTHOR
Jeff Weisberg - http://www.tcp4me.com perl v5.14.2 2012-03-18 Strip(3pm)
All times are GMT -4. The time now is 09:43 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy