Displaying 20 results from an estimated 3000 matches similar to: "How to erase objects"
2005 Sep 13
3
where is eda library (Prof. Ripley's Exploratory Data Analysis Library)
Hi
I want to install eda library. Where can I download it?
I use R version 2.1.0 on Linux.
Thanks.
Stephen.
----- Original Message -----
From: Luis Ridao Cruz <Luisr at frs.fo>
Date: Tuesday, September 13, 2005 1:32 pm
Subject: Re: [R] How to erase objects
> ?rm
>
>
> >>> <v.schlecht at arcor.de> 13/09/2005 12:08:55 >>>
>
> Hi, I admit that
2005 Aug 26
3
parts of data frames: subset vs. [-c()]
Dear all
I have a problem with splitting up a data frame called ReVerb:
?? str(ReVerb)
`data.frame': 92713 obs. of 16 variables:
$ CHILD : Factor w/ 7 levels "ABE","ADA","EVE",..: 1 1 1 1 1 1 1 1 1 1 ...
$ AGE : Factor w/ 484 levels "1;06.00","1;06.16",..: 43 43 43 99 99 99 99 99 99 99 ...
$ AGE_Q : num 2.0 2.0 2.0 2.4 2.4
2006 Mar 28
3
How to generate a list of lists recursively (for bayesm)
Dear all,
I need to generate a list of lists as required by the bayesm-package. This means in my application that I have to generate a list which consists of 2000 elements, which are lists themselves:
list(list(y1,X1),...,list(y2000,X2000)).
The y are vectors and the X are matrices of different dimensions. I tried to solve this problem iteratively by the following code, but received an error
2005 Oct 02
1
Size of jpegs/pngs
Dear all
I have trouble with setting the size for jpegs and pngs. I need to save a dendrogram of 1000 words into a jpeg or png file. On one of my computers, the following works just fine:
bb<-agnes(aa, method="ward")
jpeg("C:/Temp/test.txt", width=17000, height=2000)
plot(bb)
dev.off()
On my main computer, however, this doesn't work:
>
2006 Mar 05
2
RWeka
Hi,
I downloaded RWeka successfully. (At least I do not see, where I could have made a mistake.) Then I tried to load it by the library-command. To my surprise this did not work. Result:
library(RWeka)
Fehler in .jinit(c(system.file("jar", "weka.jar", package = "RWeka"), system.file("jar", :
Cannot create Java Virtual Machine
Fehler: .onLoad in
2005 Sep 12
0
grepping and splitting (with R 2.1.1)
Hi R experts
I have the following regular expression problem. I am writing a basic corpus retrieval program, i.e. a concordancer/function where a user enters
- a set or a directory of text files to search;
- a regular expression to search for in these files.
I want to provide an output in which the matches of the regular expression are listed in one central column and the neighboring columns
2018 Nov 09
2
strange difference in ldbtools between samba-4.9.2 (van-Belle build) and compile samba tag 4.9.2
Hi list,
If I compile samba-4.9.2 tag from git, i get
# ldbsearch --version
Version 4.9.2
taking the same from the van-Belle build i get
$ ldbsearch --version
Invalid option --version: unknown option
[..]
But looking with dpkg I get:
$ dpkg-query -l ldb-tools
Gewünscht=Unbekannt/Installieren/R=Entfernen/P=Vollständig Löschen/Halten
| Status=Nicht/Installiert/Config/U=Entpackt/halb
2012 Mar 14
1
max path length - ExcludeProfileDirs not sufficient - temporary profile
Good evening dear users and developers,
I'm using samba 3.5.6 on Debian Squeeze as Domain-Controller for several Windows XP clients. Config below.
One user installed a software with settings in C:\documents and settings\martin\.vkbstandalone/.metadata/.plugins/de.vkb.standalone.tomcat/work/catalina/localhost/eba_standalone_web/org/apache/jsp/jsp/composite/angebot/angebot zum
2006 Feb 22
2
How can one use R-code and R-functions within C-Code?
Dear everyone,
the following problem: Our group has written a lengthy program in c++, to which we would like to add some additional features. Because we are not sure if those features are actually useful, we would prefer to take a "quick and dirty" approach just to try them out. The additional feature is that in every iteration of the algorithm membership-probabilities should by
2011 Mar 23
3
Sweave: multiple graphic formats, e.g. win.metafile
Dear R devel,
being constrained to a windows environment at work and having colleagues being accustomed to the Microsoft Office Suite, I was looking for a way to have the RweaveLatex driver for Sweave automatically generating 'win.metafile's in addition to the pdf graphics.
Without this functionalilty, the generation of emf-graphics is quite laborious, I think:
<<>>=
plotit
2006 Feb 22
2
screensavers in general
Hi,
I tried some windows screensavers with Wine.
Most screensavers start with the configuration screen without a possibility to start the main
screensaver part.
It's the same thing when I rename a screensaver file from 'somewhat.scr' to 'somewhat.exe' and
try to run it with a doubleclick on my Windows 2000 PC. (*.scr: the screensaver starts, *.exe: the configuration screen
2010 Oct 29
2
plot pdf
I want to plot the unstadardized version of a normal plot. Can you explain why that is not working?
Dev.set(1)
xcrit=-1.645
cord.x <- c(-3,seq(-3,xcrit,0.01),xcrit)
cord.y <- c(0,dnorm(seq(-3,xcrit,0.01)),0) # what does final 0 do here?
curve(dnorm(x,0,1),xlim=c(-3,3),main='Normal PDF')
polygon(cord.x,cord.y,col='orange')
2005 Mar 07
2
2-Ring Delay for CLID
Hello All,
Need a little direction, please. I have searched the lists, WIKI, and
googled a problem that I'm sure I'm overlooking. I understand why
Asterisk/Zaptel waits two rings to answer (caller ID must be sent) but
can I reduce the amount of time it takes before Asterisk/Zaptel answers?
In other words, I'm not concerned about Caller ID and want the line
answered as quickly as
2006 Aug 08
1
oodraw command line usage
I use R to create .eps graphics and then use oodraw to convert them
to .emf versions. (One reason I do this is that OOo tends to
re-size .eps files and I haven't found a way to stop it or change it
once the graph is resized. .emf files are not distorted by OOo -
fortunately.) I use a command like:
> oodraw filename.eps &
The gui opens and then I select .emf and do an export. I
2016 Apr 25
2
ylim in barplot()
Dear useRs,
I'm having troubles with using ylim in barplot(): even though I reduce
the y-scale using ylim, the bars still extend down to 0into the x-labels.
The sample data is below, and here is the code.
#This works fine but I would like to plot only from 50 to 70:
barplot(t(mydata), beside=TRUE, col=c("orange", "green", "yellow",
"purple"),
2003 Jul 03
2
Bug in plotting groupedData-objects
Dear Experts,
May be the problem is still solved, however I tried to find the answer in
the archives:
I use:
> R.version
_
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 1
minor 7.1
year 2003
month 06
day 16
2009 Sep 08
1
Changing font to times for EMF graphics
Hi,
sorry for the simple question. I am usually able to change the font for PDF graphics with pdf.options(family="Times")
However, I have found no way yet to get an emf file with a times font. I also tried a detour by using pstoedit to convert a pdf with the desired font to an emf but even there the font does not appear as times.
Is there a way to get a times font in an emf file or is
2005 Jan 26
1
Savin Copier Print Processor
I have FreeBSD 5.3 running on an Sun Ultra 10. I installed Samba 3.03, from patching SWAT now says version 3.07. I am having an issue printing from Windows through Samba to Savin copiers (model 9935DPE and 9945DPE) when downloading the Windows drivers directly from the [print$] share. When I print a test page, the orientation of the lettering is correct but the letters are gibberish. The
2004 Jun 28
3
Help!!!
Hi!
I heard many things over ogg, but all what i can see is shit. O.K. The
oggdrop.exe play with me, have this tool a version number? I can't see
it. Every other tool don't run under my system (Win98; Athlon1,5GHz;
768MB RAM). For example every version of oggenc produce the error:
"OGGENC.EXE kann nicht ausgef?hrt werden"!
There are a german mailing list? An how can i register
2002 Mar 29
2
wmf on Unix?
libEMF (http://sourceforge.net/projects/libemf/) looks like it may be
the solution to generating WMF/EMF files on Unix. It's a general-purpose
(LGPL) library that implements the EMF API ...
(I was originally going to write to the list to ask why small circles
appear to be filled (in src/gnuwin32/graphapp/gdraw.c) by generating a
series of rectangles rather than using some kind of