Displaying 4 results from an estimated 4 matches for "advanve".
Did you mean:
advance
2007 Mar 13
1
Rcmdir does not work in SciVews-R
...also installed
SciViews-R 0.8.9. It worked fine. Then I installed the Rcmdr 1.2-7 from
CRAN . However the 'R commander menu' in the dockable panel does not
work. If I start Rcmdr in R without SciViews, it works perfectly.
Is there any way that I can use Rcmdr with SciViews?
Many thanks in advanve.
Kihwang
2006 May 01
3
Using Classes in Rails
I am a beginner so please excuse me, if i am doing something totally
wrong.
I have created a class using "wsdl2ruby.rb" and here is what it looks
like:
class ServiceSoap < ::SOAP::RPC::Driver
DefaultEndpointUrl =
"http://balrog/services/SearchWorker/service.asmx"
MappingRegistry = ::SOAP::Mapping::Registry.new
Methods = [
...
--
Posted via
2003 Dec 06
5
What sort of math i required?
Hi,
Keep up the good work! The file sizes of Theora's output is amazing!
I have just joined the list, and would like to contribute to the
2008 Jun 06
6
Subsetting to unique values
I want to take the first row of each unique ID value from a data frame.
For instance
> ddTable <-
data.frame(Id=c(1,1,2,2),name=c("Paul","Joe","Bob","Larry"))
I want a dataset that is
Id Name
1 Paul
2 Bob
> unique(ddTable)
Will give me all 4 rows, and
> unique(ddTable$Id)
Will give me c(1,2), but not accompanied by the name column.