search for: diagrammer

Displaying 18 results from an estimated 18 matches for "diagrammer".

2011 May 07
1
venn diagramm
Dear all, I have a set of five datasets with string, for which I need to draw the venn diagram. there are tools available to draw venn diagram online, but limited to three sets. I can also generate venn for three from limma package, but do not know how to proceed with five subsets. Help me in drawing the same any script . Thank you Khush [[alternative HTML version deleted]]
2015 Dec 01
1
Package Dependency
...desiredPackages %in% installedPackages > install.packages(desiredPackages[!alreadyHave], + dependencies = c("Depends"), + lib = TARGETLIB) trying URL 'http://rweb.crmda.ku.edu/cran/src/contrib/DiagrammeR_0.8.1.tar.gz' Content type 'application/x-gzip' length 3438156 bytes (3.3 MB) ================================================== downloaded 3.3 MB trying URL 'http://rweb.crmda.ku.edu/cran/src/contrib/emplik_1.0-2.tar.gz' Content type 'application/x-gzip' length 199124...
2013 Feb 05
2
duplicate data
Hello, I have a long list of x-, y- and z-data and try to generate a heatmap. Obviously there are several data with identical x- and y-values. I get the following error message: Error in interp.old(x, y, z, xo = xo, yo = yo, ncp = 0, extrap = extrap, : duplicate data points: need to set 'duplicate = ..' Unfortunately there seems no help screen on "duplicate". I'd prefer
2005 Nov 11
1
Snow parLapply
Dear R-user, I am trying to use the function 'parLapply' from the 'snow' package which is supposed to work the same wys as 'lapply' but for a parallelized cluster of computers. The function I am trying to call in parallel is 'dudi.pca' (from the 'ade4' package) which performs principal component analyses. When I call this function on a list of
2008 Oct 07
3
Automatic code diagramming for R?
Greetings - Is anyone aware of an automatic code diagrammer/flow chart creator that works for the R language (either a contributed package, or external software)? I need to explain some code structure of a package I'm working on to non-R users, and would find it extremely helpful to have such a program similar to, for example, Visustin ( http://www.aiv...
2009 Jan 24
1
Help with dudi.pca
Dear R-helpers, I have two data frames, op and em4: > str(op) 'data.frame': 37 obs. of 5 variables: $ m : num 0.202 0.336 0.122 0.139 0.14 ... $ lln : num 0.798 0.643 0.863 0.835 0.823 ... $ rrn : num 0.789 0.702 0.894 0.895 0.923 ... $ asym2: num 0.177 0.304 0.108 0.187 0.274 ... $ asym3: num 0.0755 0.0975 0.0818 0.0651 0.13 ... > str(rownames(op)) chr
2003 Oct 22
1
Filesystem panic
...kernel: fat_free: deleting beyond EOF Oct 22 04:02:20 yoda kernel: File system has been set read-only From the rsync error log, I can see that the filesystem becomes read-only, and that it begins to fail the synchronization task with mkstemp SAGER_igangvaerende/2003_07_Fremtidens_Uni/Fase_4/Diagrammer/Celletyper/ .Delecelle.psd.Rz49bM failed: Read-only file system Which is understandable. After doing this for a while, the error message changes to "Too many open files". And I suspect that this is what causes the machine to hang. Is there any way to configure rsync to abort execution on...
2004 Dec 19
1
Can I calculate the area of a polygon?
Hello, I'm verry new in R. My Problem: I have a PostgreSQL-Server with installed support for the R-Language. And now I have a table with a Polygon like this: test_db=# select * from geo where id=1; id | koerper ----+--------------------------------- 1 | ((0,0),(0,2),(2,2),(3,3),(5,0)) (1 row) Now, I need to know the area of this object. Please, can you tell me, if it
2007 Jan 08
1
R scripts to plot Taylor Diagram
Dear All, Are there any existing scripts to plot Taylor Diagram (definition see http://www.ipsl.jussieu.fr/~jmesce/Taylor_diagram/taylor_diagram_definition.html ) ? Thanks a lot! Linda [[alternative HTML version deleted]]
2006 Apr 05
11
Managing a Rails project
Can someone point me to some good ideas about managing Rails development - like what would be a good way to document all the models and controllers and methods that might result if several people are prototyping on different parts of a system, and what might be a good structure for pushing back code into SVN as scaffolds are turned into real projects - that sort of thing. I''m
2012 Sep 22
2
Define 6.1 and 7.1 channel mappings
On Fri Sep 21 16:31:21 2012, Stephen F. Booth wrote: > 6.1: L R C LFE Ls Rs Cs (MPEG 6.1 A layout) I'm confused. WAV puts the rear centre before everything but 'Front left of center' and 'Front right of center'. Are you saying you prefer the extra front channels to to side/rear surround, or that you prefer the MPEG order to the WAVE order? -r
2012 Sep 23
0
Define 6.1 and 7.1 channel mappings
On Fri Sep 21 16:31:21 2012, Stephen F. Booth wrote: > 6.1: L R C LFE Ls Rs Cs (MPEG 6.1 A layout) Having read a bit more: This matches the WAV (or USB) order if you map Ls (Left Surround?) to Back Left and Rs (Right surround) to Back Right, instead of mapping them to Side Left and Side Right as I do. Practically, there's not much difference in what you call these for 6.1. If you only
2011 Feb 10
1
color2D.maplot fixed color range
Dear all, I have -one matrix sr ([200,200]) which is the original file -25 matrixes estimatedsr ([200,200]) which are an estimation of the sr. As I am plotting these matrixes I want to have ONE common way that the cells are colored. Eg. Values from 10-20--> red color, 20-30-->blue color (or something like that). This is the only way one can easily compare all these matrixes together. The
2005 Mar 14
1
Significance of Principal Coordinates
Dear all, I was looking for methods in R that allow assessing the number of significant principal coordinates. Unfortunatly I was not very successful. I expanded my search to the web and Current Contents, however, the information I found is very limited. Therefore, I tried to write code for doing a randomization. I would highly appriciate if somebody could comment on the following approach.
2007 Feb 28
3
Newbie Planning Help
Excuse the ASCII diagramme - you will need a fixed width font to understand it. ------ ------- ------- ----- | A | ==> | NAT | === === | NAT | <== | B | ------ ------- | | ------- ----- ------------------- | The Internet | -------------------
2006 Jul 17
6
Nested functions
Hi there, I'm having myself a hard time writing an algorithm for finding patterns within a given melody. In a vector I'd like to find ALL sequences that occur at least twice, without having to check all possible patterns via pattern matching. I finally found a solution in a style that I'm used from C, i.e. calling one function from within another. GNU R doesn't seem to like that,
2012 Jan 30
1
about changing line type and line width in Taylor Diagram
Dear all, I am new to plotting Taylor Diagram using plotrix package within R, hence this post. I have written a script which plots Taylor Diagram with one reference and 7 model values. However the font size, line width and line type are not clear when saving the diagram as a jpeg file. I tried the functions lty, lwd and font but no apparent change. I am attaching the script here. Any help would
2006 Aug 03
12
More than one has_many :through association between the same 2 models
I wonder if you can have more than one has_many :through association between 2 models. For example... I have a model Teacher and a model Class Now, 1 Teacher works in many Classes, right?. So I need a join model like class Work < ActiveRecord::Base belongs_to :teacher belongs_to :class end But I also would like to know if a teacher CAN teach a class before I