search for: benchmark_tot

Displaying 2 results from an estimated 2 matches for "benchmark_tot".

Did you mean: benchmark_total
2009 Dec 15
1
Supressing Scientific Notation
...searches, the options(scipen=999) should remove scientific notation, but it seems not too. Does this option work with quantcut function? Is there any other option that can be used? I am using verison 2.10.0. library(gtools) library(gdata) options(scipen=999) > parad<-quantcut(benchmarkPara$Benchmark_Total, q=seq(0,1,by=0.1), na.rm=TRUE) > table(parad) parad [2.29e+05,2.7e+05] (2.7e+05,3.69e+05] (3.69e+05,3.99e+05] (3.99e+05,4.64e+05] (4.64e+05,5.12e+05] (5.12e+05,6.74e+05] 3 2 2 2 3 2 (...
2010 Jan 07
1
Help formating data to display commas
...a with commas, they only seem to add decimals. Is there a format that will display commas without me reverting to the labels statement. This is an ongoing process where the values are updated, so using the labels statement would be too much to manage. Benchparaq<-levels(quantcut(benchmarkPara$Benchmark_Total, q=seq(0,1,by=0.25), na.rm=TRUE)) > #,labels=c("$267,000-<$436,000","$436,000-<$559,000","$559,000-<$836,000","$836,000-<$1,590,000")) > lower <-as.numeric(sub("\\((.+),.*", "\\1", Benchparaq)) War...