[R] RGL Problem

2015-11-22 Thread Margarette Bayron Arcelay via R-help
Dear List, Im using Rstudio on a macbook pro OS X Yosemite version 10.10.5 and im trying to open the package geomorph but a warning message related to rgl shows up. > library(geomorph) Loading required package: rgl Warning messages: 1: In rgl.init(initValue, onlyNULL) : RGL: unable to open X11 di

Re: [R] not allocate of vactor size

2015-11-22 Thread jim holtman
My general rule of thumb is that I should have 3-4 times as much RAM as the largest object that I am working with. So hopefully you have at least 4 GB of RAM on your system. Also exactly what processing (packages, functions, algorithms, etc.) are you using. So functions may create multiple copie

Re: [R] How to plot results from lme in presence of a significant interaction

2015-11-22 Thread Bert Gunter
I would have thought the first place to look would be ?interaction.plot Cheers, Bert Bert Gunter "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." -- Clifford Stoll On Sun, Nov 22, 2015 at 2:44 PM, angelo.arc...@virgilio.it wrote: > Dear list m

[R] How to plot results from lme in presence of a significant interaction

2015-11-22 Thread angelo.arc...@virgilio.it
Dear list members, I wonder which is the best way to plot in r the results from the lme function, in presence of a significant interaction. My model has two interacting fixed effects and a random effect. The analysis is from an experiment where 19 participants had to adjust the Centroid paramet

Re: [R] not allocate of vactor size

2015-11-22 Thread Robert Sherry
I am thinking that R is running out of memory. Therefore, I would look to increase the size of my virtual memory. Here are two links that might help you with that: http://windows.microsoft.com/en-us/windows/change-virtual-memory-size#1TC=windows-7 http://www.ehow.com/how_5001512_increase-virtual-

Re: [R] Converting time zones in R using metadata file information of video files, help needed.

2015-11-22 Thread David Winsemius
> On Nov 22, 2015, at 2:52 AM, Ronny Steen wrote: > > Hi, > > I have video files (FAT) that are taken in a different timezone than my > current location. The modification date/time in the metafila data of the > video file shows the time video was taken, although in the current timezone > of my

Re: [R] Spectral density estimations for irregular time-series

2015-11-22 Thread Jeff Newmiller
Since you seem to have trouble reading (the Posting Guide warns you to post here using plain text format emails.. doing so will be to your benefit when we can see what you posted clearly), perhaps it is not clear to you that the Task View is referring to contributed packages that have their own

[R] Spectral density estimations for irregular time-series

2015-11-22 Thread Valery Khamenya
Hi, I fail to find libraries to estimate the spectral density for irregular time-series. This entry from "CRAN Task View: Time Series Analysis": [...]Various packages implement irregular time series based on "POSIXct" time stamps, intended especially for financial applications. These include "

Re: [R] How to split 32 bits data into 16 bit or 8 bit data

2015-11-22 Thread Frank Wang
Thank you very much that substr works great on my data. For future users, I did in the following code. z<-matrix(c(substr(tmp,5,8),substr(tmp,1,4)),5,2) dataU16 <- c(t(z)) On Sun, Nov 22, 2015 at 8:38 AM, Duncan Murdoch wrote: > On 22/11/2015 2:04 AM, Frank Wang wrote: > >> Hi, >> >> I am new

Re: [R] exporting tables from an access database using parallel foreach

2015-11-22 Thread Vivek Sutradhara
Hi Rainer and John, Thanks once again for your continued help. I have actually tried out mdbtools. I was able to get going on ubuntu. Unfortunately, to my disappointment, it was not helpful in my specific case. Because the access database is on a server which can be accessed only on windows and not

Re: [R] How to split 32 bits data into 16 bit or 8 bit data

2015-11-22 Thread Duncan Murdoch
On 22/11/2015 2:04 AM, Frank Wang wrote: Hi, I am new user on R. I want to split a vector of hex data such as "00ff8020" "02d0" "001e0240" "00010096" "00010033" into 16 bits such as: "00ff", "8020", "02d0","","001e", "0240", "0001","0096", "0001", "0033" Are there any way to do it? If

Re: [R] not allocate of vactor size

2015-11-22 Thread Jeff Newmiller
http://bfy.tw/2uv2 Please read and follow the guidance in the Posting Guide mentioned at the bottom of this message. In particular, be specific about the type of hardware and software environment you have and what R code you are having trouble with. On November 22, 2015 7:08:37 AM PST, Tamsi

[R] not allocate of vactor size

2015-11-22 Thread Tamsila Parveen via R-help
Hello,           Is there anyone to help me out how can I resolve memory issue of R, when I want to analyze data of 1Gb file, R returns me Error: not allocate of vector size of 1.8 GB.I tried on linux as well as on windows with 64 bit system and using 64 bit R-3.2.2 version. So anyone who knows

[R] Converting time zones in R using metadata file information of video files, help needed.

2015-11-22 Thread Ronny Steen
Hi, I have video files (FAT) that are taken in a different timezone than my current location. The modification date/time in the metafila data of the video file shows the time video was taken, although in the current timezone of my computer, if I understand right. I wish to convert the date/time t

[R] How to split 32 bits data into 16 bit or 8 bit data

2015-11-22 Thread Frank Wang
Hi, I am new user on R. I want to split a vector of hex data such as "00ff8020" "02d0" "001e0240" "00010096" "00010033" into 16 bits such as: "00ff", "8020", "02d0","","001e", "0240", "0001","0096", "0001", "0033" Are there any way to do it? Thanks Frank [[alternative HTML vers