search for: actiontaken

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

Did you mean: action_taken
2011 Jan 04
2
Print plot to pdf, jpg or any other format when using scatter3d error
...times where userID = 'ID01'") sessionU01 <-fetch(rsSessionsU01) sessionU01[2,] #user01 data mycon <- dbConnect(MySQL(), user='root',dbname='test',host='localhost',password='') rsUser01 <- dbSendQuery(mycon, "select a.userID,a.sessionID,a.actionTaken,a.timelineMSEC,a.durationMSEC,b.X,b.Y,b.Rel__dist_,b.Total_dist_ from `actiontimes` as a , `ulogdata` as b where a.originalRECNO = b.RECNO and a.userID='ID01'") user01 <- fetch(rsUser01, n= -1) user01[1,1] #plot loop for (i in 1:10){ userSubset<-subset(user01,sessionID...
2005 Dec 27
2
NoMethodError in new scaffold
...requesttype_id | int(11) | NO | | | | | ostype_id | int(11) | NO | | | | | requeststatus_id | int(11) | NO | | | | | description | text | NO | | | | | actiontaken | text | YES | | NULL | | | admin_id | int(11) | NO | | | | | wwid | varchar(8) | NO | | | | | idsid | varchar(8) | NO | | | | | name...
2011 Jan 04
0
Error in M[, 1] : incorrect number of dimensions when trying to plot hexbin
...the csv file attached to this mail. The R code is: #libraries library(RMySQL) library(hexbin) #user data mycon <- dbConnect(MySQL(), user='root',dbname='test',host='localhost',password='') rsUser01 <- dbSendQuery(mycon, "select a.userID,a.sessionID,a.actionTaken,a.timelineMSEC,a.durationMSEC,b.X,b.Y,b.Rel__dist_,b.Total_dist_ from `actiontimes` as a , `ulogdata` as b where a.originalRECNO = b.RECNO") user01 <- fetch(rsUser01, n= -1) user01[1,1] #list of users mycon <- dbConnect(MySQL(), user='root',dbname='test',host='loca...