search for: patha

Displaying 8 results from an estimated 8 matches for "patha".

Did you mean: path
2010 Oct 10
2
Help reading table rows into lists
Hi all, I have a large table mapping thousands of COGs(groups of genes) to pathways. # Ex COG0001 patha pathb pathc COG0002 pathd pathe COG0003 pathe pathf pathg pathh ## I would like to combine this information into a big list such as below COG2PATHWAY<- list (COG0001 = c ("patha ","pathb ","pathc "),COG0002=c("pathd","pathe"),COG0003=c...
2009 Jul 18
1
[R] Problem With Repeated Use Of Load/Save/Close Commands (PR#13841)
...base > > I'm using the vanilla load of R, with nothing added after booting up. > The problem also occurs on my Vista machine as well. > > The program below will induce the problem. > ------------------------------------------------------------ > junk = 1 > PathA = tempdir() > conX = paste(PathA,"junk",sep="\\") > outJunk = file(conX, open="wb") > save(junk, file=outJunk) > close(outJunk) > for(i in 1:4000){ > outMIA = file(conX, open="rb") > load(file=outMIA)...
2009 Aug 06
2
Repeatable, But Time Varying R GUI Crash
...graphics grDevices utils datasets methods base (The problem occurs on my Vista machine as well.) ******************************************* # This script induces the R GUI to crash. problem2 = function(){ junk = mat.or.vec(8,40) junk[] = 1 mjunk = mat.or.vec(8,40) mjunk[] = -1 PathA = tempdir() conX = paste(PathA,"junkx",sep="\\") conY = paste(PathA,"junky",sep="\\") outJunk = file(conX, open="wb") save(junk, file=outJunk) close(outJunk) outJunkY = file(conY, open="wb") save(mjunk, file=outJunkY) close(outJunk...
2009 Jul 17
1
Problem With Repeated Use Of Load/Save/Close Commands
...grDevices utils datasets methods base I'm using the vanilla load of R, with nothing added after booting up. The problem also occurs on my Vista machine as well. The program below will induce the problem. ------------------------------------------------------------ junk = 1 PathA = tempdir() conX = paste(PathA,"junk",sep="\\") outJunk = file(conX, open="wb") save(junk, file=outJunk) close(outJunk) for(i in 1:4000){ outMIA = file(conX, open="rb") load(file=outMIA) close(outMIA) closeAl...
2009 Aug 06
1
[R] Repeatable, But Time Varying R GUI Crash (PR#13880)
...ccurs on my Vista machine as well.) > ******************************************* > > # This script induces the R GUI to crash. > > problem2 = function(){ > > junk = mat.or.vec(8,40) > > junk[] = 1 > > mjunk = mat.or.vec(8,40) > > mjunk[] = -1 > > PathA = tempdir() > > conX = paste(PathA,"junkx",sep="\\") > > conY = paste(PathA,"junky",sep="\\") > > outJunk = file(conX, open="wb") > > save(junk, file=outJunk) > > close(outJunk) > > outJunkY = file(conY, ope...
2009 Jul 18
0
[R] Problem With Repeated Use Of Load/Save/Close Commands (PR#13842)
...m using the vanilla load of R, with nothing added after booting up. >> The problem also occurs on my Vista machine as well. >> >> The program below will induce the problem. >> ------------------------------------------------------------ >> junk = 1 >> PathA = tempdir() >> conX = paste(PathA,"junk",sep="\\") >> outJunk = file(conX, open="wb") >> save(junk, file=outJunk) >> close(outJunk) >> for(i in 1:4000){ >> outMIA = file(conX, open="rb") >&g...
2012 Mar 12
1
SEM eigen value error 0 X 0 matrix
...ll of the 'NA' values from my data and can verify this by a visual inspection. Here is my specified model: # Primary model wellbeing.model <- specifyModel() belonging -> optimism, path1 autonomy -> optimism, path2 optimism -> wellbeing, path3 belonging -> belonging_hapmar, patha belonging -> belonging_attend, pathb belonging -> belonging_cowrkint, pathc autonomy -> autonomy_overwork, pathd autonomy -> autonomy_famwkoff, pathe autonomy -> autonomy_hrsrelax, pathf optimism -> optimism_confinan, pathg optimism -> optimism_goodlife, pathh optimism -> op...
2010 Jul 12
2
R-2.11.1 build and 'so' libraries withouth the 'lib' prefix
...splines.so $R_HOME/library/stats/libs/stats.so $R_HOME/library/survival/libs/survival.so $R_HOME/library/tools/libs/tools.so In linux builds the linker usually looks for libs with the 'lib' prefix. In this installation all the libraries ---in $R_HOME/modules ---in $R_HOME/library/patha/to/whatevr do not have the 'lib' prefix. QUESTION: A) does any on list know SHLIB_LD SHLIB_LDFLAGS SHLIB_CXXLDFLAGS SHLIB_FCD SHLIB_FCLDFLAGS settings for compiling R and do these result in so libs with the 'lib' prefix? B) If all of A) is negative what is the...