search for: freqtable

Displaying 3 results from an estimated 3 matches for "freqtable".

Did you mean: freq_table
2012 May 01
1
Questions
...also wondering how to export it to excel and keep the same formatting (spaces between the different frequency tables)? Thank you! Lana > getwd() [1] "/Users/JoshandLana" > dpx <- read.table(file.choose(), header = T, sep = "\t") > #edit(dpx) > View(dpx) > freqTable <- table(dpx$ActorID,dpx$EmotionFaceTask.RESP,dpx$Emotion) > write.table(dpx,"clipboard",sep="\t",col.names=NA) Error in file(file, ifelse(append, "a", "w")) : 'mode' for the clipboard must be 'r' on Unix > write.table(dpx,"cl...
2009 May 05
4
Create Pie chart from .csv file
Hi all, I am looking to create a pie chart from a given column in a .csv file. My class variables are as follows: entry_type, uniquekey, types, title, url, abstract, journal, author, month, year, howpublished So say I want to export a pie chart that groups together all entries under 'types' e.g. 3 x statistics 2x education etc. Im looking to have a piechart represent this
2012 Apr 09
1
Panel.abline would not show beyond a certain slope value
...-4.847634 -1.349699 ; -3.377894 -1.498693 } # end mypanel4loglog myprepanel4loglog <- function(x, # x is the variable column in melted data, equals the Network's ages y, # y is the value column in melted data, the degrees ... # Rest of the arguments ) { FreqTable <- as.data.frame(table(y)) FreqsVector <- sort(FreqTable$Freq) Min <- FreqsVector[1] # first element - the lowest value frequency # print(c(Max2, length(y))) list(ylim = c(log(Min / length(y)), 0), xlim = c(0, log(max(y)))) # log(p(k)) is always -ve as p(...