Displaying 20 results from an estimated 2000 matches similar to: "Command area in SciViews 0.8.9 - second try"
2006 Aug 24
0
Lost command area in R-SciViews
Dear all
I am writing with a question regarding SciViews for R. It's probably a slightly stupid question but I cannot find a solution to a very elementary problem. I am using SciViews 0.8.9 on with R 2.3.1pat on a Windows XP Home machine. R is set to SDI mode, I start R, enter "library(svGUI)", SciViews starts properly, I can access the docks and everything, but
(i) the command
2011 Mar 05
1
pvclust crashing R on Ubuntu 10.10
Hi all
I am writing to you with a question regarding the pvclust package. And
yes, before the usual people produce their usual
contact-the-package-maintainers line, ye, I tried that but the emails
one can find on the web either bounce or are not responded to. Also,
yes, this error has already been reported as a bug but been shot down
as not reproducible
2005 Nov 30
1
SciViews-R_0.8-9 Console problem
Dear R users,
I successfully installed SciViews the other day. However, when I try to
run it now, the command/script window does not appear. Strange. Well,
actually I see a tendency to a script window (in the lower part of the
sciview window where it is suppose to be) during start up, but when the
program is entirely open, the script window is gone.
I have tried to uninstall and reinstall
2007 Jun 20
2
How to activate the R commands in SciViews
Please help, I have SciViews(svGUI) and Rcmdr but when the SciViews Console opens the R commander menu don't work. Any ideas anybody?
---------------------------------
8:00? 8:25? 8:40? Find a flick in no time
[[alternative HTML version deleted]]
2007 Jul 12
0
[Fwd: Re: How to activate the R commands in SciViews]
Well.. plans are there from a long time to rewrite SciViews completely
and make it platform independent (to work on Linux/Unix and MacOS X, as
well as Windows). I have done some work in this direction when time
permitted, but I am pretty busy with other work. During the holidays, I
will continue to work in this direction. I will try to package a first
running version of SciViews compatible with
2008 Jul 05
1
SciViews GUI
HI:
After following all the instructions on how to install the SciViews package from CRAN I still can't make the GUI show. Can someone give me a hint on how to do this? I have tried library(svGUI), library(svDialogs) and so on with the rest of the packages. I have also placed all the 'sv' packages in my Rprofile but nothing works. Any help would be appreciated. Thanks
Felipe D.
2012 Sep 20
3
(no subject)
>From my book on corpus linguistics with R:
# (10) Imagine you have two vectors a and b such that
a<-c("d", "d", "j", "f", "e", "g", "f", "f", "i", "g")
b<-c("a", "g", "d", "f", "g", "a", "f", "a",
2006 Jul 23
3
RfW 2.3.1: regular expressions to detect pairs of identical word-final character sequences
Dear all
I use R for Windows 2.3.1 on a fully updated Windows XP Home SP2 machine and I have two related regular expression problems.
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 2
minor
2010 Dec 25
2
predict.lrm vs. predict.glm (with newdata)
Hi all
I have run into a case where I don't understand why predict.lrm and
predict.glm don't yield the same results. My data look like this:
set.seed(1)
library(Design); ilogit <- function(x) { 1/(1+exp(-x)) }
ORDER <- factor(sample(c("mc-sc", "sc-mc"), 403, TRUE))
CONJ <- factor(sample(c("als", "bevor", "nachdem",
2004 Oct 16
3
Lazy loading... advices
Hello,
I am looking for more information about lazy loading introduced in R 2.0.0.
Doing
?lazyLoad
I got some and there is a 'see also' section that points to
'makeLazyLoading'... But I cannot reach this page.
My problem is: I recompiled a library that uses a lot of functions from
other libraries (of course I can give details if needed). I load it in my
computer: library(svGUI),
2006 Aug 16
0
Regular expressions: retrieving matches depending on intervening strings [Follow-up]
Dear all
This is a follow-up to an earlier posting today regarding a regular expression question. In the meantime, this is the best approximation I could come up with and should give you a better idea what I am talking about.
a<-c("<w AT0>a <w NN1>blockage <w CJC>and <w DT0>that<c PUN>.",
"<w AT0>a <w NN1>blockage <w CJC>and
2009 Jan 27
1
rJava in R 2.8.1 on Ubuntu 8.10
Hi all
I have problems installing rJava on my system.
######## My system:
> R.version # at R prompt
platform x86_64-pc-linux-gnu
arch x86_64
os linux-gnu
system x86_64, linux-gnu
status
major 2
minor 8.1
year 2008
month 12
day 22
svn rev 47281
language R
version.string R version 2.8.1
2008 May 30
1
Unicode characters (R 2.7.0 on Windows XP SP3 and Hardy Heron)
Hi all
Four questions regarding Unicode.
Three Windows questions. I am using
- a PC with Windows XP (Build 20600.xpsp080413-2111 (Service Pack 3);
- the following R version:
> R.version
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 2
minor 7.0
year 2008
month 04
day 22
svn
2018 May 09
3
NAs produced by integer overflow, but only some time ...
I have problem with integer overflow that I cannot understand.
I have a character vector curr.lemmas with the following properties:
length(curr.lemmas) # 61224
length(unique(curr.lemmas)) # 2652
That vector is the input to the following function:
yules.k1 <- function(input) {
m1 <- length(input); temp <- table(table(input))
m2 <- sum("*"(temp,
2003 Mar 18
0
SciViews R GUI preview version available
Hi all,
After being a long time off the R and R-SIG-GUI lists, because I was working
hard on SciViews, I am happy to deliver the first public version of this
program. It is still v. 0.1, that is, an incomplete alpha version. It
currently installs only on Windows 2000 or XP (NOT on Windows
9X/ME/Millenium, nor any other platform!). You can download it at
http://www.sciviews.org. Please, note that
2018 May 09
0
NAs produced by integer overflow, but only some time ...
a) Numeric values may be either integers (signed 32 bit) or double precision (53 bit mantissa).
b) Double precision constants are numeric with no decoration (e.g. 61224). Integer constants have an L (e.g. 61224L).
c) 61224*61224 > 2^31-1 so that answer cannot fit into an integer.
d) Exponentiation is a floating point operation so the result of 61224L^2L is a floating point answer that CAN
2004 May 18
0
SciViews-R, a GUI layer and companion applications for R
Hello,
An alpha version (unstable, still in development) of SciViews-R can be
downloaded from http://www.sciviews.org/SciViews-R. See also screenshots at
http://www.sciviews.org/software/rconsole.htm.
The SciViews R package provides functions to implement GUI features (object
explorer, script with context-sensitive help and completion lists, ...) and
to ease the communication with external
2003 Apr 29
1
Feedback about SciViews?
Hello,
This message is little off-topic in R-help. Sorry for that, but not all
interested people are wired yet to r-sig-gui
(http://www.stat.math.ethz.ch/mailman/listinfo/r-sig-gui). Thanks for your
comprehension.
A preview version of SciViews (a Graphical User Interface for R under
Windows, http://www.sciviews.org) was released a few weeks ago. Since then,
the Web site recorded several
2005 Jul 19
1
sciviews installation
Hello
1. a few months ago, I had sciviews working fine with R (rw2001) under
windows XP
2. now, upgrading to rw2011, the stuff seems fine (every package
installed),but I find a conflict when launching sciviews:
- it runs, apparently
- but when I try to work ("import/export In: text" for instance), it
asks for Rcmdr ("Would you like to install it now?")
3. Rcmdr is already
2011 Mar 03
6
Developing a web crawler
Hi,
I wish to develop a web crawler in R. I have been using the functionalities
available under the RCurl package.
I am able to extract the html content of the site but i don't know how to go
about analyzing the html formatted document.
I wish to know the frequency of a word in the document. I am only acquainted
with analyzing data sets.
So how should i go about analyzing data that is not