Displaying 3 results from an estimated 3 matches for "idpar".
Did you mean:
idear
2006 Jan 28
0
having problems to map a existing schema in model classes
...ferences application: idapplication
Foreign Key: idmodule References module: idmodule
An application has manies modules and a module has manies categories.
Ok, I guess that?s the easy one, the first case
Then I have another cases, in example
Table hours:
Primary key: id
Foreign key: idpar Refeernces: hours :id
An hour tuple has a relation with another hour tuple by the idpar key,
so in example
Hour id: 1 idpar: 2
Hour id: 2 idpar: 1
Another case:
Table user
Primay key: iduser
Table work:
Primary key: idwork
Foreign key: iduser references user: iduser
Foreign key: i...
2006 Jan 28
0
having problems to map a existing schema into model classes
...ferences application: idapplication
Foreign Key: idmodule References module: idmodule
An application has manies modules and a module has manies categories.
Ok, I guess that?s the easy one, the first case
Then I have another cases, in example
Table hours:
Primary key: id
Foreign key: idpar Refeernces: hours :id
An hour tuple has a relation with another hour tuple by the idpar key,
so in example
Hour id: 1 idpar: 2
Hour id: 2 idpar: 1
Another case:
Table user
Primay key: iduser
Table work:
Primary key: idwork
Foreign key: iduser references user: iduser
Foreign key: i...
2011 Mar 18
0
trouble in call of "texteval"
...sVector) ) )
+ for(idexpr in 1: length(linkFunctionsVector)) {
+ if(linkFunctionsVector[idexpr] == "1"){ EvalData[,idexpr] = rep(1,nrow(Data))}
+ else{ texteval(paste("EvalData[,idexpr] =", linkFunctionsVector[idexpr]), echo = TRUE)}
+ }
+
+ ExpData = NULL
+ for(idpar in 1: numPar){
+ ExpData = cbind(ExpData, EvalData)
+ }
+ colnames(ExpData) = rep(linkFunctionsVector,numPar)
+ return(ExpData)
+ }
>
> # defining the parameters "Data", "linkFunctionsVector", and "numPar"
>
> numPar = 2
> linkFunctionsVector...