Displaying 14 results from an estimated 14 matches for "davidwinsemius".
2009 Jul 21
2
dump() an object of type raw ?
Is there a way to do this? I tried
x <- writeBin(pi, raw())
dump("x","x.R")
source("x.R")
but is seems x.R is not source()-able, as it contains an unexpected symbol.
Thanks
Ben
2009 Sep 18
2
Ruuid missing Gtk glib.dylib
Hi,
I get an error indicating a missing library from the package 'Ruuid'.
I suppose this means I should install RGtk. I just thought I'd
document the error. Maybe a dependency entry is missing?
R 2.9.0
OS X 10.5.8
Thanks,
- chris
> biocLite('Ruuid')
Using R version 2.9.0, biocinstall version 2.4.12.
Installing Bioconductor version 2.4 packages:
[1] "Ruuid"
2017 Jun 22
2
Accessing Pointers
Hello,
I am relatively new to R and would like to access the document my pointer
is pointing to in the following line of code. Need some help.
#install.packages('xml2')
library('xml2')
pg1 <- read_html("www.msn.com")
str(pg1)
ptr <- pg1[[2]]
[[alternative HTML version deleted]]
2017 Jun 22
0
Accessing Pointers
...;my pointer"?
> is pointing to in the following line of code. Need some help.
>
> #install.packages('xml2')
> library('xml2')
> pg1 <- read_html("www.msn.com")
Error: 'www.msn.com' does not exist in current working directory ('/Users/davidwinsemius').
> str(pg1)
> ptr <- pg1[[2]]
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read t...
2010 Feb 06
2
R-Help
Hi - I am not familiar with R. Could I ask you a quick question?
When I read a file like this, I get an error. Not sure what I am doing
wrong. I use a MAC. How do I specify a full path name for a file in R? Or
do files have to reside locally?
> KoreaAuto <- read.table(""/Users/
raviramaswamy/Documents/Rutgers/STT 586/HW1 Data.txt"")
Error: unexpected numeric
2012 Nov 07
2
Absolute path in gdata library
Dear list,
I have some .xls files that I need to read into R. I am able to do so
using read.xls in the gdata package, however the helper functions
sheetNames and sheetCount fail. This is the error:
Unable to open file '~/SharedFolder/MyData/mydata.xls'.
Warning: running command ''/usr/bin/perl'
'/usr/local/lib/R/site-library/gdata/perl/sheetCount.pl'
2010 Oct 20
3
loading workspace- getting annoying
I stupidly decided to save my last workspace (a large dataset) and every
time I open R it loads it back in. Can I stop this? Also how do you clear
variables.
Thanks,
Sachin
--- Please consider the environment before printing this email ---
Allianz - General Insurance Company of the Year 2009+
+ Australia and New Zealand Insurance Industry Awards
This email and any attachments has been sent by
2012 Jul 06
2
Is R BOOT package available for 2.15.1 version for Mac OS?
Hi everyone!
I am trying to install boot package in order to do bootstrap analysis with
R. I am trying to use the following command:
install.packages("/var/folders/++/++53BE++6+0++4RjPqRgNE+-lHI/-Tmp-//Rtmpvmc3aE/downloaded_packages")
But get the following message:
package
?/var/folders/++/++53BE++6+0++4RjPqRgNE+-lHI/-Tmp-//Rtmpvmc3aE/downloaded_packages?
is not available (for R
2009 Jun 22
2
problem with checking wether file is present or not
Hi all,
I have a problem with checking File is present in the directory or not
like
I have a sequence of files in one folder I have to take each file in order
and have to caliculate on those files data but in order some files are
missing for that I have to check and load those files for that I am using
condition like
if(file.exists(findings)==TRUE){}
its giving results for files which are
2011 Jul 03
1
using Arial font
To whom it may concern,
I am e-mailing you concerning the use of Arial Font in the program R and I
am using a mac.
I am trying to create graphs in R and the publisher I wish to publish an
article with needs the font to be Arial. I have tried looking around to find
out how to do this with no luck and must help on the topic is geared towards
Linux users - the only help available is from the PLoS
2016 Apr 18
1
'nlme' package not compiling
Hi,
I'm trying to install from source code the 'nlme' package in
RStudio. When I try, I get the following error message:
ld: warning: directory not found for option
'-L/usr/local/lib/gcc/x86_64-apple-darwin13.0.0/4.8.2'
ld: library not found for -lgfortran
clang: error: linker command failed with exit code 1 (use -v to
see invocation)
make: *** [nlme.so] Error 1
ERROR:
2018 May 13
0
Dataverse (reading files with .tab and .7z suffixes)
Ilio Fornasero writes:
> Yet, I am at this point.
>
>
>
>
> ## 01. Finding the dataverse server and making a search
> Sys.setenv("DATAVERSE_SERVER" =3D "dataverse.harvard.edu")
> dataverse_search(".Hunger")
>
>
> ## 02. Loading the dataset (in this example, I have chosen the word ".Hunge=
> r" to get
> # one list and
2009 Aug 05
2
reading and frequency analysis of Spanish text
For an historical paper I'm working on, I have some Spanish plaintext,
presently in the form of a Word .doc
file,
http://euclid.psych.yorku.ca/SCS/Gallery/images/Private/Langren/Verdadera-spanish-stripped.doc
and also some ciphered text from the same original source. The ultimate
goal is to use some
frequency analysis of letters and word lengths in the plaintext to help
decode the
2009 May 31
2
convert the contents of a date.frame to a matrix
Dear R user,
I am trying to convert the contents of a date.frame to a matrix. Since there
are negative values in the date.frame, when I use data.matrix(x,
rownames.force = NA), the resulting matrix is not the same as the original
one. Basically I think R treats the numbers in the date.frame as character
and converts it to corresponding numerics.
Any idea on this issue?
Many Thanks,
Hongyuan