search for: myrep

Displaying 3 results from an estimated 3 matches for "myrep".

Did you mean: myrepo
2003 Oct 10
0
Share informations...
Hi all ! How can I change the rights on a folder or subfolder in a samba share ?! Exemple: i'v got this: - MyRep <- Owner(User1)(RWX) Group(MyGroup)(RWX) Other()() | - SubRep <- Owner(User1)(RWX) Group(MyGroup)(RWX) Other()() | | * File6.doc | | * File7.doc | * File1.doc | * File2.doc i've got 3 users and one group: - user1 - user2 - us...
2010 Aug 11
1
sem & psych
...stead of that the computations using mapply to fill matrix rows with the results of the single simulations break up and the whole simulation stops. How could I bring R just to spring the undesired solutions and go on up to the end? Best, Gui # Simulation MTMM myMaxN <- 1 # myRep <- 1 # number of replications in each experimental cell traitLoads <- c(0.3, 0.5, 0.7) # loads of observed variables on trait factors traitCorrs <- c(0.0, 0.4, 0.7) # correlations between traits methodLoads <- c(0.2, 0.3, 0.4) # loads of observed variables...
2008 Apr 09
1
Replace values according to conditions
...ondition 3 if data = 4 or data =5, replace with 0 So the expected output for the example, would be Col1 Col2 Col3 Col4 Col5 -1 -1 0 1 1 1 1 1 -1 0 0 0 1 1 1 I have thought of using replace with each conditions, for example I tried the following myrep <- replace(mydata, mydat <= 3, -1 ) #Condition 1 I would have to repeat the function replace for each of the conditions to get the expected output. My questions are: 1. I would like to know if there are better ways to achieve the expected output? 2. What are the symbols for OR and AND in...