search for: 2columns

Displaying 4 results from an estimated 4 matches for "2columns".

Did you mean: columns
2007 Mar 09
2
rattle()->RData->Explore->GGobi->>libggobi-0.dll--Error
Hello, I am using R-2.4.1 with Rattle() i load Rdata (ttData) which has 2columns and 66 rows When i execute Explore under GGobi for visualization i am facing the problem, ---- libggobi-0.dll not found ---libggobi-0.dll was not found.... reinstalling the application may fix the problem i try install.packages("rggobi") its been installed from CRAN however when i use...
2006 Jun 01
8
[Pdf::Witer]
Is anyone using Pdf::Writer? I don know how to insert html tags in a pdf using Pdf::Writer, except <b> and <i> I think an idea is with Pdf::TechBook but i hadn''t seen any example till now. -- Cheers, ioana k&a http://boulangerie.wordpress.com/ -------------- next part -------------- An HTML attachment was scrubbed... URL:
2013 Mar 07
2
Copying a dataframe
...or message I am getting: Error in `[[<-.data.frame`(`*tmp*`, 1, value = c(4626L, 1L)) : replacement has 2 rows, data has 1 I have tried printing out the dimensions of tab and mat separately to see if they are the same, but tab is 4626 rows, 21 columns (which is correct), while mat says 1row and 2columns. Would be grateful if you could tell me where I am going wrong? Is there are better function to transfer/copy values? [[alternative HTML version deleted]]
2009 Sep 21
5
More elegant way of excluding rows with equal values in any 2 columns?
Hello, dear R-ers! I built a data frame "grid" (below) with 4 columns. I want to exclude all rows that have equal values in ANY 2 columns. Here is how I am doing it: index<-expand.grid(1:4,1:4,1:4,1:4) dim(index) # Deleting rows that have identical values in any two columns (1 line of code):