search for: vertices

Displaying 20 results from an estimated 2128 matches for "vertices".

2007 Aug 13
4
vertically oriented color key in heatmaps
Hi, I have some data which I was plotting using image(). I wanted to add a vertical color key to the plot and I found that heatmap.2 in gplots does let me add a color key. However, I was thinking of a vertical bar with the color range rather than the style that gplots provides. Is there any package (or code snippet) that would let me add a vertical color key to an image() or heatmap
2010 Nov 09
1
ggplot2: facet_grid with different vertical lines on each facet
Hello, I am plotting many histograms together using facet_grid in ggplot2. However, I want to then add a vertical line to each histogram, or facet, each of which vertical lines are at different x-values. The following example adds all vertical lines to each facet: ggplot(data,aes(values)) + geom_histogram() + facet_grid(.~variable) + geom_vline(xintercept=c(5,10,15)) How can I add a vertical
2009 Jul 03
3
Color of ecdf plots
Hi. I have the following two ecdf plots in one graph: plot( ecdf(....), do.points=FALSE, verticals=TRUE, main=paste("Ecdf of distances ",DIM,sep=""), col="red" ); lines( ecdf(....), do.points=FALSE, verticals=TRUE ); How do I change the color of the resulting graph? Adding col="red" to either plot or lines results in an error
2007 Dec 06
3
Vertical text in a plot
Hi, Consider this simple plot: > plot(1:25,runif(25,0,1),ylab="First Y-axis label",xaxt="n") I want to add an additional axis as > axis(4,at=seq(0.2,1,.2), labels=1:5) I have no idea how to add now the title of the new axis as "Second Y-axis label". I want this text to be vertically directed from bottom to top. I can't find the function in text() to write
2009 Oct 10
2
Nelder-Mead with output of simplex vertices
Greetings! I want to follow the evolution of a Nelder-Mead function minimisation (a function of 2 variables). Hence each simplex will have 3 vertices. Therefore I would like to have a function which can output the coordinates of the 3 vertices after each new simplex is generated. However, there seems to be no way (which I can detect) of extracting this information from optim() (the 'trace' argument to 'control' does not seem to...
2010 Jul 07
4
Haml ... ending a line with a | (vertical bar)
I don''t know if HAML questions are appropriate here ... but here goes. How does on end line to be rendered with a vertical bar (|) ? The vertical bar is a line continuation, aparently. Doing \| cause the vertical bar to be emitted ... as well as the backslash. -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups
2009 Feb 16
1
Help with rgl
...triangles3d(rbind(coord.1,coord.4,coord.5),color=pyrcolor) triangles3d(rbind(coord.1,coord.2,coord.5),color=pyrcolor) triangles3d(rbind(coord.2,coord.3,coord.5),color=pyrcolor) triangles3d(rbind(coord.3,coord.4,coord.5),color=pyrcolor) quads3d(rbind(coord.1,coord.2,coord.3,coord.4),color=pyrcolor) vertices = LETTERS[1:5] text3d(coord.1,text=vertices[1],adj=1,color="blue") text3d(coord.2,text=vertices[2],adj=0,color="blue") text3d(coord.3,text=vertices[3],adj=0,color="blue") text3d(coord.4,text=vertices[4],adj=1,color="blue") text3d(coord.5,text=vertices[5],adj=...
2010 Jun 02
0
Segmentation fault on paste a long text into Scintilla
Hi there, In bundled samples\scintilla.rb, paste a long one-line text (see below) caused segmentation fault scintilla.rb:166: [BUG] Segmentation fault ruby 1.8.7 (2010-01-10 patchlevel 249) [i386-mingw32] However, It was Ok if not including last 100 or so characters (worked on 13100 characters). Cheers, Zhimin -- text copied <tbody><tr><td
2010 Jul 25
1
Using Vertical IP2007 phones with Asterisk?
I recently inherited a Vertical Xcelerator IP system with IP2007 phones. I would like to use the phones with an Asterisk system instead, but there doesn't seem to be much information on it on Google. Is it even possible? These phones claim that they are SIP phones. Thanks! Kevin -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Mar 11
2
vertical lines in R plot
Dear All, May I seek your suggestion on a simple issue. I want to draw vertical lines at some positions in the following R plot. To be more specific, I wish to draw vertical lines at d=c(5.0,5.5,6) and they should go till p=c(0.12,0.60,0.20) . I haven't found any way out, though made several attempts. Please run the following commands first if you are interested in!
2009 Feb 05
0
[LLVMdev] Linking with OpenMP support
I'm trying to compile and link an x86 assembly file with OpenMP calls using llvm-gcc 4.2.1 and I get the following errors: /afs/ cs.wisc.edu/p/vertical/tools/llvm-gcc-4.2/bin/../lib/gcc/i686-pc-linux-gnu/4.2.1/../../../libgomp.a(team.o): In function `gomp_team_start': (.text+0x15a): undefined reference to `__sync_bool_compare_and_swap_4' /afs/
2006 Nov 30
2
*** caught segfault *** error
...Attaching package: 'foreign' The following object(s) are masked from package:shapefiles : read.dbf The following object(s) are masked from package:shapefiles : write.dbf > ndistricts <- length(districts.shp$shp$shp) > keys <- districts.shp$dbf$dbf$DISTRICT_2 > vertices <- list() > for(i in 1:ndistricts){ + vertices[[i]] <- districts.shp$shp$shp[[i]]$points + } > > districts.map <- list(codigo=keys, vertices=vertices)#, nombre=wardnames) > > xymin <- apply(t(sapply(districts.map$vertices, apply, 2, min)), 2, min) > xymax &lt...
2010 Mar 16
3
boxplot, vertical position of x-axis labels
hello, i can't figure out how to change the vertical position of my x axis labels.. boxplot(c(1:12)~c(rep("1",6),rep("2",6)),at=c(1,2), col=c(0,"grey"),las=1,xaxt="n") ### i put paragraphs in the x-labels because of limited horizontal space axis(1,at=c(1,2),adj=1,labels=c("Salix Scrub","Tall Forb")) ...the labels are one line
2011 Dec 30
3
vertically stacked area plot?
Dear all, I would like to create a vertically stacked area chart in R. The data are presented in the attached text file. I would like to see the trend in values for the different groups with sediment depth (that's why I would like to create a vertically stacked chart; normally sed_depth should be = x, but I want it plotted on the y-axis). In the packages available to create stacked area
2009 Jun 23
2
Plot with a vertical line at zero on x axis
Hallo, All, I cannot add one straight vertical line at 0.0 on x axis using the following data and R code: y<-c(0.037790309,0.020307312,0.021109653,0.050216689, 0.026979484,0.027619193,0.024070163,0.021996969, 0.007831769,0.020065109,0.005903177,0.008182403) d<-data.frame(cbind(y,seq(1:12))) colnames(d)<-c("y","x") attach(d)
2008 May 21
2
Labeling a plot's x-axis with 12 strings, vertically oriented.
Hello, I really enjoy using R for my plotting. I have a modest plot, containing 24 data points, across 2 lines,12 points each. Ideally, the x-axis would be labeled with a series of strings, oriented vertically. Here is the R container holding the Search strings: > Search [1] Route To: NCENGR Status: Open CR Route To: NCENGR [3] Status: Cancel
2008 Jun 13
1
stretching text vertically
I'd like to stretch a plotted character vertically, to create a "sequence logo". Is there a parameter to allow stretching text() output vertically or squeeze horizontally? I know about Oliver Bembom's seqLogo library, but this generates a sequence logo plot using a separate bitmap device. I want to recreate the sequence logo *inside* an existing plot. Alternatively, is
2004 May 16
1
Vertical applications?
Has anyone created any vertical applications, e.g. real estate, for Asterisk? I'm trying to market * in my area (Seattle) and would like to offer vertical apps to my customers. These apps will help me compete with the big guys like Cisco, Avaya, etc. If you have an app, I'd be interested in discussing how my company (www.rainiernetworks.com) might license it from you. The app does not
2012 May 02
0
Plotting network without overlapping vertices
Hello, I am using the plot.igraph function in the igraph package to plot a network. How do I keep vertices from overlapping? One option would be to pass an argument that restricts vertices to occupy the same coordinates given their size. A second option would be to increase the area of the plot (and multiply the distance between vertices with a constant) while keeping the size of vertices the same. I wo...
2013 Jan 22
1
How to remove the vertical space between two graps
Hi, I have created a barplot using the following code. a<-c(11,23,15,34,42,31) m<-matrix(a,nrow=2) m[2,]<-(-1)*m[2,] par(mar=c(4,4,4,0)) barplot(m[2,],horiz=T) par(mar=c(4,0,4,2)) barplot(m[1,],horiz=T,col="black") and the plot obtained is shown in "plot1.tiff". I was not willing to see the gap (vertical space) between two graphs. How can I achieve it? Further