Note that there are some explanatory texts on larger screens.

plurals
  1. POHow to create a table by restructuring a MALLET output file?
    text
    copied!<p>I'm using <a href="http://mallet.cs.umass.edu/" rel="nofollow noreferrer">MALLET</a> for topic analysis which is outputting results in text files ("topics.txt") of several thousand rows and a hundred or so rows where each row consists of tab-separated variables like this:</p> <pre><code>Num1 text1 topic1 proportion1 topic2 proportion2 topic3 proportion3, etc. Num2 text2 topic1 proportion1 topic2 proportion2 topic3 proportion3, etc. Num3 text3 topic1 proportion1 topic2 proportion2 topic3 proportion3, etc. </code></pre> <p>Here's a snippet of the actual data:</p> <pre><code>&gt; dat[1:5,1:10] V1 V2 V3 V4 V5 V6 V7 V8 V9 V10 1 0 10.txt 27 0.4560785 23 0.3040853 20 0.1315621 21 0.03632624 2 1 1001.txt 20 0.2660085 12 0.2099153 8 0.1699586 13 0.16922928 3 2 1002.txt 16 0.3341721 2 0.1747023 10 0.1360454 12 0.07507119 4 3 1003.txt 12 0.5366148 8 0.2255179 18 0.1388561 0 0.01867091 5 4 1005.txt 16 0.2363206 0 0.2214441 24 0.1914769 7 0.17760521 </code></pre> <p>I'm trying to use <strong>R</strong> to convert this output into a data table where the topics are column headers and each topic contains the values of the variable 'proportion' directly to the right hand side of each variable 'topic', for each value of 'text'. Like this:</p> <pre><code> topic1 topic2 topic3 text1 proportion1 proportion2 proportion3 text2 proportion1 proportion2 proportion3 </code></pre> <p>or with the data snippet above, like so:</p> <pre><code> 0 2 7 8 10 12 13 16 18 20 21 23 24 27 10.txt 0 0 0 0 0 0 0 0 0 0.1315621 0.03632624 0.3040853 0 0.4560785 1001.txt 0 0 0 0.1699586 0 0.2099153 0.1692292 0 0 0.2660085 0 0 0 0 1002.txt 0 0.1747023 0 0 0.1360454 0.0750711 0 0.3341721 0 0 0 0 0 0 1003.txt 0.0186709 0 0 0.2255179 0 0.5366148 0 0 0.138856 0 0 0 0 0 1005.txt 0.2214441 0 0.1776052 0 0 0 0 0.2363206 0 0 0 0 0.1914769 0 </code></pre> <p>This is the <strong>R</strong> code I've got to do the job, sent from a friend, but it doesn't work for me (and I don't know enough about it to fix it myself):</p> <pre><code>########################################## dat&lt;-read.table("topics.txt", header=F, sep="\t") datnames&lt;-subset(dat, select=2) dat2&lt;-subset(dat, select=3:length(dat)) y &lt;- data.frame(topic=character(0),proportion=character(0),text=character(0)) for(i in seq(1, length(dat2), 2)){ z&lt;-i+1 x&lt;-dat2[,i:z] x&lt;-cbind(x, datnames) colnames(x)&lt;-c("topic","proportion", "text") y&lt;-rbind(y, x) } # Right at this step at the end of the block # I get this message that may indicate the problem: # Error in c(in c("topic", "proportion", "text") : unused argument(s) ("text") y[is.na(y)] &lt;- 0 xdat&lt;-xtabs(proportion ~ text+topic, data=y) write.table(xdat, file="topicMatrix.txt", sep="\t", eol = "\n", quote=TRUE, col.names=TRUE, row.names=TRUE) ########################################## </code></pre> <p>I'd be most grateful for any suggestions on how I can get this code working. My problem may be related to <a href="https://stackoverflow.com/questions/6584383/r-converting-dataframe-to-table">this one</a> and possibly <a href="https://stackoverflow.com/questions/7950304/reading-and-constructing-a-table-from-a-data-frame-with-multiple-columns-using-r">this one</a> also, but I don't yet have the skills to make immediate use of the answers to those questions. </p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload