Hi Loris, I have already tried options(max.print=999999) 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-tp4711227p4711264.html Sent from the R help mailing list archive at Nabble.com.
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 data. Jim Holtman Data Munger Guru What is the problem that you are trying to solve? Tell me what you want to do, not how you want to do it. On Wed, Aug 19, 2015 at 1:20 AM, Shivi82 <shivibhatia at ymail.com> wrote:> Hi Loris, > > I have already tried options(max.print=999999) 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-tp4711227p4711264.html > Sent from the R help mailing list archive at Nabble.com. > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
> I have already tried options(max.print=999999) 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 like> head(tail(d, 90000), 30)or> d[10000:100030, ]to print 30 lines at a time. ******************************************************************* This email and any attachments are confidential. Any use...{{dropped:8}}
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 rows which fulfil this condition is 10500 where console shows only 3300. I want to share the output i.e. 10500 rows to my business. So want to see the possible options to share the results with the business. R Markdown & R Sweave might help - please suggest. -- View this message in context: http://r.789695.n4.nabble.com/Output-In-R-tp4711227p4711335.html Sent from the R help mailing list archive at Nabble.com.