search for: delineate

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

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
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, any help appreciated, David > library("nlme") > Rail Grouped Da...
2016 Apr 24
4
Using read.csv() to import data
...ng data doesn't seem to be working for me. Their example is:> elements <- read.csv(file.path("f:", "elements.csv")) Since I don't have any such file, I am trying to use a file I have. I went to Excel, brought up my file titled JPH_data, and saved it as .csv (comma delineated) on my main hard drive C: Then I entered:>? mammals <- read.csv(file.path("C:", "JPH_data.csv")) I got the following:Error in file(file, "rt") : cannot open the connection In addition: Warning message: In file(file, "rt") : ? cannot open file 'C:/...
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, group)) I know that if you break up the x vector into 2 different vectors then it becomes easy to calculate the z scores for each vector, then you stack them and append them to th...
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 things are dangerous in many ways. there are ways to restrict access to only your local network, bu...
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 robust. Also consider what will happen if someone does a 'yum downgrade'...
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 not pad numbers, the closest I see has to do with stripping spaces from strings. Am I missing something obvious? write.matrix <- function (x, file = "", sep = "\t&quo...
2007 Sep 19
3
layout function for several plots
...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 question: how to place a cross in the middle of the plot to delineate in 4 big fields (containing each 5 plots) Thanks a lot -- ______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal,...
2018 May 29
2
LLVM Block is not the basic block
...> In LLVM, basic blocks can contain function calls. This allows partial and/or full code inlining. The control flow graph (CFG) referred to in LLVM passes only include the LLVM basic blocks inside a function. In LLVM, only tail-call exits are considered terminator instructions (and thus will delineate the basic block boundaries). If you want to see function-call graphs, you may want to look at CallGraphSCCPass instead of FunctionPass. http://llvm.org/docs/WritingAnLLVMPass.html#the-callgraphsccpass-class Cheers -- Dean
2012 Oct 05
0
[LLVMdev] LLVM Loop Vectorizer
>> > In addition, merging the tools will allow the consolidation of >> > target-specific code in OPT. There is code in InstCombine, for >> > example, that specifically deals with x86 intrinsics. This code >> > should be moved into a callback provided by the x86 target. >> > Currently, however, this is not possible because of this >> >
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 understand. I gather I...
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 with 500 x 500 matrix, so hand work is difficult, Any suggestion will be welcome...
2018 May 21
1
mapping groups of states without interior borders
I have been using the "map" function in R and I was wondering if there is a way to map multi-state regions just showing 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
2016 Apr 24
0
Using read.csv() to import data
...#39;t seem to be working for me. > > Their example is:> elements <- read.csv(file.path("f:", "elements.csv")) > Since I don't have any such file, I am trying to use a file I have. I went to Excel, brought up my file titled JPH_data, and saved it as .csv (comma delineated) on my main hard drive C: > > Then I entered:> mammals <- read.csv(file.path("C:", "JPH_data.csv")) > I got the following:Error in file(file, "rt") : cannot open the connection > In addition: Warning message: > In file(file, "rt") : &gt...
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
...above ldif is a subclass of > 'posixAccount' and to use it, you will have to add the 'uid' attribute to > all users, you do not need to add (and in fact should not) the > 'posixAccount' objectClass'. Yup, I did find this objectClass, which I have been using to delineate Centos (SME Server) users from other users in the active directory. Thanks Rowland. -- Greg J. Zartman Board Member Koozali SME Server www.koozali.org SME Server user, contributor, and community member since 2000
2010 Jun 14
1
Times series data file?
...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 year. 254 0 26 NOV 1995 I would like to then use the program I have written to do the analysis. I have attached a small subset text file of data (two observations). Any thoughts would be very helpful. # Read...
2014 Sep 11
1
[Qemu-devel] [PATCH 2/2] virtio-gpu/2d: add docs/specs/virtio-gpu.txt
...endering. In > +the unaccelerated there is no support for DMA transfers from s/unaccelerated/unaccelerated mode/ > + This creates a 2D resource on the host with the specified width, > + height and format. Only a small subset of formats are support. The s/support/supported/ and can you delineate that subset? > + This sets the scanout parameters for a single scanout. The > + resource_id is the resource to be scanned out from, along with a > + rectangle specified by x, y, width and height. Is it worth a mention here or generically up front where 0,0 is in relation to the scree...