Sponsored Content
Full Discussion: Gnuplot 3d binning
Top Forums Shell Programming and Scripting Gnuplot 3d binning Post 302935223 by garethsays on Friday 13th of February 2015 01:50:11 PM
Old 02-13-2015
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 assigned to that bin.



So if a row is -50, -50
and then next row is again -50, -50

then the value for that bin would be 2

anybody got any idea how to make script in bash to do this??

I need to count the number of rows with x value between -100 and -99 and y value between -100 and -99....
then count the number of rows with x value between -100 and -99 and y value between -99 and -98

etc

and then is should have a 3 column text file which I cna display in gnuplot.
 

8 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. Shell Programming and Scripting

Sampling and Binning- Engineering problem

Hi everyone! Can you please help me with some shell scripting? I have an input file input.txt It has 3 columns (Time, Event, Value) Time event Value 03:38:22 A 57 03:38:23 A 56 03:38:24 B 24 03:38:25 C 51 03:38:26 B 7 03:38:26 ... (7 Replies)
Discussion started by: Needhelp2
7 Replies

3. Shell Programming and Scripting

trimming and binning rows

I could not find this on the search.. I want to know how to trim a row so lets say I have a file that looks like this: bob 88888888888888 and I want to trim column 2 (lets say 4 off the front and end) bob 888888 Also, how would I bin column 2 Lets so I want to add and average... (1 Reply)
Discussion started by: phil_heath
1 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

Binning rows while skipping the first column

Hi I have a file that I want to bin. I am using this code: awk -F'\t' -v r=40 '{for(i=r;i<=NF;i+=r){for(j=0;j<r;j++){sum+=$(i-j)}printf "%s ", sum/r;sum=0}; printf "\n"}' file1 > file2 So basically what this code does is that it will averaging every 40 columns (creating bins of 40). But... (2 Replies)
Discussion started by: phil_heath
2 Replies

6. Emergency UNIX and Linux Support

GNUPLOT help needed

Dear All, I am new to GNUPLOT :D and dont know how it works, but actually there is a LINUX script generated by me which is running & capturing data in real time, the problem is that i want to plot that data in real time using GNUPLOT.:confused: please help.:wall: (5 Replies)
Discussion started by: jojo123
5 Replies

7. Shell Programming and Scripting

gnuplot horizontal

simple question I thought. How do I setup a chart in gnuplot that draws a "upper threshold" for a given set of data. I have the graph charting fine. I have peaks and valleys. I can either setup a number that I want to be the "upper threshold". a horizontal line based either in the data,... (5 Replies)
Discussion started by: kag3ythree
5 Replies

8. Shell Programming and Scripting

problem in binning the data

hi i have some data like this input: 1 apples oranges 234 2 oranges apples 2345 3 grapes bananas 1000000 4 melons banans 10000000 5 bananas apples 5000000 6 mangoes banans 2000000 7 apples bananas 1999999 i want to put all those which are coming between 1 and 999999 in to one bin... (8 Replies)
Discussion started by: anurupa777
8 Replies
GNUPLOT(1)						      General Commands Manual							GNUPLOT(1)

