Re: [R] Output In R

2015-08-22 Thread John Kane
nd=== John Kane Kingston ON Canada > -Original Message- > From: jrkrid...@inbox.com > Sent: Sat, 22 Aug 2015 05:49:32 -0800 > To: shivibha...@ymail.com, r-help@r-project.org > Subject: Re: [R] Output In R > > We are talking at cross-purposes here bec

Re: [R] Output In R

2015-08-22 Thread Marc Schwartz
> dat1 <- data.frame(matrix( rnorm(100), ncol = 5)) > dat1.table <- xtable(dat1) > print(dat1.table, > include.rownames=FALSE, > booktabs = TRUE) > @ > > \end{document} > > End Latex file > > John Kane > Kingston

Re: [R] Output In R

2015-08-22 Thread John Kane
clude.rownames=FALSE, booktabs = TRUE) @ \end{document} End Latex file John Kane Kingston ON Canada > -Original Message- > From: shivibha...@ymail.com > Sent: Fri, 21 Aug 2015 12:26:50 -0700 (PDT) > To: r-help@r-project.org > Subject: Re: [R

Re: [R] Output In R

2015-08-21 Thread Shivi82
Thanks Jeff, this is helpful. The reason i am curious to know this is because I have worked for a long duration in SAS where in it gives us the flexibility to create a data set of our analysis and then we can easily detail out the same to the end user. In R seems like View or Sweave or Shiny are

Re: [R] Output In R

2015-08-21 Thread Jeff Newmiller
You really should not be using the console as a way to transfer large amounts of data. CSV files are much better, because sane people don't spend their time looking through thousands of rows of data. You should be giving the data to users in a form where they can filter it down for their needs,

Re: [R] Output In R

2015-08-21 Thread Shivi82
Hi Jim, Please see the sample code: ak<-read.csv("June.csv", header = TRUE) ak%>%select(sfxcode,mod,chargedweight)%>%filter(mod=='AIR') what i am trying to find is selecting the required var and then selecting only AIR as a mode of transportation from mod. I am getting the output but the total ro

Re: [R] Output In R

2015-08-20 Thread S Ellison
> I have already tried options(max.print=99) but does not show the desired > result. > As posted above it want to share the outcome with the business owner where > there could be multiple entries. Then just print the multiple entries. See ?duplicated for finding them Otherwise, use things lik

Re: [R] Output In R

2015-08-19 Thread jim holtman
At least provide a sample of the data and then the desired output. All we get from your email is that it "does not show the desired result" and we are at a lost to understand what that is. I know it was suggested that you write it out as a CSV file and then you can use EXCEL to page through the d

Re: [R] Output In R

2015-08-19 Thread Shivi82
Hi Loris, I have already tried options(max.print=99) but does not show the desired result. As posted above it want to share the outcome with the business owner where there could be multiple entries. -- View this message in context: http://r.789695.n4.nabble.com/Output-In-R-tp4711227p47

Re: [R] Output In R

2015-08-19 Thread Shivi82
HI Boris, The reason i want to see or show 3 million rows in console is that i need to present it to a business user. So here my end objective is to present the final output to the business user. So lets say when i write a code: select(june,waybill:type,contains("sfxcode")) so here there could b

Re: [R] Output In R

2015-08-18 Thread Greg Snow
I would suggest that instead of trying to view all the results in the console that you save the result into a object then use the View (note the capitol V) function to be able to scroll through the results. The head and tail functions have already been mentioned and I second their use for a quick

Re: [R] Output In R

2015-08-18 Thread Scott Tetrick
?write.csv and look at with the editor of choice. On Tue, Aug 18, 2015 at 6:41 AM, Shivi82 wrote: > Hello All, > > As i am a newbie in R so most of you would have seen this question zillion > times. I searched for the answer on this forum as well on other various > forums however could not fi

Re: [R] Output In R

2015-08-18 Thread Loris Bennett
Shivi82 writes: > Hello All, > > As i am a newbie in R so most of you would have seen this question zillion > times. I searched for the answer on this forum as well on other various > forums however could not find the answer i am looking for. > > I am dplyr package and used a very basic code:

Re: [R] Output In R

2015-08-18 Thread Boris Steipe
That's a very odd request: surely you would not want to visually inspect 3 million rows in the console? Typically one would assign the (large) results of a function to a variable for further processing. If you need to inspect the beginning and end of your dataset, use head() and tail(). Try ge

[R] Output In R

2015-08-18 Thread Shivi82
Hello All, As i am a newbie in R so most of you would have seen this question zillion times. I searched for the answer on this forum as well on other various forums however could not find the answer i am looking for. I am dplyr package and used a very basic code: select(june,city,state,mod)