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
> 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
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
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
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,
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
> 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
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
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
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
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
?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
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:
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
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)
15 matches
Mail list logo