search for: myinfo

Displaying 4 results from an estimated 4 matches for "myinfo".

Did you mean: minfo
2002 Nov 13
2
Importing with read.table
Hi all. I have something similar to the following: myinfo <- read.table( file = "myfile.txt", sep = "|", col.name = c( "data1", "data2" ) ) myfile.txt: a|1| b|2| However, since there are two pipe (|) characters, it reads it in and thinks there should be three columns. This is not the case and I get a warning ab...
2011 Nov 23
1
Losing custom attributes
...w row at frist or middle position so that my custom attribute is not lost. Here is what I did. age<-c(15,20,18) weight<-c(40,42,30) ### creating my data frame #### mydata <- data.frame(age,weight) ### creating data frame level attribute #### attr(mydata,"myattr")<-c("myinfo") ### creating col level attribute for 'age' column ### attr(mydata$age,"mycolattr")<-c("mycolinfo") #### Checking attributes ### attributes(mydata) attributes(mydata$age) ### creating new row ##### newrow <- data.frame(age=16, weight= 42) #### Insertin...
2011 Nov 23
2
SPSS F-test on change in R square between hierarchical models
...attribute is not lost. > > Here is what I did. > > age<-c(15,20,18) > weight<-c(40,42,30) > > ### creating my data frame #### > mydata <- data.frame(age,weight) > > ### creating data frame level attribute #### > attr(mydata,"myattr")<-c("myinfo") > > ### creating col level attribute for 'age' column ### > attr(mydata$age,"mycolattr")<-c("mycolinfo") > > #### Checking attributes ### > attributes(mydata) > attributes(mydata$age) > > ### creating new row ##### > newrow <...
2007 Mar 04
0
Event listeners
...", france") @adresses.each do |marker| @latitude = marker[:latitude] @longitude = marker[:longitude] @marker1 = GMarker.new([marker[:latitude],marker [:longitude]], :draggable => "true", :title => "myTitlei", :info_window => "myInfo...") end @map.overlay_init @marker1 @map.center_zoom_init([@latitude, @longitude],16) @map.event_init(@map,:click,"function(){alert(''HOYOYO'');}") # this runs well... testing.. @map.event_init(@marker1, :dragend, "function () { point...