Dear Ruth,<div><br></div><div>a follow-up question on using specific actors: is it possible to select a range of scores? so for example the scores 1 until 4? </div><div><br></div><div>Thanks for your help yet again!</div><div>
<br></div><div>Maarten <br><br><div class="gmail_quote">On Mon, Feb 15, 2010 at 12:59 PM, Ruth M. Ripley <span dir="ltr">&lt;<a href="mailto:ruth@stats.ox.ac.uk">ruth@stats.ox.ac.uk</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Dear Maarten,<br>
<br>
There are no special facilities: you would need to extract the subsets of<br>
the matrices yourself before creating the Siena network object. Using the<br>
command line, after reading in some data:<br>
<br>
friend.data.w1 &lt;- as.matrix(read.table(&quot;s50-network1.dat&quot;))<br>
friend.data.w2 &lt;- as.matrix(read.table(&quot;s50-network2.dat&quot;))<br>
drink &lt;- as.matrix(read.table(&quot;s50-alcohol.dat&quot;))<br>
smoke &lt;- as.matrix(read.table(&quot;s50-smoke.dat&quot;))<br>
<br>
To select the actors with the first column of smoke equal to 1, say,<br>
<br>
use &lt;- smoke[, 1] == 1<br>
<br>
friendship &lt;- sienaNet(array(c(friend.data.w1[use, use],<br>
       friend.data.w2[use, use]), dim=c(38, 38, 2)))<br>
<br>
alcohol &lt;- sienaNet(drink[use, ], type=&quot;behavior&quot;)<br>
<br>
To do this via the gui, you would need to do the subsetting outside R.<br>
<br>
Regards,<br>
<br>
Ruth<br>
<br>
PS I have copied this message to the rsiena-help mailing list. I see two<br>
benefits to using the lists: others might find the information useful too,<br>
and if I am busy someone else might be able to help!<br>
<font color="#888888">--<br>
Ruth M. Ripley,                         <a href="mailto:Email%3Aruth@stats.ox.ac.uk">Email:ruth@stats.ox.ac.uk</a><br>
Dept. of Statistics,                    <a href="http://www.stats.ox.ac.uk/~ruth/" target="_blank">http://www.stats.ox.ac.uk/~ruth/</a><br>
University of Oxford,                   Tel:   01865 282851<br>
1 South Parks Road, Oxford OX1 3TG, UK  Fax:   01865 272595<br>
</font><div><div></div><div class="h5"><br>
<br>
On Mon, 15 Feb 2010, Maarten Van Zalk wrote:<br>
<br>
&gt; Dear Ruth,<br>
&gt;<br>
&gt; Is it possible in RSiena to select certain actors for the analysis? So<br>
&gt; if you have a variable X you want to use to select individuals (for<br>
&gt; example, all individuals with a score of 1), Can you select only these<br>
&gt; individuals?<br>
&gt;<br>
&gt; Thanks for your help!<br>
&gt;<br>
&gt; Kind regards,<br>
&gt;<br>
&gt; Maarten Van Zalk<br>
&gt;<br>
<br>
</div></div></blockquote></div><br></div>