Displaying 20 results from an estimated 5000 matches similar to: "Storing CA Results to a Data Frame?"
2010 Sep 26
3
Newbie Correspondence Analysis Question
I'm experienced in statistics, but I am a first-time R user. I would like to use R for correspondence analysis. I have installed R (Mac OSX). I have used the package installer to install the CA package. I have run the following line with no errors to read in the data for a table:
NonLuxury <- read.table("/Users/myUserName/Desktop/nonLuxury.data.txt")
The R online help
2010 Sep 26
4
How to update an old unsupported package
Hi all,
I have a package that is specific to a task I was repetitively using a
few years ago.
I now needed to run it again with new data.
However I am told it was built with an older version or R and will not work.
How can I tweak the package so it will run on 11.1?
It was a one-off product and has not been maintained.
Is there a way to "unpackage" it and repackage it to work?
I
2002 Aug 09
0
Automation of public/private key generation
Hi all,
I wrote a small script (developed and testet on Solaris 8), which
automates the generation and installation of the steps needed to put
keys in place. I you are interested to take it, feel free to do it.
--
*** Freundliche Gruesse **** Best regards ***
Anton Burkhalter
Dipl. El. Ing. HTL
Mobile:+41(0)78 844-0290
mailto:anton.burkhalter at gmx.net
2018 Apr 17
0
Bug: Dovecot index loosing sync with FTS despite "fts_autoindex = yes"
Le 17/04/2018 ? 14:18, kfx a ?crit?:
> dovecot 2.2.34
> solr 7.2
>
> I only see new messages after typing on the server "doveadm fts rescan
> -u username" though I've followed the wiki and added "fts_autoindex =
> yes" in 90-plugin.conf . Subsequent search for the same pattern always
> gives the same result, ignoring new emails with that particular
2007 Dec 12
2
Yikes! FreeBSD samba-3.0.26a_2, 1 is forbidden: "Remote Code Execution...
...Vulnerability - CVE-2007-6015"
http://www.freshports.org/net/samba3/
============================================================================
samba3 3.0.26a_2,1 <http://www.freshports.org/net/>net<http://www.freshports.org/faq.php#watchlistcount> <http://www.freshports.org/search.php?stype=depends_all&method=match&query=net/samba3>=220
FORBIDDEN:
2018 Jun 29
7
Sharing Mailbox between users using IMAP
Zitat von Remko Lodder <remko at freebsd.org>:
Hi Remko,
> Emails can only be read if they are authenticated / authorized in
> someway to access the store. That means you might need to share the
> info@ credentials with the other
> people so that they can read it over imap or webmail etc.
That is self-evident and it is not a problem.
I can't understand what you
2017 Jan 18
0
[FORGED] Taking determinant of a matrix of NAs results in intermittent memory corruption
On 19/01/17 11:54, Ian Erickson wrote:
> Greetings; I've posted the following to R's bug tracking system (at https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17210 ) and Martin Maechler requested that I post to this list as well.
> If I start R from the command line with --vanilla, then repeatedly execute the following line:
>
> det(matrix(nrow=10,ncol=10))
>
> ... I
2003 Jun 06
3
small plot inside a big plot
Dear R-helpers,
i want to draw a small plot (histogram) within a larger plot (simple scatterplot), so that the axes of the bigger plot remain intact.
I know how to use layout() and par(mfrow...) and such, but I want the smaller graph to be *inside* the bigger plot. Is this possible?
thanks,
Remko
2003 Apr 07
5
How to sort a dataframe?
Dear R-helpers,
for the purpose of plotting a dataframe, i am trying to sort a dataframe by one column, for example
tester <- data.frame(one=c(3,2,1), two=c(2,3,1))
#> tester
# one two
#1 3 2
#2 2 3
#3 1 1
# I want to sort "tester" by column "one", so that i get a dataframe
# that looks like:
#one two
#1 1
#2 3
#3 2
I know of 'sort' but
2011 Sep 06
2
Sweave : some comments disappear
Dear R-helpers,
when I have an R code chunk in a sweave file like this:
<<>>=
x <- 1:10
# this comment disapears
x
# this one does not!
print(x)
#mean
mean(x)
@
The first comment does not appear in the sweaved document, the second
one does. How can this be?
I have tried print=TRUE and keep.source=TRUE, but neither seem to
affect this behavior.
thanks,
Remko
2003 Feb 26
3
horizontal high-density lines?
Hi all,
the option type="h" in plot() makes nice vertical (histogram-like) lines. Is there a way to make similar, horizontal lines?
I can of course resort to using lines() multiple times, but i was hoping that there is a more elegant solution.
thanks,
Remko Duursma
Ph.D. student
Dept. Forest Resources
Forest Biometrics Lab
University of Idaho, Moscow, ID.
2003 Sep 01
3
meta-analysis question
Dear R-helpers,
i have the following situation: i have a bunch of y=b0 + b1*x from different studies, and want to estimate a "general" y=f(x). I only have the b0,b1's and R-squareds. Should i weigh the separate equations by their R-squared?
thanks
Remko
^'~,_,~'^'~,_,~'^'~,_,~'^'~,_,~'^'~,_,~'^'~,_,~'
Remko Duursma, Ph.D. student
2003 Apr 15
5
making a dataframe out of lapply() result
Dear R-helpers,
i have a question on how to vectorize this problem:
i have a dataframe:
tester <- data.frame(groups=c("A","A","B","B","C","C"), one=c(1,1,2,2,3,3), two=c(6,6,7,7,8,8))
# i split it into a list
tester.L <- split(tester, tester$groups)
# And want to keep only the first item in each:
lapply(tester.L, function(x) x
2004 Jul 17
3
upgrading form 4.2 to 5.x
Hello,
My company has been asked to help with the upgrade of several Freebsd
systems that are pretty old. The customer is running a file server samba
also running apache running FBSD 4.2, he wants to upgrade using cvsup &
the make buildworld procedure to upgrade to 5.x. Im very familier with the
make buildworld procedure however there have been significant changes
between 4.2 & 5.x so is
2007 Mar 13
4
'substitute' question
# I use this code to label a graph with the R2:
# graph
x <- rnorm(100)
y <- x + rnorm(100)
lm1 <- lm(y~x)
plot(x,y)
# label
R2text <- substitute(paste(R^2," = ",r2),list(r2=r2))
text(1,-3,R2text, col="red")
# i have modified this a bit, so that i have a vector with other labels,
each of which
# will be labelled on the graph. Example:
texts <- c("And the
2009 Aug 19
2
RGoogleDocs/RCurl through proxy
Dear list,
I am trying to use RGoogleDocs, but I am connecting through a proxy server.
I know RCurl is used for the connection, which should be able to deal
with proxies and such.
How do I set this up for RCurl? And can I use those settings with
RGoogleDocs as well?
I have the name of the proxy server and the port number.
(Windows XP).
thanks,
Remko
2009 Feb 26
2
interpSpline with dates?
Dear R-helpers,
can I use a POSIXct date as the x variable in interpSpline? The help
page says x and y need to be numeric... is there a workaround?
example:
library(splines)
testdfr <- data.frame(Date=seq(as.POSIXct("2008-08-01"),as.POSIXct("2008-09-01"),
length=10))
testdfr$yvar <- rnorm(10)
sp <- interpSpline(yvar ~ Date, testdfr)
preddfr <-
2011 Jul 29
0
Asterisk SIP authentication against [section] instead of username
Hello,
Asterisk seems to try to authenticate incoming INVITE based on the [section]
in sip.conf and not the username specified.
I just removed the "insecure" option from my sip.conf requesting every
connection to be authenticated. I added the match_auth_username=yes in the
[general] section for extra security. To make it work, I have to use the
same [section] identifier as username.
2015 Sep 16
1
How to "Windows Authenticate"
> On 16 Sep 2015, at 19:10, Mark Foley <mfoley at ohprs.org> wrote:
>
> Does the Dovecot NTLM mechanism work with MS Outlook?
>
> [ ] YES
> [ ] NO
>
> Please check one ... anybody.
>
> ?Mark
The URL on the wiki, which had probably been shared before with you;
http://wiki2.dovecot.org/HowTo/ActiveDirectoryNtlm
suggests it does.
The URL quotes:
Step 5.
2004 Apr 06
1
SIP phone registering problem
I am clearly doing something ridiculously wrong.
Running Asterisk 0.7.2 on FreeBSD 5.1, I have SIP soft phones which are
unable to register. They keep trying and then time out.
With the sip debug on in Asterisk nothing is logged.
Here is the trace from one of the phones (kphone):
(192.168.100.13 is kphone, 192.168.100.3 is Asterisk)
sipclient: sending: 21:47:45.454