AlexIoannides / elasticsearchr

Lightweight Elasticsearch client for R.
https://alexioannides.com/2016/11/28/elasticsearchr-a-lightweight-elasticsearch-client-for-r/
54 stars 19 forks source link

Remove "..." when running elastic? #29

Closed jmrichardson closed 7 years ago

jmrichardson commented 7 years ago

Hi,

Thanks for the package. How do I get rid of the "..." when running the command:

> df <- es %search% for_everything
...
>

Thanks

AlexIoannides commented 7 years ago

You could try,

suppressMessages(
  df <- es %search% for_everything
)