Displaying 3 results from an estimated 3 matches for "myitem".
2006 Jun 04
8
Remove item from session
Hi there,
when i do this:
session[:myItem] = ''foo''
session[:myItem] = nil
the item :myItem is removed from the session.
But this:
session[''myItem''] = ''foo''
session[''myItem''] = nil
doesn''t remove ''myItem'', it''s empty but still in...
2013 Mar 25
2
Faster way of summing values up based on expand.grid
Hello!
# I have 3 vectors of values:
values1<-rnorm(10)
values2<-rnorm(10)
values3<-rnorm(10)
# In real life, all 3 vectors have a length of 25
# I create all possible combinations of 4 based on 10 elements:
mycombos<-expand.grid(1:10,1:10,1:10,1:10)
dim(mycombos)
# Removing rows that contain pairs of identical values in any 2 of
these columns:
mycombos<-mycombos[!(mycombos$Var1
2003 Jan 09
0
Installing R-Excel Interface - Help requested (long)
...c.
If I click OK within the error dialog box it takes me to
RserverVBAlib (Rserver.xla)
Modules
Rinterface
and highlights the statement:
Dim My_R As StatConnector
The entire beginning of Rinterface is below.
Option Base 1
Public Const RExcelVersion = "Version 0.73"
Dim myitem As Object
Dim FlatMenus As Boolean
Dim My_R As StatConnector
If I open Excel without the Rserver box ticked within Tools /
Addins, Excel opens normally, but then when I tick the R Interface box
within Toos / Addins I get "error in loading DLL (error 48)".
The entire error messag...