Displaying 4 results from an estimated 4 matches for "nselect".
Did you mean:
select
2003 Feb 11
3
Tcl/Tk support is not available on this system.
...am running R version
1.6.2 with Tcl/Tk version 8.3.5 installed. When I try to test R from the
data_sets directory I get the error message;
Error in firstlib(which.lib.loc, package) :
Tcl/Tk support is not available on this system
Error in fileBrowser(textToShow = "Choose one CDF file" , nSelect = 1, :
tcl/tk library not available
Execution halted.
Any help would be appreciated.
Doug Forbeck
2006 Dec 20
1
DBI + ROracle problem with parser ?? (PR#9424)
...ts and linefeed at start are
interfering:
dbGetQuery(conn, query):
works:
dbGetQuery(conn, "select * from dual")
dbGetQuery(conn, "select * from dual /* comment */")
dbGetQuery(conn, "select /* comment */ * from dual")
doesn't:
dbGetQuery(conn, "\nselect * from dual")
dbGetQuery(conn, "select\n * from dual")
dbGetQuery(conn, "/* comment */ select * from dual")
2011 Feb 21
2
Delete Comment Lines from SQL String as a Vector
Hi,
I tried to remove the text starts by "--" to the end of the line as below
sql=c("-- This is a comment line",
"select sysdate -- This is a comment Text" ,
" from dual ")
>sql
[1] "-- This is a comment line"
[2] "select sysdate -- This is a comment Text"
[3] " from dual "
I try to have this
> sql
2011 Jul 08
2
Selecting subset of a given vector
Hi there, given a numeric vector, I can select numbers within a
specific range. However presently, I have something related but
different problem. Suppose I have a numeric vector. Now take an
arbitrary number. Goal to to chose a specific subset with a given
length, from that given vector, so that those chosen numbers are
centered around that given constant.
Here is one example:
### My original