active questions tagged r - Stack Overflow most recent 30 from stackoverflow.com 2010-02-09T22:58:43Z http://stackoverflow.com/feeds/tag/r http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/2232699/r-how-to-do-a-data-table-merge-operation 0 [R] how to do a data.table merge operation Harlan 2010-02-09T21:34:52Z 2010-02-09T21:34:52Z <p>I've been digging through the documentation for the <a href="http://cran.r-project.org/web/packages/data.table/index.html" rel="nofollow">data.table package</a> (a replacement for data.frame that's much more efficient for certain operations), including <a href="http://files.meetup.com/1406240/Data%20munging%20with%20SQL%20and%20R.pdf" rel="nofollow">Josh Reich's presentation on SQL and data.table at the NYC R Meetup</a> (pdf), but can't figure this totally trivial operation out.</p> <pre><code>&gt; x &lt;- DT(a=1:3, b=2:4, key='a') &gt; x a b [1,] 1 2 [2,] 2 3 [3,] 3 4 &gt; y &lt;- DT(a=1:3, c=c('a','b','c'), key='a') &gt; y a c [1,] 1 a [2,] 2 b [3,] 3 c &gt; x[y] a b [1,] 1 2 [2,] 2 3 [3,] 3 4 &gt; merge(x,y) a b c 1 1 2 a 2 2 3 b 3 3 4 c </code></pre> <p>The docs say "When [the first argument] is itself a data.table, a join is invoked similar to base::merge but uses binary search on the sorted key." Clearly this is not the case. Can I get the other columns from y into the result of x[y] with data.tables? It seems like it's just taking the rows of x where the key matches the key of y, but ignoring the rest of y entirely...</p> http://stackoverflow.com/questions/2219626/using-ggplot-how-to-have-the-x-axis-of-time-series-plots-set-up-automatically 1 Using ggplot, how to have the x-axis of time series plots set up automatically? jmoy 2010-02-08T04:44:43Z 2010-02-09T21:27:04Z <p>Is there a way of plotting a univariate time series of class "ts" using ggplot that sets up the time axis automatically? I want something similar to plot.ts() of base graphics.</p> <p>Also it seems to me that the coarsest time granularity is a day. Is that right? In my work I have to work with monthly and quarterly data and assigning each observation to the beginning/end of the month/quarter would cause the observations to be irregularly spaced horizontally since months/quarters are of unequal length. That may make more sense, but my audience is used to seeing months/quarters regularly spaced.</p> <p>I know I can solve all of the above by manually setting up the x-axis as a time axis or as a numeric axis with my own labels. I am specifically looking for a method that does this automatically by using the time information in the ts object..</p> http://stackoverflow.com/questions/2231993/merging-two-data-frames-using-fuzzy-approximate-string-matching-in-r 1 Merging two Data Frames using Fuzzy/Approximate String Matching in R Brandon Bertelsen 2010-02-09T19:41:38Z 2010-02-09T21:11:23Z <p><strong>DESCRIPTION</strong> </p> <p>I have two datasets with information that I need to merge. The only common fields that I have are strings that do not perfectly match and a numerical field that can be substantially different </p> <p>The only way to explain the problem is to show you the data. Here is <a href="http://bertelsen.ca/R/a.csv" rel="nofollow">a.csv</a> and <a href="http://bertelsen.ca/R/b.csv" rel="nofollow">b.csv</a>. I am trying to merge B to A.</p> <p>There are three fields in B and four in A. Company Name (File A Only), Fund Name, Asset Class, and Assets. So far, my focus has been on attempting to match the Fund Names by replacing words or parts of the strings to create exact matches and then using: </p> <pre><code>a &lt;- read.table(file = "http://bertelsen.ca/R/a.csv",header=TRUE, sep=",", na.strings=F, strip.white=T, blank.lines.skip=F, stringsAsFactors=T) b &lt;- read.table(file = "http://bertelsen.ca/R/b.csv",header=TRUE, sep=",", na.strings=F, strip.white=T, blank.lines.skip=F, stringsAsFactors=T) merge(a,b, by="Fund.Name") </code></pre> <p>However, this only brings me to about 30% matching. The rest I have to do by hand. </p> <p>Assets is a numerical field that is not always correct in either and can vary wildly if the fund has low assets. Asset Class is a string field that is "generally" the same in both files, however, there are discrepancies. </p> <p>Adding to the complication are the different series of funds, in File B. For example: </p> <blockquote> <p>AGF Canadian Value </p> <p>AGF Canadian Value-D</p> </blockquote> <p>In these cases, I have to choose the one that is not seried, or choose the one that is called "A", "-A", or "Advisor" as the match. </p> <p><strong>QUESTION</strong></p> <p>What would you say is the best approach? This excercise is something that I have to do on a monthly basis and matching them manually is incredibly time consuming. Examples of code would be instrumental. </p> <p><strong>IDEAS</strong></p> <p>One method that I think may work is normalizing the strings based on the first capitalized letter of each word in the string. But I haven't been able to figure out how to pull that off using R.</p> <p>Another method I considered was creating an index of matches based on a combination of assets, fund name, asset class and company. But again, I'm not sure how to do this with R. Or, for that matter, if it's even possible.</p> <p>Examples of code, comments, thoughts and direction are greatly appreciated! </p> http://stackoverflow.com/questions/2161152/sweave-for-python 5 Sweave for python pufferfish 2010-01-29T10:03:56Z 2010-02-09T16:59:46Z <p>I've recently started using <a href="http://www.stat.uni-muenchen.de/~leisch/Sweave/" rel="nofollow">Sweave</a>* for creating reports of analyses run with R, and am now looking to do the same with my python scripts. </p> <p>I've found references to <a href="http://romainfrancois.blog.free.fr/index.php?post/2009/01/21/Python-and-Sweave" rel="nofollow">embedding python in Sweave</a> docs, but that seems like a bit of a hack. Has anyone worked out a better solution, or is there an equivalent for python I'm not aware of?</p> <p>* <em>Sweave is a tool that allows to embed the R code for complete data analyses in latex documents</em></p> http://stackoverflow.com/questions/2228544/higher-level-functions-in-r-is-there-an-official-compose-operator-or-curry-func 6 higher level functions in R - is there an official compose operator or curry function? Alex Brown 2010-02-09T11:10:44Z 2010-02-09T16:57:19Z <p>I can create a compose operator in R:</p> <pre><code> `%c%` = function(x,y)function(...)x(y(...)) </code></pre> <p>To be used like this:</p> <pre><code> &gt; numericNull = is.null %c% numeric &gt; numericNull(myVec) [2] TRUE FALSE </code></pre> <p>but I would like to know if there is an official set of functions to do this kind of thing and other operations such as currying in R. Largely this is to reduce the number of brackets, function keywords etc in my code.</p> <p>My curry function:</p> <pre><code>&gt; curry=function(...){ z1=z0=substitute(...);z1[1]=call("list"); function(...){do.call(as.character(z0[[1]]), as.list(c(eval(z1),list(...))))}} &gt; p = curry(paste(collapse="")) &gt; p(letters[1:10]) [1] "abcdefghij" </code></pre> <p>This is especially nice for e.g. aggregate:</p> <pre><code>&gt; df = data.frame(l=sample(1:3,10,rep=TRUE), t=letters[1:10]) &gt; aggregate(df$t,df["l"],curry(paste(collapse="")) %c% toupper) l x 1 1 ADG 2 2 BCH 3 3 EFIJ </code></pre> <p>Which I find much more elegant and editable than:</p> <pre><code>&gt; aggregate(df$t, df["l"], function(x)paste(collapse="",toupper(x))) l x 1 1 ADG 2 2 BCH 3 3 EFIJ </code></pre> <p>Basically I want to know - has this already been done for R?</p> http://stackoverflow.com/questions/2227734/in-r-what-is-the-difference-between-these-two 1 In R, what is the difference between these two? esther 2010-02-09T08:40:59Z 2010-02-09T15:46:48Z <pre><code>0.9 == 1-0.1 &gt;&gt;&gt; TRUE 0.9 == 1.1-0.2 &gt;&gt;&gt; FALSE </code></pre> http://stackoverflow.com/questions/2226526/generating-dendrograms-from-genealogy-data-in-r 1 Generating dendrograms from genealogy data in R mattrepl 2010-02-09T03:16:45Z 2010-02-09T15:39:26Z <p>Is there any way to generate a dendrogram where each level of the graph represents a generation and only sons of the same father are connected at each level?</p> <p>I'm attempting to use R's hclust and plot functions to generate a dendrogram of father-son lineage. The desired result is a dendrogram where each generation of sons is placed on the same line, under their father. </p> <p>I was hoping that hclust and the "complete" method would allow me to use the dissimilarity matrix to assign sons of the same father a 0 dissimilarity score and then be placed on the same hierarchical level, exclusive from any other entities in the dataset. This doesn't work, there are sons of different generations on the same level.</p> <p>Any help is greatly appreciated!</p> <p>Here is some example data:</p> <p>father,son<br> A,C<br> A,D<br> A,E<br> B,F<br> B,G<br> C,H<br> C,I<br> F,J<br> F,K<br> G,L </p> <p>Agent A has three sons: C, D, and E; and two grandsons through C: H and I.</p> <p>Agent B has two sons: F and G; and a total of three grandsons: J, K, and L.</p> http://stackoverflow.com/questions/1142294/how-do-i-plot-a-classification-graph-of-a-svm-in-r 3 How do I plot a classification graph of a SVM in R Spacen Jasset 2009-07-17T09:35:57Z 2010-02-09T13:13:50Z <p>I have an svm in R and I would now like to plot the classificaiton space for this machine. I have found some examples on the Internet, but I can't seem to make sense of them.</p> <p>My R script is as follows:</p> <pre><code>library(e1071) day_of_week &lt;- c(0,1,2,3,4,5,6) holiday &lt;- factor( c(T, F, F, F, F, F, T) ) model &lt;- svm(day_of_week, holiday) plot(model, day_of_week, holiday) </code></pre> <p>I cannot get the plot command to work. I would like a graph something like this <a href="http://bm2.genes.nig.ac.jp/RGM2/R_current/library/e1071/man/images/plot.svm_001.png" rel="nofollow">http://bm2.genes.nig.ac.jp/RGM2/R_current/library/e1071/man/images/plot.svm_001.png</a> </p> http://stackoverflow.com/questions/2226867/can-r-read-from-a-file-through-an-ssh-connection 4 Can R read from a file through an ssh connection? Stephen 2010-02-09T05:04:56Z 2010-02-09T05:37:55Z <p>R can read files on a web server using convenient syntax such as</p> <pre><code>data &lt;- read.delim("http://remoteserver.com/file.dat") </code></pre> <p>I wonder if there is a way to do something similar with a file on an ssh server with passwordless-ssh already in place?</p> http://stackoverflow.com/questions/1401904/painless-way-to-install-a-new-version-of-r 7 Painless way to install a new version of R? Shane 2009-09-09T20:29:11Z 2010-02-08T20:49:19Z <p><a href="http://www.stat.columbia.edu/~cook/movabletype/archives/2009/08/upgrading_r.html" rel="nofollow">Andrew Gelman recently lamented the lack of an easy upgrade process for R</a> (probably more relevant on Windows that Linux). Does anyone have a good trick for doing the upgrade, from installing the software to copying all the settings/packages over?</p> <p>This suggestion was contained in the comments and is what I've been using recently. First you install the new version, then run this in the old verion:</p> <pre><code>#--run in the old version of R setwd("C:/Temp/") packages &lt;- installed.packages()[,"Package"] save(packages, file="Rpackages") </code></pre> <p>Followed by this in the new version:</p> <pre><code>#--run in the new version setwd("C:/Temp/") load("Rpackages") for (p in setdiff(packages, installed.packages()[,"Package"])) install.packages(p) </code></pre> http://stackoverflow.com/questions/2083333/curl-for-webpage-login 0 cURL for webpage login Mark 2010-01-18T00:57:28Z 2010-02-08T19:27:27Z <p>I want to submit my submissions to <a href="http://analyticsx.com/" rel="nofollow">this competition</a> automatically from my code. I need to log-in on <a href="http://analyticsx.com/analyticsx/Login" rel="nofollow">this page</a> and then submit a file on <a href="http://analyticsx.com/analyticsx/Controller?REQUEST_COMMAND=User&amp;REQUEST_SUB_COMMAND=SubmitPred" rel="nofollow">this page</a>. I'd like to use cURL since it integrates with both of the languages that I am using (R and Python). </p> <p>I am just wondering if this procedure is possible in cURL? and my another question is if I can use cURL inside MS Excel?</p> http://stackoverflow.com/questions/2224196/identifying-unique-terms-from-list-of-character-vectors 1 Identifying unique terms from list of character vectors Chris 2010-02-08T19:17:16Z 2010-02-08T19:24:09Z <p>I have a list of character vectors in R that represents sets of cooccuring words. From this, I would like to extract a character vector capturing all the words that appear in the list of character vectors. I think I know how to efficiently go from a character vector of words to a unique character vector of the words that appeared. What I don't know how to do is efficiently collapse the list of character vectors into a single character vector. Any tips on how to approach this or the overall problem efficiently would be great appreciated! </p> http://stackoverflow.com/questions/2200460/what-programming-languages-are-good-for-statistics 8 What programming languages are good for statistics? Jason Baker 2010-02-04T14:42:28Z 2010-02-08T19:20:19Z <p>I'm doing a bit more statistical analysis on some things lately, and I'm curious if there are any programming languages that are particularly good for this purpose. I know about <a href="http://www.r-project.org/" rel="nofollow">R</a>, but I'd kind of prefer something a bit more general-purpose (or is R pretty general-purpose?).</p> <p>What suggestions do you guys have? Are there any languages out there whose syntax/semantics are particularly oriented towards this? Or are there any languages that have exceptionally good libraries?</p> http://stackoverflow.com/questions/2218395/how-do-you-compare-the-similarity-between-two-dendrograms-in-r 2 How do you compare the "similarity" between two dendrograms (in R) ? Tal Galili 2010-02-07T21:23:28Z 2010-02-08T14:16:06Z <p>I have two dendrograms which I wish to compare to each other in order to find out how "similar" they are. But I don't know of any method to do so (let alone a code to implement it, say, in R).</p> <p>Any leads ?</p> <p>Thanks, Tal</p> http://stackoverflow.com/questions/2189184/plot-multiple-functions-in-r 1 Plot multiple functions in R womble 2010-02-03T02:11:15Z 2010-02-08T11:57:16Z <p>I previously asked this <a href="http://stackoverflow.com/questions/1853703/plotting-functions-in-r">question</a> which was useful in plotting a function. I want to try and plot twenty functions on the same axes to illustrate how a function varies between two ranges. I have successfully done this using individually specified functions, but I wanted to do this using a loop.</p> <p>What I have attempted doing is:</p> <pre><code>## add ggplot2 library(ggplot2) library(lattice) # Declare local variables inPath = "D:/R_Analysis/" inFile = "sample.txt" outPath = "D:/R_Analysis/" outFile = "processed_sample.txt" pdfOutPath = "D:/R_Analysis/" pdfOutFile = "processed_sample.pdf" # Declare Chart values y_label = "x-axis" x_label = "y-axis" chart_title = "..." ##################################################################### ## Read in data; analysis &lt;- read.table(paste(inPath, inFile, sep=""), header=TRUE, sep=",", na.strings="NA", dec=".", strip.white=TRUE) # Setup pdf pdf(paste(pdfOutPath, pdfOutFile, sep=""),height=6,width=9) # make plot object p &lt;- qplot( data = data.frame(x = x, y = y), x, y, xlab = x_label, ylab = y_label, enter code herexlim = x_range, main = chart_title ) # make empty function eq_dummy = function(x){ 0 } d = stat_function(fun = eq_dummy) ############## # LOOP ####### for(i in 1 : 21){ # Specify Variables intercept = analysis[i,2] slope = analysis[i,3] # Define Curve eq &lt;- function(x) { slope * log(x) + intercept } # Make plot object composite &lt;- stat_function(fun=eq) composite = composite + d } print(p + composite) # Show warnings warnings() # close the PDF file dev.off() </code></pre> <p>Any suggestions about syntax improvement, or programming structure would be appreciated. Thank you.</p> http://stackoverflow.com/questions/2123195/whats-the-best-way-to-map-the-link-connection-between-blogs 0 What's the best way to map the link connection between blogs ? Tal Galili 2010-01-23T12:59:26Z 2010-02-08T04:51:04Z <p>I wish to perform a social network analysis on a bunch of blogs, plotting who is linking to who (not just by their blogroll but also inside their posts). What software can perform such crawling/data-collecting/mapping ?</p> <p>Thanks!</p> http://stackoverflow.com/questions/2156935/how-can-i-find-all-r-packages-that-include-graphics-functions 1 How can I find all R packages that include graphics functions? gd047 2010-01-28T18:34:37Z 2010-02-08T03:50:38Z <p>I always have difficulty in finding all available alternative ways to produce a specific graph, either one that I have already decided to use (looking for different variations) or one that I have not yet thought of.</p> <p>The <a href="http://bm2.genes.nig.ac.jp/RGM2/index.php?clear=all" rel="nofollow">R Graphical Manual</a> site provides a complete list of samples of R's graphics functions, however it's easier for me to search providing a package name (how else -for example- can I get a resultset including <code>superbarplot</code> function, when I want to look for barplots?. Let alone that the superbarplot graph does not appear in the results even if I try searching for it's package: <code>UsingR</code>)</p> <p>The <a href="http://sites.google.com/site/r4statistics/add-on-modules" rel="nofollow">R-SAS-SPSS Add-on Module Comparison</a> - and especially on topic <code>Graphics, Static</code> in the table provided - gave me the idea that it would be nice to have a place where all relevant packages are listed by topic.</p> <p>Do you have any idea about something like that?</p> http://stackoverflow.com/questions/2126556/r-beginner-book 1 R beginner book lmsasu 2010-01-24T09:29:41Z 2010-02-07T17:54:55Z <p>Hi all,</p> <p>which is a good introductory book for learning R? How should one start to become proficient with this system?</p> <p>Thanks</p> http://stackoverflow.com/questions/2161052/how-to-create-an-inkblot-chart-with-r 4 How to create an "inkblot" chart with R? Karsten Weinert 2010-01-29T09:43:52Z 2010-02-07T16:59:22Z <p>How can I create a chart like</p> <p><a href="http://junkcharts.typepad.com/junk_charts/2010/01/leaving-ink-traces.html" rel="nofollow">http://junkcharts.typepad.com/junk_charts/2010/01/leaving-ink-traces.html</a></p> <p>where several time series (one per country) are displayed horizontally as symmetric areas?</p> <p>I think if I could display one time series in this way, it is easy to generalize to several using mfrow.</p> <p>Sample data: </p> <pre><code>#Solar energy production in Europe, by country (EC),(1 000 toe) Country,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007 Belgium,1,1,1,1,1,1,2,2,3,3,3,5 Bulgaria,-,-,-,-,-,-,-,-,-,-,-,- Czech Republic,0,0,0,0,0,0,0,0,2,2,3,4 Denmark,6,7,7,8,8,8,9,9,9,10,10,11 Germany (including ex-GDR from 1991),57,70,83,78,96,150,184,216,262,353,472,580 Estonia,-,-,-,-,-,-,-,-,-,-,-,- Ireland,0,0,0,0,0,0,0,0,0,0,1,1 Greece,86,89,93,97,99,100,99,99,101,102,109,160 Spain,26,23,26,29,33,38,43,48,58,65,83,137 France,15,16,17,18,26,19,19,18,19,22,29,37 Italy,8,9,11,11,12,14,16,18,21,30,38,56 Cyprus,32,33,34,35,35,34,35,36,40,41,43,54 Latvia,-,-,-,-,-,-,-,-,-,-,-,- Lithuania,-,-,-,-,-,-,-,-,-,-,-,- Luxembourg (Grand-Duché),0,0,0,0,0,0,0,0,1,2,2,2 Hungary,0,0,0,0,0,1,2,2,2,2,2,3 Netherlands,6,7,8,10,12,14,16,19,20,22,22,23 Austria,42,48,55,58,64,69,74,80,86,92,101,108 Poland,0,0,0,0,0,0,0,0,0,0,0,0 Portugal,16,16,17,18,18,19,20,21,21,23,24,28 Romania,0,0,0,0,0,0,0,0,0,0,0,0 Slovenia,-,-,-,-,-,-,-,-,-,-,-,- Slovakia,0,0,0,0,0,0,0,0,0,0,0,0 Finland,0,0,0,0,1,1,1,1,1,1,1,1 Sweden,4,4,5,5,5,6,4,5,5,6,6,9 United Kingdom,6,6,7,7,11,13,16,20,25,30,37,46 Croatia,0,0,0,0,0,0,0,0,0,0,0,1 Turkey,159,179,210,236,262,287,318,350,375,385,402,420 Iceland,-,-,-,-,-,-,-,-,-,-,-,- Norway,0,0,0,0,0,0,0,0,0,0,0,0 Switzerland,18,19,21,23,24,26,23,24,25,26,28,30 #-='Not applicable' or 'Real zero' or 'Zero by default' :=Not available " #Source of Data:,Eurostat, http://spreadsheets.google.com/ccc?key=0Agol553XfuDZdFpCQU1CUVdPZ3M0djJBSE1za1NGV0E&amp;hl=en_GB #Last Update:,30.04.2009 #Date of extraction:,17 Aug 2009 07:41:12 GMT, http://epp.eurostat.ec.europa.eu/tgm/table.do?tab=table&amp;init=1&amp;plugin=1&amp;language=en&amp;pcode=ten00082 </code></pre> http://stackoverflow.com/questions/2209258/merge-several-data-frames-into-one-data-frame-with-a-loop 5 Merge several data.frames into one data.frame with a loop mropa 2010-02-05T18:01:59Z 2010-02-05T20:12:39Z <p>I am trying to <code>merge</code> several <code>data.frames</code> into one <code>data.frame</code>. Since I have a whole list of files I am trying to do it with a loop structure.</p> <p>So far the loop approach works fine. However, it looks pretty inefficient and I am wondering if there is a faster and easier approach.</p> <p>Here is the scenario: I have a directory with several <code>.csv</code> files. Each file contains the same identifier which can be used as the merger variable. Since the files are rather large in size I thought to read each file one at a time into R instead of reading all files at once. So I get all the files of the directory with <code>list.files</code> and read in the first two files. Afterwards I use <code>merge</code> to get one <code>data.frame</code>.</p> <pre><code>FileNames &lt;- list.files(path=".../tempDataFolder/") FirstFile &lt;- read.csv(file=paste(".../tempDataFolder/", FileNames[1], sep=""), header=T, na.strings="NULL") SecondFile &lt;- read.csv(file=paste(".../tempDataFolder/", FileNames[2], sep=""), header=T, na.strings="NULL") dataMerge &lt;- merge(FirstFile, SecondFile, by=c("COUNTRYNAME", "COUNTRYCODE", "Year"), all=T) </code></pre> <p>Now I use a <code>for</code> loop to get all the remaining <code>.csv</code> files and <code>merge</code> them into the already existing <code>data.frame</code>:</p> <pre><code>for(i in 3:length(FileNames)){ ReadInMerge &lt;- read.csv(file=paste(".../tempDataFolder/", FileNames[i], sep=""), header=T, na.strings="NULL") dataMerge &lt;- merge(dataMerge, ReadInMerge, by=c("COUNTRYNAME", "COUNTRYCODE", "Year"), all=T) } </code></pre> <p>Even though it works just fine I was wondering if there is a more elegant way to get the job done?</p> http://stackoverflow.com/questions/2190756/in-r-how-to-count-true-values-in-a-logical-vector 3 In R, how to count TRUE values in a logical vector jmoy 2010-02-03T09:03:38Z 2010-02-05T18:51:00Z <p>In R, what is the most efficient/idiomatic way to count the number of TRUE values in a logical vector? I can think of two ways:</p> <pre><code>&gt; z&lt;-sample(c(TRUE,FALSE),1000,rep=TRUE) &gt; sum(z) [1] 498 &gt; table(z)["TRUE"] TRUE 498 </code></pre> <p>Which do you prefer? Is there anything even better</p> http://stackoverflow.com/questions/2196985/information-dashboards-in-r-with-ggplot2 4 Information Dashboards in R with ggplot2 tommy-o-dell 2010-02-04T02:34:42Z 2010-02-04T22:12:25Z <p>I'm looking to create a static dashboard viewable in a web browser. And I'd like to create something like what Stephen Few does in his book <a href="http://rads.stackoverflow.com/amzn/click/0596100167" rel="nofollow">Information Dashboard Design</a>. (see example at bottom)</p> <ol> <li><strong>Ggplot2</strong>: Shouldn't be any issue producing the graphs below, right?</li> <li><strong>Dashboard Layout</strong>: Is grid suitable? Or should I lay things out in html/css? </li> </ol> <p>If grid can do this easily enough, do you know of any good resources for learning how to us it? I've read the manual but I'm not finding it too helpful. I've seen the LearnR blog's <a href="http://learnr.wordpress.com/2009/04/09/ggplot2-sales-dashboard/" rel="nofollow">ggplot2 sales dashboard</a> (it uses grid) and I'm having trouble understanding the grid and layout part of things. </p> <p><img src="http://img251.imageshack.us/img251/1029/fewciodashboard800.png" alt="dasboard sample"></p> http://stackoverflow.com/questions/2194516/converting-r-code-snippet-to-use-the-matrix-package 2 converting R code snippet to use the Matrix package? laramichaels 2010-02-03T18:47:54Z 2010-02-04T16:21:21Z <p>Hello,</p> <p>I am not sure there are any R users out there, but just in case:</p> <p>I am a novice at R and was kindly "handed down" the following R code snippet:</p> <pre><code>Beta &lt;- exp(as.matrix(read.table('beta.transpose'))) WordFreq &lt;- read.table('freq-matrix') WordProbs &lt;- WordFreq$V1 / sum(WordFreq) infile &lt;- file('freq-matrix') outfile &lt;- file('doc_topic_prob_matrix', 'w') open(infile) open(outfile) for (i in 1:93049) { vec &lt;- t(scan(infile, nlines=1)) topics &lt;- (vec/WordProbs) %*% Beta write.table(topics, outfile, append=T, row.names=F, col.names=F) } </code></pre> <p>When I tried running this on my dataset, the system thrashed and swapped like crazy. Now I realize that has a simple reason: the file freq-matrix holds a large (22GB) matrix and I was trying to read it into memory.</p> <p>I have been told to use the <a href="http://cran.r-project.org/web/packages/Matrix/Matrix.pdf" rel="nofollow">Matrix</a> package, because freq-matrix has many, many zeros all over the place and it handles such cases well. Will that help? If so, any hints on how to change this code would be most welcome. I have no R experience and just started reading through the introduction PDF available on the site.</p> <p>Many thanks</p> <p>~l</p> http://stackoverflow.com/questions/2192576/execution-efficiency-vs-programmer-efficiency-in-r 5 Execution Efficiency vs Programmer Efficiency in R Harlan 2010-02-03T14:26:26Z 2010-02-04T14:59:26Z <p>The classic and brilliant Programming Perl reference book has a section in which the authors provide a list of advice for how to write Perl that is maximally <em>computationally efficient</em>, followed by a list of advice for how to write Perl that is maximally <em>programmer efficient</em>, followed by more advice for <em>maintainer efficient</em>, <em>porter efficient</em>, and <em>user efficient</em>. The advice is usually completely contradictory. (E.g., "use globals", "don't use globals.")</p> <p>I thought of this while working on turning some "programmer efficient" R code into "computationally and maintainer efficient" code.</p> <p>What are some interesting and useful tips for R style along these lines? What practices are maximally programmer efficient, and what are the equivalent practices that address other notions of efficiency?</p> http://stackoverflow.com/questions/2192316/extract-a-regular-expression-match-in-r-version-2-10 1 Extract a regular expression match in R version 2.10 tovare 2010-02-03T13:49:24Z 2010-02-04T02:31:50Z <p>Hi,</p> <p>I'm trying to extract a number from a string.</p> <p>And do something like this [0-9]+ on this string "aaaa12xxxx" and get "12".</p> <p>I thought it would be something like:</p> <pre><code>&gt; grep("[0-9]+","aaa12xxx", value=TRUE) [1] "aaa12xxx" </code></pre> <p>And then I figured... </p> <pre><code>&gt; sub("[0-9]+", "\\1", "aaa12xxxx") [1] "aaa12xxx" </code></pre> <p>But I got some form of response doing:</p> <pre><code>&gt; sub("[0-9]+", "ARGH!", "aaa12xxxx") [1] "aaaARGH!xxx" </code></pre> <p>There's a small detail I'm missing Please advice :-)</p> <p>I'm using R version 2.10.1 (2009-12-14)</p> <p>Thanks !</p> <hr> <p><strong>Comments on the solution</strong></p> <p>The best solution is to ignore the standard functions and install Hadley Wickham's <strong><em>stringr</em></strong> package to get something that actually makes sense.</p> <p>Kudos to Marek for figuring out how the standard library worked.</p> http://stackoverflow.com/questions/2193742/ways-to-read-only-select-columns-from-a-file-into-r-a-happy-medium-between-rea 3 Ways to read only select columns from a file into R? (A happy medium between `read.table` and `scan`?) Alex Stoddard 2010-02-03T17:02:53Z 2010-02-03T21:31:01Z <p>I have some very big delimited data files and <strong>I want to process only certain columns in R</strong> without taking the time and memory to create a <code>data.frame</code> for the whole file.</p> <p>The only options I know of are <code>read.table</code> which is very wasteful when I only want a couple of columns or <code>scan</code> which seems too low level for what I want.</p> <p>Is there a better option, either with pure R or perhaps calling out to some other shell script to do the column extraction and then using scan or read.table on it's output? (Which begs the question how to call a shell script and capture its output in R?).</p> http://stackoverflow.com/questions/2190154/getting-raw-data-from-frequency-table 2 Getting "raw" data from frequency table aL3xa 2010-02-03T06:38:34Z 2010-02-03T21:27:04Z <p>Hi there,</p> <p>I've been looking around for some data about naming trends in USA. I managed to get top 1000 names for babies born in 2008. The data is formated in this manor:</p> <pre><code> male.name n.male female.name n.female Jacob 22272 Emma 18587 Michael 20298 Isabella 18377 Ethan 20004 Emily 17217 Joshua 18924 Madison 16853 Daniel 18717 Ava 16850 Alexander 18423 Olivia 16845 Anthony 18158 Sophia 15887 William 18149 Abigail 14901 Christopher 17783 Elizabeth 11815 Matthew 17337 Chloe 11699 </code></pre> <p>I want to get a <code>data.frame</code> with 2 variables: <code>name</code> and <code>gender</code>. This can be done with looping, but I consider it rather inefficient way of solving this problem. I reckon that some <code>reshape</code> function will suite my needs.</p> <p>Let's presuppose that this tab-delimited data is saved into a <code>data.frame</code> named <code>bnames</code>. Looping can be done with function:</p> <pre><code> tmp &lt;- character() for (i in 1:nrow(bnames)) { tmp &lt;- c(tmp, rep(bnames[i,1], bnames[i,2])) } </code></pre> <p>But I want to achieve this with vector-based approach. Any suggestions?</p> http://stackoverflow.com/questions/2186015/bind-variables-in-r-dbi 0 Bind variables in R DBI Ken Williams 2010-02-02T17:05:15Z 2010-02-03T15:33:39Z <p>In R's <code>DBI</code> package, I'm not finding a facility for using bound variables. I did find a document (the original vignette from 2002) that says about bound variables, "Perhaps the DBI could at some point in the future implement this feature", but it looks like so far that's left undone.</p> <p>What do people in R use for a substitute? Just concatenate strings right into the SQL? That's got some obvious problems for safety &amp; performance.</p> <p>EDIT:</p> <p>Here's an example of how placeholders could work:</p> <pre><code>query &lt;- "SELECT numlegs FROM animals WHERE color=?" result &lt;- dbGetQuery(caseinfo, query, bind="green") </code></pre> <p>That's not a very well-thought-out interface, but the idea is that you can use a value for <code>bind</code> and the driver handles the details of escaping (if the underlying API doesn't handle bound variables natively) without the caller having to reimplement it [badly].</p> http://stackoverflow.com/questions/2192360/library-package-development-message-when-loading 0 Library/package development - message when loading Yannick Wurm 2010-02-03T13:55:22Z 2010-02-03T14:51:25Z <p>Hello all,</p> <p>is there any way to display a message when a user loads <code>library(myCustomLibrary)</code>? Upon loading, I want to display a message that tells the user how to run all the test functions.</p> <p>Kind regards,</p> <p>Yannick</p> http://stackoverflow.com/questions/2185958/what-r-packages-are-available-for-binary-data-that-is-both-correlated-and-cluster 0 What R packages are available for binary data that is both correlated and clustered? Matt Parker 2010-02-02T16:58:06Z 2010-02-03T13:20:17Z <p>I'm working on a project now that's rather unlike anything I've done before. I have two tests with binary results that will be administered to the same sample, which is drawn from a clustered population (i.e., some subjects will be from the same family). I'd like to compare proportions of positive test results, but the clustering makes McNemar's test inappropriate so I've been reading up on alternative approaches. The two main routes seem to be 1) the clustering-adjusted McNemar alternatives by Rao and Scott (1992), Eliasziw and Donner (1991), and Obuchowski (1998), and 2) GEE.</p> <p>Do you know of any implementations of the Rao-Obuchowski lineage in R (or, I suppose, SAS)? GEE is easy to find, but have you had a positive or negative experience with any particular packages? Is there another route to analyzing these data that I'm completely missing?</p> <p>Thanks in advance for your help - let me know if any clarification is needed.</p>