Skip to content
Search

Select / Drop

Back
Table of Contents

Select

To quickly select only relevant entries use Rows DataFrame::select

<?php 

data_frame()
    ->read(from_array(...))
    ->select("id", "name")
    ->write(to_output())
    ->run();

Drop

To quickly drop irrelevant entries use Rows DataFrame::drop

<?php 

data_frame()
    ->read(from_array(...))
    ->drop("_tags")
    ->write(to_output())
    ->run();

Found a typo or an outdated section? Edit this page on GitHub


Contributors

Built in the open.

Join us on GitHub
scroll back to top