search for: prog2

Displaying 11 results from an estimated 11 matches for "prog2".

Did you mean: prog
2005 Feb 08
2
batch jobs question
Hi,there I'm doing some R batch jobs in Unix. Something like R <prog1> output1 --save & R <prog2> output2 --save & prog1 and prog2 are running at the same time and they are essentially same except it contains different parameter values. I was wondering if two processes will affect each other? Hopefully they are two independent jobs. It's a beginner's question and thanks for y...
2002 Aug 25
0
External file-attributes plugin for rsync
...le in the tree prior to syncing it, with the filename as a param in a manner similar to 'find -exec'. For each file rsync decides to transmit, it will first send a meta-info block, consisting of the output of <prog1> for this file. The receiving side, executed with --recv-plugin=<prog2>, will execute <prog2> with filename as its param, and pass it the meta-info block via stdin. <prog2> may return one of two possible return values to be treated by rsync: 0 - OK, sync the file. 1 - NOT OK. Skip to next without syncing. If 0 was returned, rsync will sync the file a...
2007 Mar 19
1
Need to Run Multiple Winapps At The Same Time
In another thread, a user was told to execute: wine 'prog1 prog2' to run them both at the same time. I haven't been able to figure out how to do that with my situation. I tried this wine "'c:/Program Files/wdisplay/WeatherD.exe' 'c:/Program Files/ Google/adwords_editor.exe'" but got this: wine: cannot find ''c:/Progra...
2015 Aug 22
2
a lld linker script bug
Hi, Thanks for your patch, Huang. It looks good to me. Just one comment: can you write a testcase, similar to the others used for linker script testing, with your example? Alternatively, you can modify lld/test/elf/linkerscript/sections-with-wildcards.test to test your case. This will make your patch complete and ready for commit, and will ensure we do not regress on this bug if this code is ever
2007 Oct 13
1
Error Message from R
...reen, R would return the output without any problems. I am now using a different dataset, and am getting the following error: Error in solve.default(t(X) %*% X) : system is computationally singular: reciprocal condition number = 3.48336e-17 And the command I typed is: source("prog2.txt") I have checked my datafiles and the prog.txt files but everything appears to be in order. Do you know what this error refers to, or what I need to do to resolve the problem? Regards, Rutendo Kaviya --------------------------------- Tonight's top picks. Wha...
1997 Oct 23
0
R-beta: why restart()
...to me. It's needed when comparing, say, the time to convergence (if at all) of various iterative processes, for each of a few hundred simulated values. For example one wants basically function(data){ summary<-rep(NA,1000) for(i in 1:1000){ results1<-prog1(data[i]) results2<-prog2(data[i]) . . . summary[i] <- f(results1,results2,...) } summary } where prog1, say, can sometimes fail fatally, for certain data values. The *object of the exercise* is to find out what values cause program i to crash but program j to run ok. One can use immediate assigns (in Splus...
2008 Jan 28
1
R command line usage
Hello, Usually if I want to run R code from another program, I generate an R script and run R BATCH. However, I have been wanting to access R's command line from another program. In other words, I want the std output from another program to feed into R (command line). Is there any way to do that? I would also like to collect R's response using std input. Thanks
2010 Nov 17
0
R Project for measurement of earnings management
...asure earnings management. Previously (i.e. in year 2006) I could obtain these two source programs off the R-Project website (i.e. www.r-project.org/<http://www.r-project.org/>), however, no longer I can get access to these two source files. The files are called "Prog.txt" and "Prog2.txt" (saved in notepad in text format). I would really appreciate it if anyone could provide me with these two source files. Thank you in advance for your kind attention. Kind regards Ali Alireza Vafaei Research Fellow School of Accounting Faculty of Law and Management La Trobe University B...
2011 Jun 16
1
Merging rows in a dataframe
Hi R Help list I'm looking to visualise US foreign aid 1946-2009 and I have the dataset for this. The trouble is it's a bit too complex and I need to simply it I want to merge all of the rows with the same country together and add up the individual totals to make one total figure per country per year Below is an example of the kind of data. The real dataset has 2447 rows and covers 63
2010 Nov 17
5
n00b, how to uninstall wine completely and reinstall, Ubuntu.
I installed wine on my desktop running ubuntu 10.04. All was working fine until I installed battlefield 1942. I had an issue so decided to uninstall wine and try again. When I reinstalled wine, I get no Programs item in the menu. I can browse to the folder when browsing the c drive. I started to uninstall BF1942 to try again and had a power cut during the process. Is there any way to completely
2005 Jan 01
2
New Year Wish List
...New Year I would like to list the top 10 features I would like to see in R. The first three are the most important. 1. Scripting With this feature it would be possible to call R like this as a filter: R -f myprog.R infile1.txt infile2.txt > outfile.txt or prog1 | R -f myprog.R | prog2 making it convenient to replace many instances of awk/perl/batch with R. This could also be used by R itself to eliminate dependence on perl and UNIX tools in the package building scripts. There are workarounds already but we need something that works smoothly. This also relates...