Displaying 20 results from an estimated 2000 matches similar to: "SMACOF joint configuration plot with bread data?"
2009 Jun 08
0
SMACOF joint configuration plot with bread data? (Michael Kubovy)
Hi Michael,
with res.uc$conf you'll get the single configurations for each rater.
You can use these to produce the plot you want to have.
Best,
Patrick
r-help-request at r-project.org wrote:
> Send R-help mailing list submissions to
> r-help at r-project.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://stat.ethz.ch/mailman/listinfo/r-help
>
2013 Mar 08
0
analytical strategy for MDS/ smacof /dissimilarity matrix
Dear all,
My data includes almost three thousand people who rank ten categories into
three variables. The simple example below is almost same except I have many
missing values.
x <-
cbind(
sample( LETTERS[1:10] , 3000 , replace = TRUE ) ,
sample( LETTERS[1:10] , 3000 , replace = TRUE ) ,
sample( LETTERS[1:10] , 3000 , replace = TRUE )
)
I try to figure
2008 Jun 05
0
smacof package for multidimensional scaling
Dear UserR's,
The smacof package (see also our PsychoR repository on
http://r-forge.r-project.org/projects/psychor/) is uploaded on CRAN.
This package provides the following approaches of multidimensional
scaling (MDS) based on stress minimization by means of majorization
(smacof): - Simple smacof on symmetric dissimilarity matrices
- smacof for rectangular matrices (unfolding models)
-
2006 Dec 10
1
Use of bread() function
Hello,
I am trying to extract an estimator for the bread of the sandwich
function. I used bread(fitted model) however it seems that I have missed
something as an error message "no applicable method for "bread" appears.
My fitted model is a Spatial simultaneous autoregressive error
model.(errorsarlm in spdep package)
Can anyone please tell me what I might be doing wrong?
Your
2010 Dec 07
0
R programing help-newton iterations for the square root
From: jypuppy36@hotmail.com
To: r-help-bounces@r-project.org
Subject: R programing help-newton iterations for the square root
Date: Tue, 7 Dec 2010 12:00:01 -0800
NEWTON ITERATIONS FOR THE SQUARE ROOT
Newton iterations to find the root of a real valued function f , i.e. a number x for which f (x) = 0, are of the form
Example. To find the square root of a positive number y we can use
2010 Nov 09
2
Help with Iterator
Dear Experts,
The following is my "Iterator". When I try to write a new function with
itel, I got error.
This is what I have:
> supDist<-function(x,y) return(max(abs(x-y)))
>
> myIterator <- function(xinit,f,data=NULL,eps=1e-6,itmax=5,verbose=FALSE) {
+ xold<-xinit
+ itel<-0
+ repeat {
+ xnew<-f(xold,data)
+ if (verbose) {
+ cat(
+
2014 Aug 20
2
[LLVMdev] ARMv4T Copy Lowering
Jim/Tim/Renato,
A few days ago (has it been weeks now?) we discussed a codegen problem on
armv4t having to do with lo->lo register copies. I'd like to start that
discussion again, this time with a patch.
A brief summary of the problem for folks who didn't catch the discussion
earlier, and those like me who forget what they ate for breakfast: ;]
The mov instruction on armv4t
2007 Apr 18
0
northwesterly French bread
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 15327 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070417/d7e48364/attachment.gif
2007 Apr 18
0
northwesterly French bread
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/gif
Size: 15327 bytes
Desc: not available
Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20070417/d7e48364/attachment.gif
2013 Jan 21
2
how to bread while loop reading from connection with read.csv
Hello,
I'm trying to read a file rows at a time, so as to not read the entire file into memory.? When reading the "connections" and "readLines" help, and "R help archive," it seems this should be possible with read.csv and a file connection, making use of the "nrows" argument, and checking where the "nrow()" of the new batch is zero rows.
2010 Jun 26
1
All a column to a data frame with a specific condition
Hi, folks,
Please first look at the codes:
plan_a=c('apple','orange','apple','apple','pear','bread')
plan_b=c('bread','bread','orange','bread','bread','yogurt')
value=1:6
data=data.frame(plan_a,plan_b,value)
library(plyr)
library(reshape)
mm=melt(data, id=c('plan_a','plan_b'))
2002 Oct 04
0
ITIL in Major Corporations - Has it worked? BREAKFAST SEMINAR - Tue 22/10/02
ITIL in Major Corporations - Has it worked?
Speaker: Gerard Blokdijk, Managing Director The Art of Service
When: Tuesday 22 October - 7.30am to 9.30am
Venue: Regus Citigroup Centre, 2 Park Street, Sydney
Cost: $45 including GST
Features: Breakfast, Networking. Already over 30 participants - CIO's / (IT) Managers.
Register: http://www.artofservicedirect.com click on Enrol, Sydney Events
ALSO:
2010 Sep 01
1
transaction object - how to coerce this data
Hi,
I am wanting to look at frequent item sets using the arules package. I need
to transform my data into a "transactions" object. The data I read in from a
file has 2 columns, an ID and an item. How do I convert data like this into
a transactions object?
I've tried
class? transactions
but it only confuses me.
My data is like this....
basketID item
1 bread
1 cheese
1 milk
2
2012 Mar 18
2
word frequency count
Hi:
I have a dataframe containing comma seperated group of words such as
milk,bread
bread,butter
beer,diaper
beer,diaper
milk,bread
beer,diaper
I want to output the frequency of occurrence of comma separated words
for each row and collapse duplicate rows, to make the output as shown
in the following dataframe:
milk,bread 2
bread,butter 1
beer,diaper 3
milk,bread 2
Thanks for help!
deb
2010 Jan 06
1
clues package for cluster selection
Y have only continuos quantitative data and when I trie the function I get next message
> res<-clues(C,quiet=TRUE)
Error en ChooseK_sil(y, y2 = y, n0, alpha, eps, itmax, second, K2.vec, :
el objeto (list) no puede ser coercionado a 'double'
Last line would be the object could (list) not be coerced to ´double´
What can be the problem?
Yhanks
2007 Oct 30
1
Some matrix and sandwich questions
Dear R-help,
I have a four-part question about regression, matrices, and sandwich package.
1) In the sandwich package, I would like to better understand the
meat() function.
>From the bread() documentation, for a simple OLS regression, bread() returns
(1/n * X'X)^(-1)
That is, for a simple regression (per the documentation on bread()):
MyLM <- lm(y ~ x)
bread(MyLM)
2012 Sep 23
1
ruby koans don't understand the principle sandwhich code
hello,
Im still working on ruby koans.
Now I have to do some sandwhich code.
The exercise looks like this :
require File.expand_path(File.dirname(__FILE__) + ''/edgecase'')
class AboutSandwichCode < EdgeCase::Koan
def count_lines(file_name)
file = open(file_name)
count = 0
while line = file.gets
count += 1
end
count
ensure
file.close if
2008 Jul 04
4
Re ad in a file - produce independent vectors
Is there a way of reading in a file in a way that each line becomes a vector:
for example:
meals.txt
breakfast bacon eggs sausage
lunch sandwich apple marsbar crisps
dinner chicken rice custard pie
I want to read in this file and end up with 3 different vectors, one called
breakfast which contains "bacon", "eggs", sausage" One called
2006 Nov 01
4
extract values from a vector
Hello,
I'm looking for a solution for the following problem:
I have two vectors
V1 <- c("apple","honey","milk","bread","butter")
V2 <- c("bread","milk")
now, I would like to know for each element in V1 if it's equal to one of
the elements in V2
I could do:
which(V1 == V2[1] | V1 == V2[2])
but what if I
2010 Aug 29
0
match default verb
The default verb for match is :any. This means for:
match ''dog/bark(/:num)'' => ''dogs#bark'' # get 3 barks
match ''dog/eat'' => ''dogs#eat'' # post breakfast
someone could post on dog/bark with :louder or get on dog/eat
with :breakfast. This is annoying and messy, and definitely not
RESTful.
In moving to Rails 3,