Displaying 1 result from an estimated 1 matches for "irisdf".
Did you mean:
iris
2017 Oct 24
0
Creating a data table (frame?) from a SQL Statement?
...han I to help you with. I for one find it hard to understand why read.table is successfully figuring out how to make sense of the presumably-valid data frame that dbGetQuery is returning. That is, you really don't need to send everything through read.table in order to make use of it. Maybe try
irisDF <- dbGetQuery(conn, "select * from iris")
str( irisDF )
--
Sent from my phone. Please excuse my brevity.
On October 24, 2017 10:11:28 AM PDT, Morkus <morkus at protonmail.com> wrote:
>Jeff,
>
>Excellent points, thank you!
>
>Yes, I have all the required package...