Forum: open-discussion


RE: <vector> element [ Reply ] By: hari iyer on 2009-04-06 21:31 | [forum:1401] |
Thank you very much for taking the time to look at the message i posted and for fixing the bug. Regards hki |
RE: <vector> element [ Reply ] By: ilhami visne on 2009-04-06 09:18 | [forum:1394] |
Hi, Sorry, i couldn't answer before. i was in a conference and away for a week. It was a small bug (last comma in the c(...,)). Now it is fixed. I have uploaded a new version. If you are using Mac OS X, please wait till tomorrow, because i have to make first a mac bundle. i'll write here as soon as i made one. best wishes, ilhami visne |
<vector> element [ Reply ] By: hari iyer on 2009-03-24 20:11 | [forum:1373] |
Hello I used the <vector> element in RGGrunner to input a vector of 13 data values. The vector was named input and had size 9. What i found was that, when i ran the .rgg file, the code was failing to read the first data value, read the next 12 data values, and then gave an error message saying that there was no 13th value. Does anyone know what i am doing wrong? Thanks in advance for your help. The entire script is shown below. The error message is shown at the end. -- HKI <rgg> ################################################################################ ##### 1. RGG CODE ############### ################################################################################ ##### 1.1. Tool name ############### <h3 text="Monte Carlo Tool v1.0" aligment="center" span="full"/> ##### 1.2. Short description ############### <separator label="Description" span="full"/> <label text="GUI for the R package"/> <gaprow height="3"/> <separator label="Input Data" span="full"/> ##### 1.3. Data import ############### <hbox> <vector var="input" label="Input Data" size="13" vector-type="numeric" alignment="vertical" default-value="1.3,0.1,12,0,0.05,0,0.05,0,0.05,0.05,0.08,1.5,100"/> <vector var="Parameters" label="Parameter Names" size="13" vector-type="character" alignment="vertical" default-value="xbar, s, n, DFL, DFH, RAFL, RAFH, LL, LH, SIGL, SIGH, EPA, SIM"/> </hbox> ################################################################################ ##### 2. R CODE ################# ################################################################################ print(input) </rgg> =============================================== Error: element 13 is empty; the part of the args list of 'c' being evaluated was: (0.1, 12, 0, 0.05, 0, 0.05, 0, 0.05, 0.05, 0.08, 1.5, 100, ) Finished! Execution halted |