Code Monkey home page Code Monkey logo

Comments (7)

DyfanJones avatar DyfanJones commented on June 11, 2024

Currently no, it was an previous feature request so it was added, however I should of added a method to make it quiet. Happy to add it in if you like :)

from noctua.

vhpietil avatar vhpietil commented on June 11, 2024

I would be very happy if there was an option to switch it off instead of using suppressMessages in every query :)

from noctua.

DyfanJones avatar DyfanJones commented on June 11, 2024

So something like this:

remotes::install_github("dyfanjones/noctua", ref="verbose")
library(DBI)
library(noctua)

con <- dbConnect(athena())

dbGetQuery(con, "select * from iris limit 5")
#>    sepal_length sepal_width petal_length petal_width species
#> 1:          5.1         3.5          1.4         0.2  setosa
#> 2:          4.9         3.0          1.4         0.2  setosa
#> 3:          4.7         3.2          1.3         0.2  setosa
#> 4:          4.6         3.1          1.5         0.2  setosa
#> 5:          5.0         3.6          1.4         0.2  setosa

noctua_options(verbose = T)

dbGetQuery(con, "select * from iris limit 5")
#> Info: (Data scanned: 3.63 KB)
#>    sepal_length sepal_width petal_length petal_width species
#> 1:          5.1         3.5          1.4         0.2  setosa
#> 2:          4.9         3.0          1.4         0.2  setosa
#> 3:          4.7         3.2          1.3         0.2  setosa
#> 4:          4.6         3.1          1.5         0.2  setosa
#> 5:          5.0         3.6          1.4         0.2  setosa

Created on 2022-01-13 by the reprex package (v2.0.1)

Currently not sure to have verbose set to FALSE for default or have the user switch to FALSE if they don't like the extra information.

from noctua.

vhpietil avatar vhpietil commented on June 11, 2024

Something like that would be nice

from noctua.

DyfanJones avatar DyfanJones commented on June 11, 2024

Should all information message be optionally turned off? 🤔 Would make it consistent across the package. If that is the case then can leave the default package verbose as TRUE and let the user turn it off.

from noctua.

vhpietil avatar vhpietil commented on June 11, 2024

from noctua.

DyfanJones avatar DyfanJones commented on June 11, 2024

Closing this ticket as version 2.5.0 has been pushed to the cran

from noctua.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.