NAME
gnuplot - an interactive plotting program SYNOPSIS
gnuplot [X11 options] [options] [file ...] DESCRIPTION
Gnuplot is a command-driven interactive function plotting program. If file names are given on the command line, gnuplot loads each file with the load command, in the order specified, and exits after the last file is processed. If no files are given, gnuplot prompts for interactive commands. Here are some of its features: Plots any number of functions, built up of C operators, C library functions, and some things C doesn't have like **, sgn(), etc. User-defined constants and functions. All computations performed in the complex domain. Just the real part is plotted by default, but functions like imag() and abs() and arg() are available to override this. Also support for plotting data files, to compare actual data to theoretical curves. Nonlinear least-squares fitting. 2D plots with mouse-controlled zooming. 3D plots with mouse-controlled point of view. User-defined X and Y ranges (optional auto-ranging), smart axes scaling, smart tic marks. Labelling of X and Y axes. Shell escapes and command line substitution. Load and save capability. Support for many output devices and file formats. Output redirection. OPTIONS
-p, --persist lets plot windows survive after main gnuplot program exits. -e "command list" executes the requested commands before loading the next input file. -h, --help print summary of usage -V show current version X11 OPTIONS Gnuplot provides the x11 terminal type for use with X servers. This terminal type is set automatically at startup if the DISPLAY environ- ment variable is set, if the TERM environment variable is set to xterm, or if the -display command line option is used. For terminal type x11, gnuplot accepts the standard X Toolkit options and resources such as geometry, font, and background. See the X(1) man page for a description of the options. In addition to the X Toolkit options: -clear requests that the window be cleared momentarily before a new plot is displayed. -gray requests grayscale rendering on grayscale or color displays. (Grayscale displays receive monochrome rendering by default.) -mono forces monochrome rendering on color displays. -raise raises the plot window after each plot. -noraise does not raise the plot window after each plot. -tvtwm requests that geometry specifications for position of the window be made relative to the currently displayed portion of the virtual root. These options may also be controlled with resources in your .Xdefaults file. For example: gnuplot*gray: on . Gnuplot provides a command line option (-pointsize v) and a resource (gnuplot*pointsize: v) to control the size of points plotted with the "points" plotting style. The value v is a real number (greater than 0 and less than or equal to ten) used as a scaling factor for point sizes. For example, -pointsize 2 uses points twice the default size, and -pointsize 0.5 uses points half the normal size. For monochrome displays, gnuplot does not honor foreground or background colors. The default is black-on-white. -rv or gnuplot*reverseV- ideo: on requests white-on-black. For color displays gnuplot honors the following resources (shown here with default values). The values may be color names in the X11 rgb.txt file on your system, hexadecimal RGB color specifications (see X11 documentation), or a color name followed by a comma and an intensity value from 0 to 1. For example, blue,.5 means a half intensity blue. gnuplot*background: white gnuplot*textColor: black gnuplot*borderColor: black gnuplot*axisColor: black gnuplot*line1Color: red gnuplot*line2Color: green gnuplot*line3Color: blue gnuplot*line4Color: magenta gnuplot*line5Color: cyan gnuplot*line6Color: sienna gnuplot*line7Color: orange gnuplot*line8Color: coral When -gray is selected, gnuplot honors the following resources for grayscale or color displays (shown here with default values). Note that the default background is black. gnuplot*background: black gnuplot*textGray: white gnuplot*borderGray: gray50 gnuplot*axisGray: gray50 gnuplot*line1Gray: gray100 gnuplot*line2Gray: gray60 gnuplot*line3Gray: gray80 gnuplot*line4Gray: gray40 gnuplot*line5Gray: gray90 gnuplot*line6Gray: gray50 gnuplot*line7Gray: gray70 gnuplot*line8Gray: gray30 Gnuplot honors the following resources for setting the width in pixels of plot lines (shown here with default values.) 0 or 1 means a mini- mal width line of 1 pixel width. A value of 2 or 3 may improve the appearance of some plots. gnuplot*borderWidth: 2 gnuplot*axisWidth: 0 gnuplot*line1Width: 0 gnuplot*line2Width: 0 gnuplot*line3Width: 0 gnuplot*line4Width: 0 gnuplot*line5Width: 0 gnuplot*line6Width: 0 gnuplot*line7Width: 0 gnuplot*line8Width: 0 Gnuplot honors the following resources for setting the dash style used for plotting lines. 0 means a solid line. A 2 digit number jk (j and k are >= 1 and <= 9) means a dashed line with a repeated pattern of j pixels on followed by k pixels off. For example, '16' is a "dotted" line with 1 pixel on followed by 6 pixels off. More elaborate on/off patterns can be specified with a 4 digit value. For exam- ple, '4441' is 4 on, 4 off, 4 on, 1 off. The default values shown below are for monochrome displays or monochrome rendering on color or grayscale displays. For color displays, the defaults for all are 0 (solid line) except for axisDashes which defaults to a '16' dotted line. gnuplot*borderDashes: 0 gnuplot*axisDashes: 16 gnuplot*line1Dashes: 0 gnuplot*line2Dashes: 42 gnuplot*line3Dashes: 13 gnuplot*line4Dashes: 44 gnuplot*line5Dashes: 15 gnuplot*line6Dashes: 4441 gnuplot*line7Dashes: 42 gnuplot*line8Dashes: 13 The size or aspect ratio of a plot may be changed by resizing the gnuplot window. ENVIRONMENT
A number of shell environment variables are understood by gnuplot. None of these are required. GNUTERM The name of the terminal type to be used. This overrides any terminal type sensed by gnuplot on start-up, but is itself overridden by the .gnuplot (or equivalent) start-up file (see FILES and "help start-up") and, of course, by later explicit changes. GNUHELP The pathname of the HELP file (gnuplot.gih). HOME The name of a directory to search for a .gnuplot file if none is found in the current directory. PAGER An output filter for help messages. SHELL The program used for the "shell" command. FIT_SCRIPT Specifies a gnuplot command to be executed when a fit is interrupted---see "help fit". FIT_LOG The name of the logfile maintained by fit. GNUPLOT_LIB Additional search directories for data and command files. The variable may contain a single directory name, or a list of directories separated by ':'. The contents of GNUPLOT_LIB are appended to the "loadpath" variable, but not saved with the "save" and "save set" commands. GDFONTPATH Several gnuplot terminal drivers access TrueType fonts via the gd library. This variable gives the font search path for these driv- ers. GNUPLOT_DEFAULT_GDFONT The default font for the terminal drivers that access TrueType fonts via the gd library. GNUPLOT_FONTPATH The font search path used by the postscript terminal. The format is the same as for GNUPLOT_LIB. The contents of GNUPLOT_FONTPATH are appended to the "fontpath" variable, but not saved with the "save" and "save set" commands. GNUPLOT_PS_DIR Used by the postscript driver to locate external prologue files. Depending on the build process, gnuplot contains either a builtin copy of those files or simply a default hardcoded path. Use this variable to test the postscript terminal with custom prologue files. See "help postscript prologue". FILES
.gnuplot Gnuplot looks for this initialization file, first in the current directory, then in the HOME directory. It may contain any legal gnuplot commands, but typically they are limited to setting the terminal and defining frequently-used functions or variables. fit.log The default name of the logfile maintained by fit. AUTHORS
Thomas Williams, Pixar Corporation, (gnuplot-info@lists.sourceforge.net) and Colin Kelley. Additions for labelling by Russell Lang, Monash University, Australia. (rjl@monu1.cc.monash.edu.au) Further additions by David Kotz, Dartmouth College, New Hampshire, USA (formerly of Duke University, North Carolina, USA). (David.Kotz@Dartmouth.edu) BUGS
See the help bugs command in gnuplot. SEE ALSO
See the printed manual or the on-line help for details on specific commands. X(1). 4th Berkeley Distribution 7 October 2008 GNUPLOT(1)
All times are GMT -4. The time now is 07:48 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy