search for: delineation

Displaying 20 results from an estimated 126 matches for "delineation".

2010 Mar 24
1
shading an area of a graphic
Colleagues OS 10.5 R: 2.10.1 I have a simple x-y plot for which I would like to shade the lower (or upper) part of the interior region (i.e., the area bounded by the axes). If the delineation between top and bottom were linear, it would be use to use the polygon function. However, the delineation is a curve (which I can describe by an equation). In theory, I could divide the x-axis into a large number of regions, then draw a series of polygons side by side, the top / bottom borders of...
2007 Oct 12
2
Basic plot question: Figure 1.1 Pinheiro & Bates
All, Sorry for overly simplistic question, but I can't seem to remember how to create the basic plot shown in Figure 1.1 of Pinheiro & Bates (2004; p.4). The y-axis delineates a factor (Rail) while the x-axis displays the distribution of a continuous variable (time) according to each level of the factor. Didn't see it in archives but perhaps I'm not searching on correct key words,
2016 Apr 24
4
Using read.csv() to import data
I am just beginning to learn R, using _R for Dummies_ by Andrie de Vries and Joris Meys. I am using Windows 7, and RGui (64-bit) version 3.0.2. I have reached the chapter on "Getting Data Into and Out of R." But the code they use for importing data doesn't seem to be working for me. Their example is:> elements <- read.csv(file.path("f:", "elements.csv"))
2007 Sep 26
2
Getting group-wise standard scores of a vector
Hi, I want to be able to create a vector of z-scores from a vector of continuous data, conditional on a group membership vector. Say you have 20 numbers distributed normally with a mean of 50 and an sd of 10: x <- rnorm(20, 50, 10) Then you have a vector that delineates 2 groups within x: group <- sort(rep(c("A", "B"), 10)) test.data <- data.frame(cbind(x,
2015 Sep 06
4
How to learn abut what is in the samba ldap directory
I once upon a time worked with DAP and watched LDAP being created as something that actually could work... Showing my age here. What little I have done with LDAP has been very clearly delineated so that I knew what was being done. Here, with Samba, and I guess actually, it is AD, I have not found that. Yet. But there are always tools. So I am looking at: phpLDAPadmin I know these
2015 Jun 28
3
Old and new package version numbers during RPM update
On 29 June 2015 at 07:37, John R Pierce <pierce at hogranch.com> wrote: > so a regex looking for "system:" vs "system {" should nicely delineate > these. I dunno, I might even put that into the conversion utility and > have it just quit if the file is already in the new format, and always run > it. > ?+1 for the idempotent approach. IMHO much more
2004 Dec 23
2
Get rid of space padding
I'm currently using the below function from some library (MASS?) for writing my data out to file. I'm using it instead of plain old "write" because it does buffering. The problem that I'm having is that the numbers are space padded, but I need true tab-delineated files. It looks like the spaces are coming from 'format', but I don't see an option for format to
2007 Sep 19
3
layout function for several plots
Dear all I try to print 9 plots on a page, arranged as the code shows below. nf <- layout(matrix(c(1,0,2,0,0,3,0,4,0,5,0,6,0,0,0,0,7,0,8,9), 10,2)) layout.show(nf) but when I try to plot, an error message Fehler in plot.new() : Grafikr?nder zu gro? appears to verify p.e. with plot(runif(10:1)) i tried with plot(runif(10:1), ann=F) to produce more space, but neither. The second
2018 May 29
2
LLVM Block is not the basic block
> On 29 May 2018, at 22:40, Muhui Jiang via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > Hi > > Sorry, that the previous email is sent out before I complete it due to my mistake. Please read this > > I am using the LLVM function pass to help me to do code analysis. However, I found that the block LLVM identified will ignore the function call. > > For
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
...o you think that we should move LSR into OPT once that is possible? > In my mind (and it sounds like Chandler may disagree) opt is generally for IR level passes and llc handles codegen along with "oh while we're here we've got some machine IR passes as well". I rather like the delineation since it helps keep more things separate unless absolutely necessary. I'm definitely not wedded to the idea of multiple tools as long as the layering that we have persists. -eric
2015 Jun 28
2
Old and new package version numbers during RPM update
On 28/06/15 17:50, John R Pierce wrote: > On 6/27/2015 5:38 PM, Anand Buddhdev wrote: >> Thanks Joseph. I am aware of this option, but it would be only a last >> resort, because checking the format of the config file is error-prone. > > why doesn't the config file have the version in it ? not having that > makes your whole system error prone. Perhaps I wasn't
2006 Sep 28
2
a decimal aligned column
Hello, For numbers in the range 100 to 100,000,000 I'd like to decimal align a right-justified comma-delineated column of numbers, but I haven't been able to work out the proper format statement. format(num, justify=right, width=15, big.mark=",") gets me close, but numbers larger than 1,000,000 project a digit beyond the right edge of the column, which I really don't
2007 Sep 24
1
GWR modeling with dummy variables
Hi everyone, I'm working with a modest sized spatial database consisting of 1513 records and 50 variables. Fourteen of these are dummy variables delineating regional planning councils. I'm trying to understand how to integrate the dummy variables in the geographically weight regression model. I'm reading Fotheringham et.al. and see reference to using dummy variables, but I don't
2009 Jul 22
1
R extract vertices for polygon
Dear R users, I'm trying to extract from a given matrix (GROUP) the coordinates of the vertices of the different groups (i.e. 3, 7, 1 . . .) to plot the polygons to delineate the area in which each group "wins" and colour it diferentially. I can make a simple point plot, but I would like to add polygons with full colored area. The example is with a 5x5 matrix, but I'm working
2018 May 21
1
mapping groups of states without interior borders
...the outline of the region without interior state borders. For instance, I am calculating aggregated statistics using 10 multi-state regions. I would like to color-code individual states based on my dataset but then to create black outlines around each of these 10 regions so that the map shows the delineations of the various regions for which I am reporting aggregated statistics. When I use: map('state', region = "Idaho", "Washington", "Oregon", add = TRUE, color = "black") I get a plot that includes interior boundaries between these 3 states instead of a...
2016 Apr 24
0
Using read.csv() to import data
On 24/04/2016 4:30 PM, Jason Hernandez via R-help wrote: > I am just beginning to learn R, using _R for Dummies_ by Andrie de Vries and Joris Meys. I am using Windows 7, and RGui (64-bit) version 3.0.2. I have reached the chapter on "Getting Data Into and Out of R." But the code they use for importing data doesn't seem to be working for me. > > Their example is:> elements
2000 Dec 17
1
AW: Permutations
Niels Waller wrote: > Does anyone know of an R (or S-PLUS) function for delineating all possible > combinations and permutations? The following function delivers all permutations of 1:n. all.perm <- function(n) { p <- matrix(1, ncol = 1) for (i in 2:n) { p <- pp <- cbind(p, i) v <- c(1:i, 1:(i - 1)) for (j in 2:i) { v <- v[-1]
2014 Dec 28
1
Samba 4 Active Directory Quotas
On Sat, Dec 27, 2014 at 2:43 AM, Rowland Penny <rowlandpenny at googlemail.com> wrote: > Yes, samba4 comes with a script: oLschema2ldif > Humm... Not liking the errors in this method. Looking at the ldif, I think we could rework this so that one could modify the LDAP schema directly using LDAP syntax. In my case, I'm using Net::LDAP. Something more like this: dn:
2010 Jun 14
1
Times series data file?
Hello, I currently splitting a file into individual files (time series each separated into one file), the file I read in skips the first four lines and extracts the data columns I need. I was wondering if there is a way for R to automatically scan and separate the files based on the head information? The header delineates the observation with a 254 space time space day space month space
2014 Sep 11
1
[Qemu-devel] [PATCH 2/2] virtio-gpu/2d: add docs/specs/virtio-gpu.txt
On 09/11/2014 09:09 AM, Gerd Hoffmann wrote: > Signed-off-by: Gerd Hoffmann <kraxel at redhat.com> > --- > docs/specs/virtio-gpu.txt | 165 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 165 insertions(+) > create mode 100644 docs/specs/virtio-gpu.txt > > diff --git a/docs/specs/virtio-gpu.txt b/docs/specs/virtio-gpu.txt > new file mode 100644