search for: siim

Displaying 20 results from an estimated 24 matches for "siim".

Did you mean: shim
2007 Oct 17
1
R CMD build and et_EE.UTF-8 locale -> invalid files (PR#10351)
Full_Name: Ott Toomet Version: 2.6.0, 2.5.x OS: debian etch, lenny Submission from: (NULL) (80.235.63.243) When building a package with 'R CMD build name_of_directory" using "et_EE.UTF-8" locale, I get the following: siim at tancredi:~/tyyq/econ/micEcon$ R CMD build trunk * checking for file 'trunk/DESCRIPTION' ... OK * preparing 'trunk': * checking DESCRIPTION meta-information ... OK * checking whether 'INDEX' is up-to-date ... NO * use '--force' to overwrite the existing 'INDEX...
2001 Sep 20
3
indexing an array
Dear everybody, I have a following problem. I have a 3D array lambda <- array( dim=c(N,M,M-1)) where I have to extract the elements as follows: lambda[ 1, state[1], 1] lambda[ 1, state[1], 2] ... lambda[ 1, state[1], M-1] lambda[ 2, state[2], 1] ... lambda[ 2, state[2], M-1] ... lambda[ N, state[N], M-1] i.e. the result should be a 2D array, where the second index follows the first one
2007 Mar 22
6
Xen and SAN : snapshot XOR live-migration ?
Please tell me if I am wrong : Xen needs LVM to perform domU snapshots and snapshots must be performed by dom0. By the way, a LVM volume group should not be used by more that one kernel at the same time. So if we use a SAN storage, one volume group should be activated on only one server and deactivated on the others. But if we do that, it should not be possible to perform live migration of
2002 Aug 10
2
package for saving large datasets in ASCII
...ctions started swapping now, but as you can see, save.table() is still around 10 times as fast as write.matrix(). Examples are on my 128MB PII-400 linux system and R 1.4.0. I am not sure if there is much interest for such a package, so I put it on my own website instead of CRAN (http://www.obs.ee/~siim/savetable_0.1.0.tar.gz). Any feedback is appreciated. Many thanks to Brian Ripley and the others, who helped me accessing R objects in C. Best wishes, Ott Toomet -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.a...
2007 Oct 30
2
Splitting up the micEcon package?
Dear R Users: The functions of our "micEcon" package [1,2] can be subdivided into three categories: - microeconomic demand and firm models - sample selection models (mainly selection()) - routines for (likelihood) maximisation (e.g. maxLik(), maxNR(), maxBHHH()) (mainly used for ML estimation of sample selection models) Although sample selection models are often used in
2010 May 10
2
Robust SE & Heteroskedasticity-consistent estimation
Hi, I'm using maxlik with functions specified (L, his gradient & hessian). Now I would like determine some robust standard errors of my estimators. So I 'm try to use vcovHC, or hccm or robcov for example but in use one of them with my result of maxlik, I've a the following error message : Erreur dans terms.default(object) : no terms component Is there some attributes
2006 Sep 18
1
ISO8601 week-of-year to date
Hi, are there any way to convert ISO8601 weeks to gregorian dates? Something like coverttodate(year=2006, week=38, day=1) # Sept 18, 2006 Thanks in advance, Ott
2005 Oct 11
1
problem with roaming profiles
...attempting ) it still caches his profile. i have many dumbusers around and in a month there are over 15 profiles in each computer wanting to synchronize. Is there a way to disable this synchronize? PS! profiles can be deleted.. users need their accounts just for internet, msn and printing. Siim Kobin
2007 Feb 10
1
how to eval subset?
Hi, I have problems with subset when calling a function from inside a function from inside a function. Here is a small example to be called as 'f1()'. 'eval()' in f3 fails with error message Error in eval(expr, envir, enclos) : object "subs" not found Is it possible to supplement subset to data, to be calculated in a different environment than the data itself? Thanks
2002 Jun 20
2
cat output To data.frame.rows ?
Hi, is there a possibilty to get my function output with "cat " as data.frame.rows with variables ? Var1---------------- 8 15 1 3 Var2---------------- 0.170 0.319 0.0213 0.0638 Var3---------------- 83.8 88.6 90 75 Var4---------------- 84.3 84.3 100 83.3 Var5---------------- 62.5 56 20 53.3 function(data.frame) { .... ....
2001 Oct 09
1
bug in paste?
Dear all, I have strange problems with paste. Actually I suggest it is a bug (I send a associated bug report for some days ago too). I have a vector ce0, a character vector m and I paste them together: > ce0 [1] "1985" "9" "2" "2" "1" "A" "1" "" "NA" "5" [11]
2016 Feb 08
0
[ANNOUNCE] xorg-server 1.18.1
...or: Disable debugging messages other than GL API errors       present: Handle wraparound when comparing MSC values Olivier Fourdan (2):       xwayland: Do not set root clip when rootless       xwayland: Update screen size on output removal Peter Hutterer (1):       xfree86: fix minor memory leak Siim Põder (1):       vfb: add randr support (v2) Thomas Klausner (2):       Fix uninitialized variable warnings reported by clang       Fix build when XSERVER_PLATFORM_BUS is not defined. Timo Aaltonen (1):       dri2: Sync i915_pci_ids.h and i965_pci_ids.h from mesa git tag: xorg-server-1.18.1 htt...
2002 Sep 09
2
lapply-related question
Dear R-gurus, I would like to use a lapply on a kind of "bivariate" problem. I have a vector and a list, components of which are vectors, e.g. vec <- c(1,2,3) lst <- list(1, c(2,3), c(4,5,6)) I want to apply a function to each component of the list, using the corresponding component of the vector as a parameter. E.g. I want a list in the form list(lst[[1]] + vec[1], lst[[2]]
2002 Jan 25
2
problem with read.table -- example
Hi, I have not get much response for my question about read.table for couple of days ago. As I said, the problem is that read.delim() do not want to read more than 51 lines of data, with longer file it reads the first column as row names, although I have not noticed any special binary symbols around line 51 either. This problem seems to happen with this particular file, I could easily read in a
2002 May 13
3
Histograms rotated, side-by-side
Hi there, I am wanting to create 8 side-by-side histograms which have been rotated 90 degrees clockwise from how they usually sit.. all with the same scales. Is someone able to help me out? Thanks so much, Rachel Cunliffe -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send
2002 Aug 22
1
installing package maps
...Does anybody has experience with similar problems, e.g. as > library(maps) > map() Process R segmentation fault (core dumped) at Thu Aug 22 10:57:09 2002 The installation seems to be OK, see below. Perhaps I need to set some options? Ott ---------------------------- [root at localhost siim]# R CMD INSTALL a/maps_0.1-3.tar.gz * Installing *source* package 'maps' ... ** libs gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES -mieee-fp -fPIC -O2 -I/include -c mapget.c -o mapget.o gcc -I/usr/lib/R/include -I/usr/local/include -D__NO_MATH_INLINES -mieee-fp -fPI...
2003 Mar 12
6
Simple question about export
Hi, Sorry about making this stupid question, but I did not find the answer from documentation. I managed to read my spss .sav file into the R, no problem. Next I would like to write this data to a file in ascii-format. I tried to use write.table and I got no error messages, but no file either. What is the right way to make it? At least write.table("c:\foo\data.dat") does not
2008 May 06
7
Disable memory balloon in dom0
Is there any reason why I would not want to set dom0-min-mem to 0 or to what I set dom0_mem on my kernel line? Setting to 0 or setting to the same value as dom0_mem disables memory balloon correct? I cant seem to think of a reason why I would want memory ballooning. Also setting dom0-min-mem should that be done in xend-config.sxp or on the kernel command line? -- Nick Anderson
2002 Aug 28
4
Huge data frames?
A friend of mine recently mentioned that he had painlessly imported a data file with 8 columns and 500,000 rows into matlab. When I tried the same thing in R (both Unix and Windows variants) I had little success. The Windows version hung for a very long time, until I eventually more or less ran out of virtual memory; I tried to set the proper memory allocations for the Unix version, but it never
2016 Sep 16
0
[ANNOUNCE] xorg-server 1.18.99.2
..._sun' Rui Matos (4): xwayland: Clear pending cursor frame callbacks on pointer enter build: Enable vidmode independently from Xorg xwayland: Update RR state on wl_output.done instead of wl_output.mode xwayland: Process queued events before making wayland mods effective Siim Põder (1): vfb: add randr support (v2) Simon Thum (2): dix/ptraccel: Fix memory leak in InitPredictableAccelerationScheme dix/ptraccel: Remove float literals Sonny Jiang (1): DRI2: add Polaris PCI IDs Takashi Iwai (3): modesetting: Fix the error check from DRM_IOCTL...