Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

180 results for “from:Hao”

extracting the last row of each group in a data frame
Hao Cen · Nov 16, 2009 · r-help

Hi, I would like to extract the last row of each group in a data frame. The data frame is as follows Name Value A 1 A 2 A 3 B 4 B 8 C 2 D 3 I would...

ow to have R automatically print traceback upon errors
Hao Cen · Nov 23, 2009 · r-help

Hi, I wonder how to have R automatically print stack trace produced by traceback upon errors during interactive uses. I tried the suggestions on http://old.nabble.com/Automatically-execute-traceback-when-execution-of-script-causes-error--td22368483.html#a22368775...

Plot 2-d Polynomial without solving it
Hao Jiang · Jul 3, 2009 · r-help

Hi, I want to plot a polynomial in the form like ax^2 + bxy + cy^2 + dx + ey + f =0 without solving it(since I may have 3 or 4 dimensional polynomial and it's really hard to solve). Is...

[Rcpp-devel] How to pf from Rcpp
Hao Xiong · Nov 11, 2011 · rcpp-devel

Hi, I need to use pf() from Rcpp but I couldn't seem to find out how. For example, the code looks like this: #include <Rcpp.h> ... Rcpp::pf(1.2, 5, 2); ... The compiler couldn't find pf(). I...

find the index of the next largest element in a sorted vector
Hao Cen · Dec 2, 2009 · r-help

Hi, How can I find the index of the next largest element in a sorted vector if an element is not found. for example, searching 2 in c(0,3,4) would return 1 since 2 is not in the...

Rmpi for Windows 32bit and 64bit
Hao Yu · Jan 21, 2010 · r-sig-hpc

Hi. I finally made Rmpi run under Windows 64bit and simplified how to load Rmpi under both 32bit and 64bit windows. See the instructions at http://www.stats.uwo.ca/faculty/yu/Rmpi/windows.htm I haven't test this...

focus to tkwindow after a PDF window pop up
Hao Liu · Jul 2, 2007 · r-help

Thanks... I finally used BrowseURL(), which is how Rcmdr does this... it starts firefox and things are ok... Thanks Hao Peter Dalgaard wrote: > Hao Liu wrote: > >> Dear All: >> >> I currently have a TK window start a acroread window: However, when...

barplot: different colors for the bar and the strips
Hao Chen · Sep 7, 2006 · r-help

Hi, I am using barplot and would like to know if it is possible to have bars filled with one color while use a different color for the shading lines. The following code colors the shading lines, leaving the bars...

win.metafile on linux?
Hao Chen · Sep 21, 2005 · r-help

Dear R-help, Is it possible to use win.metafile() on *nix versions of R? I tried R 2.1.1 on FreeBSD and R 1.9.0 on redhat with no success. I need to give some graphs generated...

How to uninstall R packages
Guo-Hao Huang · Jan 4, 2010 · r-help

?remove.packages Guo-Hao Huang -------------------------------------------------- From: "wenjun zheng" <wjzheng09 at gmail.com> Sent: Monday, January 04, 2010 11:20 PM To: <R-help at r-project.org> Subject: [R] How to uninstall R packages > Dear all, > > I am puzzled that...

[Bioc-devel] visualizing microarray data together with metabolites in pathways?
Hao Hu · Dec 14, 2007 · bioc-devel

Hello, Recently I noticed that there were some packages coming out for visualizing microarray data in some pathway background (e.g. KEGG). I am thinking if it is possible to also include the quantitative information of metabolites in the colored...

GUI component Margin on tkcanvas, tkframe or tktoplevel
Hao Liu · May 24, 2007 · r-help

Dear gurus: I have a question on how to configure the margin layout on tcl/tk GUI objects like tkcanvas, tkframe or tktoplevel. For example, if I want to leave a larger margin on the left side of the GUI...

runmax function only for positive numbers?
Jiucang Hao · Aug 11, 2009 · r-help

Hi All, I did a google search and could not find the answer. Thus I post this message. I found runmax only work for positive numbers. x = rep(-1,10) runmax(x,3) x = rep(0, 10) runmax(x,3...

how to append new data to saved data on disk efficiently
Hao Cen · Dec 29, 2009 · r-help

Hi, I currently combine multiple processed data (data frame) into a list and save the list as ".rda" using the save command. When new data come, I load the rda file, process the new data into a data frame, append...

newbie question: p.values in a column
Hao Chen · Sep 18, 2002 · r-help

Hello, I have a vector (v) with 6 columns and 2000 rows. I am trying to do one sample t.test for each row (I know this sounds crazy) and put the p.values into the 7th column. I know...

Rmpi for 64bit R 2.12.2 on Windows 64bit
Hao Yu · Mar 24, 2011 · r-sig-hpc

Hi. Just let you know that 32 and 64bit binary Rmpi for windows is available for download. You need the latest 64bit MPICH2 1.3.2p1 to work on 64bit R 2.12.2. Be aware that I compiled 32bit...

3D or 4D plot
Huang, Guo-Hao · Feb 20, 2009 · r-help

You can try rgl package. It utilizes OpenGL library. Or, check the CRAN to find other gtk based package ----- Original Message ----- From: "kapo coulibaly" <kmcoulib at gmail.com> To: <r-help at r-project.org> Sent: Friday, February 20, 2009...

R copies for no apparent reason
Jiucang Hao · Mar 2, 2017 · r-help

Hi Everyone, Some R function will make R copy the object AFTER the function call, like nrow, while some others don't, like sum. For example the following code: x = as.double(1:1e8) system.time(x[1] <- 100) y...

foreach and deparse(substitute(x))
Hao Cen · Dec 11, 2009 · r-help

Hi, I would like to get the actual object name passed as a parameter of a function and am using deparse(substitute(x)) to do that. It doesn't work when it is used along with the foreach package. Appreciate...

Error of exp() in a dll from Fortran
Hao Ren Sr · Jul 12, 2008 · r-help

Hi, I have an error happened when I use exp() in my Fortran code. My Fortran code is SUBROUTINE f(n,c) REAL, INTENT(IN) :: n(10) REAL, INTENT(OUT) :: c(10) INTEGER :: k DO k=1, 10 c(k...

Can't find what you're looking for? Try searching with Google .