search for: thevalu

Displaying 7 results from an estimated 7 matches for "thevalu".

Did you mean: thevalue
2006 Mar 11
2
how to create analog stripchart plots of x vs t (t=mm/dd/yyyy hh:mm:ss)
...;t' is a timestamp like "mm/dd/yyyy hh:mm:ss" (also of N elements) here is how i am getting the data: > >TheData <- scan("MyDataFile.txt",sep=",",list("","",0)) >TheDates <- TheData[[1]] >TheTimes <- TheData[[2]] >TheValue <- TheData[[3]] > and here is how i am making the datetime objects: > >TimeStampStr <- paste(TheDates,TheTimes) >TimeStampObj <- strptime(xStamp,"%m/%d/%y %H:%M:%S") > and then i try to plot it with: > >plot(TimeStampObj,TheValues) > but this is w...
2010 Jan 24
0
Setting thevalue of max in calls to sqlGetResults
I have compiled and linked a 64 bit version of R (R 2.9.2) and the corresponding unix ODBC 64 bit package When issuing a SqlQuery, I get the following error > library(RODBC) > channel <- odbcConnect("OraLSH", <user>, <password>) > sqlQuery(channel,"select sysdate from dual") Error in .Call(C_RODBCFetchRows, attr(channel, "handle_ptr"), max,
2011 Nov 16
1
hierachical code system
....06.05', 'STAT.01.01.06.06', 'STAT.01.02', 'STAT.01.02.01', 'STAT.01.02.02', 'STAT.01.02.03', 'STAT.01.02.03.01', 'STAT.01.02.03.02', 'STAT.01.02.03.03', 'STAT.01.02.03.04', 'STAT.01.02.03.05', 'STAT.01.03') theValues <- c('NA', 'NA', '15074.23366', '4882.942034', '1619.59628', '1801.722877', '1019.973666', 'NA', '503.9239317', '917.2189347', '6018.830465', '1944.11311', '1427.575402', '1965.725428...
2008 Jun 26
6
ActiveRecord search Query Question
I''m not using ferret because the search I need is not that complicated. I created a basic active record search. I''m using some code from the pragmaticprogrammer book. This is the issue: I can get the single keyword to work fine when entered into the search box, but when you put to keywords separated by a space the search returns no results. It makes sense since the function
2018 May 29
1
Difficulty in writing R code for one pool dynamic model
...will be fed by flux "inA" at a rate of 5 units per hour anddrained by flux "outA" at a rate of 20% per hour. At time 0, A has 5units. At time 30, what is the pool size of A (rounded to 1 decimal)? In theanswer sheet provide the value of pool could be (23.8, 24.8, 25.0 or 24.7). Thevalue I got does not correspond to any of the choices given above. ?I don't know where I got it wrong.? Below is the Ro code I tried to estimate thepool size of A at time 30. #Step 1: Specify time? Tstart <- 1 Tstop <- 30 Tstep <- 1 #Step 2: Set variables corresponding to pools inA...
2008 May 27
2
order complex aggregation results in 'calculate'
...the results of a complex aggregation using ''calculate'' (from ActiveRecord::Calculations::ClassMethod)? I have a "legacy" table from which I would like to retrieve some aggregated data, with an ordering. Something like: Entry.calculate(''avg'', ''thevalue'', { :order=> ''avg_thevalue DESC'' }) which generates the following (Postgres) query: SELECT avg(subject) AS avg_subject FROM logevents ORDER BY avg_subject This works, but the :order option depends on what I think are implementation details of the function calcul...
2012 Apr 09
1
Panel.abline would not show beyond a certain slope value
...o use panel.lmlineq in loglog xyplot File2Open = "C:\\Documents and Settings\\All Users\\Documents\\Desktop\\Fayez\\RPractice\\PowerLawGraphsAblineQnData.txt" DataTable = read.table(File2Open, header = TRUE, sep = "\t") md <- melt(DataTable, id.vars = c('Range', 'TheValue', 'TheNo')) # removed 'DegType' column 030312 md$variable <- as.numeric(substr(md$variable, 9, nchar(as.character(md$variable)))) mypanel4loglog <- function(x, # x is the variable column in melted data, equals the Domain Nos y, # y is the value column in mel...