search for: _name_

Displaying 20 results from an estimated 21 matches for "_name_".

Did you mean: _name
2009 Sep 28
6
SAS user now converting to R - Help with Transpose
...emical WellID Value BOD Well1 13.2 BOD Well2 14.2 BOD Well3 15.5 BOD Well4 14.2 O2 Well1 7.8 O2 Well2 2.6 .... and so on In sas I would code it like this: proc sort data=ds1; by chemical; run; Proc Transpose data=ds1 out=ds2; by chemical; var Well1 Well2 Well3 Well4; run; data ds3; set ds2; rename _name_ = WellID; rename col1 = value; run; How can I do this in R?? Any help is much appreciated. Thanks! -- View this message in context: http://www.nabble.com/SAS-user-now-converting-to-R---Help-with-Transpose-tp25645393p25645393.html Sent from the R help mailing list archive at Nabble.com.
2020 Aug 26
2
trace creates object in base namespace if called on function argument
Please note that this is documented in ?trace. "fun" is matched to what, it is a _name_ of the function to be traced, which is traced in the top-level environment. I don't know why it was designed this way, but it is documented in detail, and hence the expected behavior. Debugging is often, and also in R, implemented in the core. Tracing is implemented on top without specific...
2008 Apr 30
8
Playing with NtQueryInformationFile
Hi all, I''m trying to get the allocation size of a file via a file handle (rather than its name). The example below works for FileNameInformation but I can''t get it to work as expected for FileStandardInformation. Here''s some sample code: # query_test.rb require ''windows/handle'' require ''windows/error'' include Windows::Handle
2008 Aug 18
0
Playing with NtQueryInformationFile
...er than its name). The example below works for > > FileNameInformation but I can''t get it to work as expected > for FileStandardInformation. > > > > I''m trying to get File::Stat#blksize working. It''s easy > enough when I > > have the file _name_, but I''d like to get it from the file > _handle_ so > > I can make it work properly. > > I''m looking for the allocation size of a file given its name, > actually. > What "easy enough" solution am I blindly missing? Use GetDiskFreeSpace, then mul...
2006 Dec 28
0
Correct naming scheme for dovecot / squirrelmail subfolders?
...know how to filter incoming email in different folders with postfix. The part still missing, in spite of several online searches, is the correct _naming_ and nesting of all the new mailboxes. In other words, if now everything goes into /var/mail/vhosts/virtual_mail_root/ : 1) what is the currect _name_ to give to the future "work" inbox ?? /var/mail/vhosts/virtual_mail_root/work/ /var/mail/vhosts/virtual_mail_root/INBOX.work/ what else? 2) which parameters must be changed and how in dovecot and/or squirrelmail (or any IMAP client in my home PC) so that folders are recognized a...
2012 Nov 23
1
Add column index number to str() output
I often find it would be very useful when inspecting a data structure using str() to know the column index number in order to rearrange the data in a manner amenable to my purpose. Is there a way to modify the display options of the str() function to add column index? I know this is really a trivial matter but it would increase the utility of the str() function for me and increase the speed with
2020 Aug 26
0
trace creates object in base namespace if called on function argument
...ense to me to either have a traced fun in the execution environment, or to have an error. Best, Antoine Le mer. 26 ao?t 2020 ? 14:17, Tomas Kalibera <tomas.kalibera at gmail.com> a ?crit : > Please note that this is documented in ?trace. "fun" is matched to what, > it is a _name_ of the function to be traced, which is traced in the > top-level environment. I don't know why it was designed this way, but it > is documented in detail, and hence the expected behavior. > > Debugging is often, and also in R, implemented in the core. Tracing is > implemented on...
2007 Dec 27
0
SAS to R - if you have SAS 8.2+
...<- paste(cont3,"if type=1 then do; if format in ('DATE','DATETIME') then dummy='date'; ",sep="") cont3 <- paste(cont3,"else dummy='numeric'; end; run;",sep="") cont4 <- "proc transpose data=_tmp2 out=_tmp3(DROP=_NAME_); id name; var dummy; run;" cont5 <- paste("proc export data=_tmp3 outfile='",coldef,"' dbms=csv; run;",sep="") obSAS.LanguageService$Submit(cont1) obSAS.LanguageService$Submit(cont2) obSAS.LanguageService$Submit(cont3) obSAS.LanguageService$Submi...
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
...TFTP Option 66, length 7: "master^@" > >>>> > >>>> > >>>> What does the name "master.openstacklocal" point to? I typically set > >>>> dhcp-66 to the dotted quad string of the destination TFTP. Option 66 is TFTP-server _name_, no need to restrict yourself to four dot seperated octets. > >>> > >>> > >>> Hmm, actually, it doesn't resolve. > >>> > >>>>> BF Option 67, length 11: "pxelinux.0^@" > >>>>>...
2012 Mar 10
3
function input as variable name (deparse/quote/paste) ??
Hi all Say I have a function: myname=function(dat,x=5,y=6){ res<<-x+y-dat } for various input such as myname(dat1) myname(dat2) myname(dat3) myname(dat4) myname(dat5) how should I modify the 'res' line, to have new informative variable name correspondingly, such as dat1.res dat2.res dat3.res dat4.res dat5.res stored in the workspace. This is only an example of a complex
2020 Aug 25
2
trace creates object in base namespace if called on function argument
Dear R-devel, I don't think this is expected : foo <- function() "hello" trace2 <- function(fun) trace(fun, quote(print("!!!"))) base::fun # Object with tracing code, class "functionWithTrace" # Original definition: # function() "hello" # # ## (to see the tracing code, look at body(object)) `untrace()` has the same behavior. This is
2011 Apr 09
4
5.6 - SRPM's
Hi Is there any ETA for the SRPM's from the base tree of 5.6? I need to get my hands on the src for the centos-release package as i have to rebuilt it to prevent the repo definitions from being included. I see the src's for the updates RPM's but not the base. many thanks
2015 Sep 12
0
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
..."master^@" >> >>>> >> >>>> >> >>>> What does the name "master.openstacklocal" point to? I typically set >> >>>> dhcp-66 to the dotted quad string of the destination TFTP. > > Option 66 is TFTP-server _name_, no need to restrict yourself > to four dot seperated octets. True, but a dotted quad can be resolved without DNS dependence and it's always good to know this method exists, especially as a step for debugging. >> >>> Hmm, actually, it doesn't resolve. >> >>&g...
2016 Feb 03
6
delete directories with find and exclude other directories
Hi all, I'm attempting to delete some directories and I want to be able to exclude a directory called 'logs' from being deleted. This is my basic find operation (without the exclusion) # find . -type d |tail -10 ./d20160124-1120-df8mfb/deployments ./d20160124-1120-df8mfb/releases ./d20160131-16993-vazqg5 ./d20160131-16993-vazqg5/metadata ./d20160131-16993-vazqg5/deployments
2007 Jun 26
0
[1082] trunk/wxruby2/doc/textile/hyperlinkctrl.txtl: Added HyperlinkCtrl and HyperlinkEvent documentation
...f the hyperlink. +* _url_ The URL associated with the given label. +* _pos_ Window position. +* _size_ Window size. If the DefaultSize is specified then the window is sized +appropriately. +* _style_ Window style. See "HyperlinkCtrl":hyperlinkctrl.html. +* _validator_ Window validator. +* _name_ Window name. + + +h3(#HyperlinkCtrl_gethovercolour). HyperlinkCtrl#get_hover_colour + + "Colour":colour.html *get_hover_colour*() + +Returns the colour used to print the label of the hyperlink when the mouse is over the control. + + +h3(#HyperlinkCtrl_sethovercolour). HyperlinkCtrl#set_ho...
2007 Mar 28
0
[925] branches/wxruby2/wxwidgets_282/doc/textile/filedialog.txtl: Improvements to doc from wxWidgets 2.8
...y to the directory where the file(s) chosen by the user are.| - </del><ins>+* _style_ A dialog style. See FD_* styles for more info. </ins><span class="cx"> * _pos_ Dialog position. Not implemented. </span><ins>+* _size_ Dialog size. Not implemented. +* _name_ Dialog name. Not implemented. </ins><span class="cx"> </span><del>-*NB:* Previous versions of Widgets used @CHANGE_DIR@ by default -under MS Windows which allowed the program to simply remember the last -directory where user selected the files to open/save. This (...
2015 Sep 12
2
pxelinux tries to load ldlinux.c32 from DHCP server, instead of next-server
On Sat, Sep 12, 2015 at 7:08 AM, Gene Cumm <gene.cumm at gmail.com> wrote: > On Sat, Sep 12, 2015 at 5:54 AM, Teun Docter > <teun.docter at brightcomputing.com> wrote: >> On 2015-09-12 04:58, Gene Cumm wrote: >>>> >>>> I've captured the following DHCP ACK: >>>> >>>> 10.141.20.1.bootps > 10.141.20.2.bootpc: [udp sum ok]
2006 Apr 04
7
odd error
Hello everybody. I have just started trying rails, got instant rails and radrails... Made a new project, and when I tried to create a model I get the following error: Project> ruby script/generate model user -h -e:3:in `load'': no such file to load -- script/generate (LoadError) from -e:3 I?m sure this is a newbie question, I?ve searched the documentation and
2007 Mar 21
0
[906] branches/wxruby2/wxwidgets_282: Wx::ComboBox API 2.6 -> 2.8, plus some doc corrections
...el>-* _style_ Window style. See "ComboBox":combobox.html. </del><ins>+* _style_ Window style. See "ComboBox Window Styles":#window_styles </ins><span class="cx"> * _validator_ Window validator. </span><span class="cx"> * _name_ Window name. </span><span class="cx"> </span><span class="lines">@@ -112,24 +104,8 @@ </span><span class="cx"> "ComboBox#create":combobox.html#ComboBox_create, "Validator":validator.html </span><span cla...
2002 Jan 29
21
locked account accessable via pubkey auth
maybe this is a silly question ;-) But why is it possible to login on a machine with a locked account (passwd -l ) via pubkey-authentication (authorized_keys) ? I use OpenSSH3.01p1on Solaris8 with PAM support so I thought this should not happen. If this is the normal behaviour and built in intentionally what would be the easiest way to lock an account without deleting the users authorized_keys ?