<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general">
    <title>gmane.comp.lang.r.general</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295055"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295054"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295053"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295052"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295051"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295050"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295049"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295048"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295047"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295046"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295045"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295044"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295043"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295042"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295041"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295040"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295039"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295038"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295037"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.general/295036"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295055">
    <title>Trouble with SASxport in R.3.0. under 32-bit and 64-bit Windows (both 7 and Vista)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295055</link>
    <description>&lt;pre&gt;Dear Rxperts,..

I am using R 3.0 in both 32- and 64-bit Windows 7 environment and have
trouble using SASxport. They seem to work fine under R.2.15.3.

 ....The error/warning messages are provided below...

Following are the messages obtained when trying to read s SAS transport
file (.xpt)

library(SASxport)
Warning message:
package SASxport was built under R version 3.0.1

read.xport(fname)
Error in `label&amp;lt;-.default`(`*tmp*`, value = c("", "", "", "", "", "",  :
  value must be character vector of length 1

Any suggestions/assistance is highly welcome!

Thanks so much..
Santosh

[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Santosh</dc:creator>
    <dc:date>2013-06-20T00:16:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295054">
    <title>Returning name of dataframe?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295054</link>
    <description>&lt;pre&gt;I am writing a function and I would like to return the name of a data frame
in a paste call, but I can't figure out how to just get the name. The names
of the data frames used, won't be the same each time.  I have to be
overlooking the obvious.

#For example:

a&amp;lt;-replicate(5, rnorm(20))
b&amp;lt;-replicate(5, rnorm(20))

xyz&amp;lt;-function(x,y){
  z&amp;lt;-x+y
  print(paste("the sum of", x, "and", y,"is", sep=" "))
  z 
}

xyz(a,b)

#That function should return:


Not surprisingly, it returns all the data in the data frame.

Thanks,
Thomas

&lt;/pre&gt;</description>
    <dc:creator>Thomas Parr</dc:creator>
    <dc:date>2013-06-20T00:16:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295053">
    <title>Re: how to get growth rate of a (time series) data?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295053</link>
    <description>&lt;pre&gt;     &amp;lt;SNIP&amp;gt;

No, "clearly" ( :-) ) it doesn't.  It gives

(Y[2] - Y[1])/Y[2], (Y[3]-Y[2])/Y[3], .... when what is wanted is

(Y[2] - Y[1])/Y[1], (Y[3]-Y[2])/Y[2], ....

The OP needs to do:

     with(test,diff(Y)/Y[-length(Y)])

This is yet another illustration of the rule that if there is a 50-50 
chance of
getting things the wrong way around, then there is actually a probability
of one of getting things the wrong way around.

     cheers,

         Rolf

&lt;/pre&gt;</description>
    <dc:creator>Rolf Turner</dc:creator>
    <dc:date>2013-06-19T22:16:24</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295052">
    <title>Re: GLMM predictor variables</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295052</link>
    <description>&lt;pre&gt;Wrong list -- Your question is not about R.

Post on a statistics list like stats.stackexchange.com
&lt;/pre&gt;</description>
    <dc:creator>Bert Gunter</dc:creator>
    <dc:date>2013-06-19T21:49:10</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295051">
    <title>Re: knitr: side-by-side figures in R markdown</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295051</link>
    <description>&lt;pre&gt;You need to remove out.extra='style="display:block; margin: auto"'. In
CSS, display:block; means this element stands in its own line, and no
other elements can sit by its side. This is applied to individual
images, so the two images will not be arranged side by side.

But you will lose the center alignment without display:block. The
difficulty comes from the fact that Markdown images are not put into
div containers as in HTML.

Regards,
Yihui
--
Yihui Xie &amp;lt;xieyihui&amp;lt; at &amp;gt;gmail.com&amp;gt;
Phone: 206-667-4385 Web: http://yihui.name
Fred Hutchinson Cancer Research Center, Seattle


On Wed, Jun 19, 2013 at 6:23 AM, Michael Friendly &amp;lt;friendly&amp;lt; at &amp;gt;yorku.ca&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Yihui Xie</dc:creator>
    <dc:date>2013-06-19T21:31:41</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295050">
    <title>Re: help with text patterns in strings</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295050</link>
    <description>&lt;pre&gt;HI Burnette,
As this is continuation of the earlier thread, you could post it on the same thread by cc: to rhelp.


Try this:
res1&amp;lt;-sapply(vec3,function(x) length(vec2New[grep(x,vec2New)]) )
dat1&amp;lt;-data.frame(res1,Name=names(vec3))

 dat1$Name&amp;lt;-factor(dat1$Name,levels=c("early","mid","late","wknd"))
 with(dat1,tapply(res1,list(Name),FUN=sum))
#early   mid  late  wknd 
 #   0     1     4     6 

#or
 sapply(split(res1,names(vec3)),sum)
#early  late   mid  wknd 
 #   0     4     1     6 
A.K.

----- Original Message -----
From: "Crombie, Burnette N" &amp;lt;bcrombie&amp;lt; at &amp;gt;utk.edu&amp;gt;
To: arun &amp;lt;smartpink111&amp;lt; at &amp;gt;yahoo.com&amp;gt;
Cc: 
Sent: Wednesday, June 19, 2013 3:55 PM
Subject: RE: [R] help with text patterns in strings

Arun, let me know if I should post this email separately, but it involves the script from our previous conversation.  I've been messing around as I think of potential scenarios with my data and am unclear how I can recount vec3 after assigning range names to the different days of&lt;/pre&gt;</description>
    <dc:creator>arun</dc:creator>
    <dc:date>2013-06-19T20:46:27</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295049">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295049</link>
    <description>&lt;pre&gt;Hi,
May bet this also helps:
set.seed(12345)
x &amp;lt;- c(1:30)
x1 &amp;lt;- sample(x, 15, replace = TRUE)
x2 &amp;lt;- sample(x, 15, replace = TRUE)
x3 &amp;lt;- sample(x, 15, replace = TRUE)
x4 &amp;lt;- sample(x, 15, replace = TRUE)

indx&amp;lt;-1+2*(x1==1)+4*(x2==1)+8*(x3==1)+16*(x4==1)
 as.numeric(indx!=1)
#[1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


#Speed comparisons 
set.seed(1235)
x &amp;lt;- c(1:1e7)
x1 &amp;lt;- sample(x, 1e7, replace = TRUE)
x2 &amp;lt;- sample(x, 1e7, replace = TRUE)
x3 &amp;lt;- sample(x, 1e7, replace = TRUE)
x4 &amp;lt;- sample(x, 1e7, replace = TRUE)

system.time(res1 &amp;lt;-ifelse(x1 == 1 | x2 == 1 | x3 == 1 | x4 == 1, 1, 0))
 # user  system elapsed 
 # 3.740   0.256   4.003 

system.time(res2&amp;lt;-as.numeric(x1 == 1 | x2 == 1 | x3 == 1 | x4 == 1))
# user  system elapsed 
#  0.996   0.076   1.077 

system.time({indx&amp;lt;-1+2*(x1==1)+4*(x2==1)+8*(x3==1)+16*(x4==1)
 res3&amp;lt;-as.numeric(indx!=1)})
# user  system elapsed 
#  0.596   0.240   0.840 

system.time(res4&amp;lt;-rowSums(cbind(x1, x2, x3, x4) == 1))
# user  system elapsed 
#  0.732   0.192   0.92&lt;/pre&gt;</description>
    <dc:creator>arun</dc:creator>
    <dc:date>2013-06-19T19:14:57</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295048">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295048</link>
    <description>&lt;pre&gt;
On Jun 19, 2013, at 1:23 PM, Marc Schwartz &amp;lt;marc_schwartz&amp;lt; at &amp;gt;me.com&amp;gt; wrote:



Actually, correction. That works in the case where only one of the values in the row is a 1, which happened to fit the example data. If there is a chance that more than one value in a row may be a 1, it returns a value equal to the number of 1's found.

Thus, a more generic approach, I believe, would be:

[1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


Regards,

Marc

&lt;/pre&gt;</description>
    <dc:creator>Marc Schwartz</dc:creator>
    <dc:date>2013-06-19T18:47:38</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295047">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295047</link>
    <description>&lt;pre&gt;
On Jun 19, 2013, at 1:23 PM, Marc Schwartz &amp;lt;marc_schwartz&amp;lt; at &amp;gt;me.com&amp;gt; wrote:



Actually, correction. That works in the case where only one of the values in the row is a 1, which happened to fit the example data. If there is a chance that more than one value in a row may be a 1, it returns a value equal to the number of 1's found.

Thus, a more generic approach, I believe, would be:

[1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


Regards,

Marc

&lt;/pre&gt;</description>
    <dc:creator>Marc Schwartz</dc:creator>
    <dc:date>2013-06-19T18:47:07</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295046">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295046</link>
    <description>&lt;pre&gt;
On Jun 19, 2013, at 8:24 AM, Brian Perron &amp;lt;beperron&amp;lt; at &amp;gt;umich.edu&amp;gt; wrote:




If each of the vectors will be of the same length, create a matrix that contains each one as a column:

set.seed(12345)
x &amp;lt;- c(1:30)
x1 &amp;lt;- sample(x, 15, replace = TRUE)
x2 &amp;lt;- sample(x, 15, replace = TRUE)
x3 &amp;lt;- sample(x, 15, replace = TRUE)
x4 &amp;lt;- sample(x, 15, replace = TRUE)

     x1 x2 x3 x4
[1,] 22 14 24 10
[2,] 27 12  1  2
[3,] 23 13  6  2
[4,] 27  6 21  2
[5,] 14 29 12 19
[6,]  5 14 11 29
[7,] 10 10 27 25
[8,] 16 29 28 10
[9,] 22 22 19  7
[10,] 30 20  5 22
[11,]  2 12 24 15
[12,]  5 21 13 22
[13,] 23 17 28  3
[14,]  1  7 24 14
[15,] 12 15  8  8


Then you can use:

[1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


which gets you the same result as:

[1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


Regards,

Marc Schwartz

&lt;/pre&gt;</description>
    <dc:creator>Marc Schwartz</dc:creator>
    <dc:date>2013-06-19T18:23:30</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295045">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295045</link>
    <description>&lt;pre&gt;
On Jun 19, 2013, at 8:24 AM, Brian Perron &amp;lt;beperron&amp;lt; at &amp;gt;umich.edu&amp;gt; wrote:




If each of the vectors will be of the same length, create a matrix that contains each one as a column:

set.seed(12345)
x &amp;lt;- c(1:30)
x1 &amp;lt;- sample(x, 15, replace = TRUE)
x2 &amp;lt;- sample(x, 15, replace = TRUE)
x3 &amp;lt;- sample(x, 15, replace = TRUE)
x4 &amp;lt;- sample(x, 15, replace = TRUE)

      x1 x2 x3 x4
 [1,] 22 14 24 10
 [2,] 27 12  1  2
 [3,] 23 13  6  2
 [4,] 27  6 21  2
 [5,] 14 29 12 19
 [6,]  5 14 11 29
 [7,] 10 10 27 25
 [8,] 16 29 28 10
 [9,] 22 22 19  7
[10,] 30 20  5 22
[11,]  2 12 24 15
[12,]  5 21 13 22
[13,] 23 17 28  3
[14,]  1  7 24 14
[15,] 12 15  8  8


Then you can use:

 [1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


which gets you the same result as:

 [1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0


Regards,

Marc Schwartz

&lt;/pre&gt;</description>
    <dc:creator>Marc Schwartz</dc:creator>
    <dc:date>2013-06-19T18:21:53</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295044">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295044</link>
    <description>&lt;pre&gt;

Hi Brian,

put all your x into a matrix and use apply:

  X &amp;lt;- cbind(x1, x2, x3, x4)
  apply(X, 1, function(x) if (any(x == 1L)) 1 else 0)

  ## [1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0

or, since TRUE and FALSE evaluate to 1 and 0 when coerced to numeric:

  as.integer(apply(X, 1, function(x) any(x == 1L)))

  ## [1] 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0



Regards,
        Enrico       

&lt;/pre&gt;</description>
    <dc:creator>Enrico Schumann</dc:creator>
    <dc:date>2013-06-19T18:20:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295043">
    <title>Re: nls singular gradient ..as always..</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295043</link>
    <description>&lt;pre&gt;It's hard to say without seeing the data.  It could be the data, it could
be the starting values, it could be the model choice.

Jean


On Wed, Jun 19, 2013 at 10:45 AM, pakoun &amp;lt;pkount&amp;lt; at &amp;gt;bgc-jena.mpg.de&amp;gt; wrote:


[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Adams, Jean</dc:creator>
    <dc:date>2013-06-19T18:17:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295042">
    <title>Re: alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295042</link>
    <description>&lt;pre&gt;as.numeric(x1 == 1 | x2 == 1 | x3 == 1 | x4 == 1)

On Wed, Jun 19, 2013 at 9:24 AM, Brian Perron &amp;lt;beperron&amp;lt; at &amp;gt;umich.edu&amp;gt; wrote:


[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Richard M. Heiberger</dc:creator>
    <dc:date>2013-06-19T18:12:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295041">
    <title>Re: knitr without R studio</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295041</link>
    <description>&lt;pre&gt;knitr is not tied to RStudio, and I believe this StackOverflow post
can answer your question: http://stackoverflow.com/q/10646665/559676

Regards,
Yihui
--
Yihui Xie &amp;lt;xieyihui&amp;lt; at &amp;gt;gmail.com&amp;gt;
Phone: 206-667-4385 Web: http://yihui.name
Fred Hutchinson Cancer Research Center, Seattle


On Wed, Jun 19, 2013 at 4:42 AM, Ista Zahn &amp;lt;istazahn&amp;lt; at &amp;gt;gmail.com&amp;gt; wrote:

&lt;/pre&gt;</description>
    <dc:creator>Yihui Xie</dc:creator>
    <dc:date>2013-06-19T18:07:52</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295040">
    <title>Re: nls singular gradient ..as always..</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295040</link>
    <description>&lt;pre&gt;Yes it should look like that... what i am doing is a variogram fit . But the
data of course are spread almost all over.. I would guess might be problem
with the data only? 



--
View this message in context: http://r.789695.n4.nabble.com/nls-singular-gradient-as-always-tp4669859p4669898.html
Sent from the R help mailing list archive at Nabble.com.

&lt;/pre&gt;</description>
    <dc:creator>pakoun</dc:creator>
    <dc:date>2013-06-19T15:45:29</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295039">
    <title>GLMM predictor variables</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295039</link>
    <description>&lt;pre&gt;Hi all,

I have a quick question regarding predictor variables in a GLMM analysis, a
subject I am new to.

I am running a study investigating multi-modal communication in primates.
specifically, primate gestures that accompany vocalizations.

I have measured the call rate, call duration and peak frequency (response
variables)  for 200 calls (100 accompanied by gestures, 100 without
gestures).

I would like to use the following predictor variables: 1) Call type, 2)
Presence of gesture, 3) Gesture type

Is it possible to use  GESTURE TYPE here as a predictor variable? I am not
sure if it's appropriate since this will only be for 50% of the overall
 the data (where calls are accompanied by gestures).

Any advice would be greatly appreciated.

Bruce Rawlings

[[alternative HTML version deleted]]

&lt;/pre&gt;</description>
    <dc:creator>Bruce Rawlings</dc:creator>
    <dc:date>2013-06-19T15:44:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295038">
    <title>alternative to ifelse</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295038</link>
    <description>&lt;pre&gt;Greetings:

I am looking for a way to avoid using the ifelse function for
constructing a new variable.  More specifically, assume I have a set
of variables with scores ranging from 1 to 30.

set.seed(12345)
x &amp;lt;- c(1:30)
x1 &amp;lt;- sample(x, 15, replace = TRUE)
x2 &amp;lt;- sample(x, 15, replace = TRUE)
x3 &amp;lt;- sample(x, 15, replace = TRUE)
x4 &amp;lt;- sample(x, 15, replace = TRUE)

I want to construct a dichotomous variable that tests whether any of
the variables contains the value 1.

newVar &amp;lt;-ifelse(x1 == 1 | x2 == 1 | x3 == 1 | x4 == 1, 1, 0)

I want to avoid the ifelse function because I have a number of large
variable lists that will require new variables to be created.  I'm
sure there is a simple way to do this, but I haven't had any luck with
my search!

Thanks in advance.

Brian

&lt;/pre&gt;</description>
    <dc:creator>Brian Perron</dc:creator>
    <dc:date>2013-06-19T13:24:50</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295037">
    <title>sum epsilon-regression only works with certain epsilon values</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295037</link>
    <description>&lt;pre&gt;Hello,

I am trying to run the following piece of command:

svm.linear&amp;lt;-svm(price~., subset = generation &amp;gt;0, data = trainset, cost = C, epsilon = 1, type = 'eps-regression')

If epsilon = 1, the program runs fine. For larger values, e.g. 10, I get the following error:

Error in predict.svm(ret, xhold, decision.values = TRUE) : 
  Model is empty!
Calls: RegressionAnalyses ... svm.formula -&amp;gt; svm.default -&amp;gt; na.action -&amp;gt; predict -&amp;gt; predict.svm
Execution halted

My impression is that sum.linear is returning empty. I initially believed that it could be coursed by an infeasible solution, but I think now that this may not be the case as we allow 
for slacks in both constraints, i.e. xi. Can someone help me here? 

I am a little stuck. 

(btw, C=300)

&lt;/pre&gt;</description>
    <dc:creator>Joao Quariguasi</dc:creator>
    <dc:date>2013-06-19T13:17:32</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295036">
    <title>Re: Vectorize a series of  Matrix Multiplications</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295036</link>
    <description>&lt;pre&gt;
On Jun 17, 2013, at 8:48 AM, G Vishwanath wrote:


I'm pretty sure you can drop the as.matrix() calls since ToyArray[,,1,i] and ba[,,2,i] will be matrices. Look at the documentation for  ?"[" and pay attention to the "drop" argument (or look at ?drop since it is an R function). That should provide some increase in speed.

     [,1] [,2]
[1,]    1    1
[2,]    1    1



I don't know. I would guess "not" since none of the help pages for array or ?matmult or the ones linking from it suggested that "%*%" should operate on arrays. (I would have tested my half-baked ideas if you had provided a reproducible example of 'ba'.)



This question is unclear to me. Sorry. It's lacking in details and example. (And I apologize if there is a duplicate of this that explains why smarter people than I have not already addressed it.)

&lt;/pre&gt;</description>
    <dc:creator>David Winsemius</dc:creator>
    <dc:date>2013-06-19T17:57:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.general/295035">
    <title>Re: Ryacas loads but yacas has an error</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.general/295035</link>
    <description>&lt;pre&gt;
I am running Ryacas using R 3.0.1 on Windows 8 so its unlikely it does
not run on Windows 7.  Read the troubleshooting section on the home
page.  http://ryacas.googlecode.com


--
Statistics &amp;amp; Software Consulting
GKX Group, GKX Associates Inc.
tel: 1-877-GKX-GROUP
email: ggrothendieck at gmail.com

&lt;/pre&gt;</description>
    <dc:creator>Gabor Grothendieck</dc:creator>
    <dc:date>2013-06-19T16:57:26</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.r.general">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.r.general</link>
  </textinput>
</rdf:RDF>
