search for: varialbe

Displaying 20 results from an estimated 30 matches for "varialbe".

Did you mean: variable
2009 Feb 19
2
table with 3 varialbes
I have the initial matrice: > *data.frame(Subject=rep(100:101, each=4), Quarter=rep(paste("Q",1:4, sep=""),2), Boolean = rep(c("Y","N"),4))* Subject Quarter Boolean 1 100 Q1 Y 2 100 Q2 N 3 100 Q3 Y 4 100 Q4 N 5 101 Q1 Y 6 101 Q2 N 7 101 Q3 Y 8 101
2012 Dec 02
1
Fwd: How to calculate different groups of varialbes importance level?
Dear R user! I have a small question! I have calculated the relative importance of the variables. However I would like to compare the relative importance of two different groups of variables (i.e Strategy and industry) For example let me say that strategy has 2 sub varialbes and industry has four different variables! Can I simply add the importance of those four industry variables importance over each other and say that the importance level of industry is the total of those four varibales' importance? Can I also do the same thing and add the importance of two st...
2000 Feb 02
1
Placing a varialbe within a text statement.
I have a simple question. On a plot, I would like to place text containing a calculated value. What is the format? For example. I would like the following text to appear on a plot. The average temperature is 23.1 degrees. I'm guessing the command is text( x, y, "The average temperature is " %variable name% "degrees") Thanks, Matt Pocernich -------------- next part
2006 Sep 15
2
Histogram of data with categorical varialbe
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible Url : https://stat.ethz.ch/pipermail/r-help/attachments/20060915/8b4027b0/attachment.pl
2008 Jun 03
1
some problems I have met in LARS
Hi: I loaded the LARS package,and input: data(diabetes),load the embedded data then I found the varialbes are in this form: x.age,x.bmi......(10 of them),X2.age,X2.bmi....(64 of them) When I input x,R gave me all 10 varialbes,and input X2,it gave me 64 variables,but if I input x.age,it returned nothing,I wonder how to affiliate those subvariable such as x.age,x.bmi to x,since I create a table,...
2016 Mar 14
2
TLS_CIPHER_SUITE - OpenLDAP connection
...a work wirh LDAP in TLS mode. Does anyone have a suggestion how I can apply TLS_CIPHER_SUITE in such a way that Samba LDAP connection doesn't break? I think this is a major configuration issue and should be mentioned in the official Samba Wiki. Samba <-> LDAP Isn't working unless the varialbe "TLS_CIPHER_SUITE" is deactivated or set propper. What do you think? Best regards Leander Schäfer >> Am 14.03.2016 um 11:03 schrieb Andrew Bartlett <abartlet at samba.org>: >> >> On Mon, 2016-03-14 at 01:55 +0100, Leander Schäfer wrote: >> What would be...
2007 May 17
4
using lm() with variable formula
...(height ~ BP + Cals) lm(weight ~ height + BP) lm(weight ~ height + Cals) etc. In general, I'll have to read the header to get the argument labels. Do I have to write several functions, each taking a different number of arguments? I'd like to construct a string or list representing the varialbes in the formula and apply lm(), so to say [I'm mainly a Lisp programmer where that part would be very simple. Anyone have a Lisp API for R? :-}] Thanks, chris Chris Elsaesser, PhD Principal Scientist, Machine Learning SPADAC Inc. 7921 Jones Branch Dr. Suite 600 McLean, VA 22102...
2008 Jun 04
1
how to extract a specific group of data from a table?
a table with three varialbe:treatment (low,high),size(large,small),response y I want all response y with treatment=low and size=large, I try to write as : treatment<-c("low","low","high","high") size<-c("small","large","small","large") y...
2006 Oct 04
1
strip function
Hi, I would like to asign titles into strip of a panel of curves designed thanks to a xyplot function (lattice package) I ve tried the "strip" function, ... here is my code I would like to write in the strip of each panel conditionning varialbe (here, it is data[,1]) xyplot (data[,3] ~ data[,2] | data[,1] , strip.default (which.given=1, which.panel = c(1:15), var.name= c ("26","28","15","2","31","10","16","21","21.5","5","17"...
2006 Sep 06
1
Covariance/Correlation matrix for repeated measures data frame
...is measured 6 times on each patient. Patient number (discrete) Time (1 to 6, discrete) Potassium (continuous variable) I want the covariance/correlation matrix for the cov/corr between Potassium at time i and time j. Is this possible in the current dataframe format? Or do I have to define new varialbes, say Time i and Time j, and then compute the cov/corr between Time i and Time j for all combinations? Cheers, Dave David Afshartous, PhD University of Miami School of Business Rm KE-408 Coral Gables, FL 33124 [[alternative HTML version deleted]]
2011 Aug 05
5
Variable scope when having node inheritance
...} I have then created to files: sudoers_default and sudoers_custom_server I want to have a default sudoers file on most of my servers, but on a few others, I need a different one, but on serverA I only get the sudoers_default file. I have tried to create it as a template (still using the $sudoenv varialbe) but this does not have any effect. Only if I move the include sudoers::config to the ''server-defaults'' node, then it works as I want. Being somewhat new to puppet, I really cant figure out how I can solve this task, but hopefully somebody can give some good hints? There isn'...
2010 Oct 07
3
reshape from wide to long, ordering of "varying"
...44 1.632805 1.359124 and want to get it in the form: age sex cat Int.Prev.Est 93 0 1 23.75482 93 0 2 57.86592 93 0 3 9.755003 93 0 4 4.343534 (....) 95 1 4 1.632805 95 1 5 1.359124 I am getting close with reshape, but somehow the categorie varialbe is orderd 1...1, 2...2,3...3,4...4,5....5 instad as 1,2,3,4,5,1,2,3.... reshape(UK.INT, idvar=1:2, times=1:5, varying=c("Int.Prev.Est.1", "Int.Prev.Est.2", "Int.Prev.Est.3", "Int.Prev.Est.4", "Int.Prev.Est.5"),v.names='cat', direction=&...
2013 Feb 25
1
creating variable that codes for the match/mismatch between two other variables
...I apply the following code, each trial is coded as a match. Why, what do I wrong? In some blocks, there was no prediction recorded. Therefore, I want those trials to be labeled differently [that is, match = 7]. Coding-legend: 1 = match 0 = no match 7 = no prediction recorded The code: # create varialbe that codes match/mismatch of prediction vs. stimulus mydat$match <- 0 for (i in seq_along(1:nrow(mydat))) { # if there is a match, mydat$match[i] = 1 if (mydat$Stimulus[i] == mydat$Prediction[i]) { mydat$match = 1 # the next to conditions refer to blocks without predict...
2012 May 07
3
que valores está informando R en summary???
...c$Periodo),mean)            1                2            3 Z  250.6250     277.5     329.7143 T  364.2857       86.0     191.7143 CH 110.1250    508.5     457.6667 Ajusté un modelo lineal en el cual incluí la interacción entre ambos factores (más abajo está el modelo). Siendo el nivel Z de la Varialbe "Modelo" y el nivel 1 de la Variable  "Período" los niveles de referencia, no se supone que el valor del "Intercept" debería ser 250.6250??? Además, el contraste que el R realiza si no se indica otra cosa es el de tratamiento, o sea que cada nivel del factor se compar...
2006 Aug 12
0
Form Validation with non-model fields
I have a couple of questions. I''m learning Ruby at the same time as Rails, so please forgive me if this is trivial. But when I get non-model related params back from the form, is there a quick and easy way to extract those into local varialbes? i.e. if params has keys fname and lname, to have them extracted into local variables called fname and lname without resorting to: fname = params[''fname''] lname = params[''lname''] Also, my perception is that when it comes to non-model fields, I''m...
2007 Sep 11
0
how to run a mixed design ANOVA with repeated measures
...., balanced design). That has been very well documented by Baron, for example, see: http://cran.r-project.org/doc/contrib/Baron-rpsych.pdf On page 34 of this document, section 6.8.5, Baron & Li example wonderfully how to run a 'balanced' ANOVA with one between and two within subject varialbes (6.8.5 Example 5: Stevens pp. 468 ? 474 (one between, two within)). The R code in their example is: summary(aov(effect ? gp * drug * dose + Error(subj/(dose+drug)), data=Ela.uni)) The between subjects variable is gp, whereas drug and dose are within subject variables. Now, my question is, how...
2007 May 30
0
checking for "viability" of a GUI component
...uot;")) } else tkinsert(logtext, "end",paste(inputtext,"\n",sep="")) export_button <- tkbutton(logwin, text = "Export Log", command=savelog) tkgrid(export_button) } } -- I understand I should bind a function to remove the varialbe with a close button, however, we can't stop users from closing window just by clicking on the upper right corner. How do I check for existance of the GUI, instead of the variable? Thanks
2007 May 03
1
cbios disk read problems
...t data for the same sector location. My test had some other read cases where they seem to have succeeded: sector 8450 and 8192. I also looked at what disk info was being collected for the flash drive. disk info had sectors = 32 and heads = 16. The only code change I have made is to accept a count varialbe to read multiple sectors at a time. But I tried reverting to original chain.c code with: inreg.eax.w[0] = 0x0201; (on line 60 in pastebin link) without any luck. Still the same blank data output. Does anyone have experience with cbios intricacies or why this might be happening? Thanks for any he...
2006 Nov 23
0
Passing arguments to AGI script
...n in asterisk, which are set by the AGI script depending on the results from the queries to the database. This works fine when I use the callerid variable passed from asterisk to the script however; I want to pass a variable to the script, which is a number entered by the caller and stored in a varialbe within the dialplan. Here is the part of the dialplan code calling the script, exten => s,8,Read(options3,Test/fnnconf,1) exten => s,9,Gotoif($[${options3} = 1]?13:10) exten => s,10,Gotoif($[${options3} = 2]?3:11) exten => s,11,Gotoif($[${options3} = 3]?6:12) exten => s,12,Gotoif($...
2016 Mar 14
2
TLS_CIPHER_SUITE - OpenLDAP connection
What would be a working TLS_CIPHER_SUITE in ldap.conf for Samba 4. I'm asking, cause I had to remove TLS_CIPHER_SUITE TLSv1+HIGH:!SSLv2:!aNULL:!eNULL:!MD5:!3DES:@STRENGTH from my ldap.conf for samba to work. This wasn't documented anywhere. I think this should be mentoined in the wiki as well as in the man smb.conf under tls.