``` data_frame df2; df2.from_tuples(std::vector{std::make_tuple(1, 3.3, "hello"), std::make_tuple(2, 2.2, "world"), std::make_tuple(3, 1.1, "bili")}, {"int_vec", "double_vec", "str_vec"}); df2.print_index<int, double, std::string>({0, 1, 2}); ``` This will only print 2 columns and omit the `std::string`.