├── .Rbuildignore ├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── build-docs.yml │ ├── build-wasm.yml │ ├── lint-mega-linter.yaml │ ├── lint-pr.yml │ ├── lint-r.yml │ ├── lint-rust.yml │ ├── release-lib.yml │ ├── test-docs.yml │ ├── test-r.yml │ └── test-rust.yml ├── .gitignore ├── .lintr.R ├── .lycheeignore ├── .mega-linter.yml ├── .vscode ├── extensions.json └── settings.json ├── DESCRIPTION ├── DEVELOPMENT.md ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── 000-wrappers.R ├── api.R ├── as_polars_df.R ├── as_polars_expr.R ├── as_polars_lf.R ├── as_polars_series.R ├── check_polars.R ├── config.R ├── dataframe-frame.R ├── dataframe-group_by-general.R ├── dataframe-group_by-rolling.R ├── dataframe-group_by_dynamic.R ├── dataframe-html.R ├── dataframe-s3-arrow.R ├── dataframe-s3-base.R ├── dataframe-s3-knitr.R ├── dataframe-s3-nanoarrow.R ├── dataframe-s3-tibble.R ├── dataframe-s3-waldo.R ├── datatypes-classes.R ├── datatypes-s3-base.R ├── datatypes-s3-waldo.R ├── expr-array.R ├── expr-binary.R ├── expr-categorical.R ├── expr-datetime.R ├── expr-expr.R ├── expr-list.R ├── expr-meta.R ├── expr-name.R ├── expr-s3-base.R ├── expr-s3-operators.R ├── expr-s3-waldo.R ├── expr-string.R ├── expr-struct.R ├── expr-whenthen.R ├── functions-aggregation-horizontal.R ├── functions-aggregation-vertical.R ├── functions-as_datatype.R ├── functions-col.R ├── functions-eager.R ├── functions-lazy.R ├── functions-len.R ├── functions-lit.R ├── functions-range-date_range.R ├── functions-range-datetime_range.R ├── functions-range-int_range.R ├── functions-range-time_range.R ├── functions-repeat.R ├── functions-whenthen.R ├── generated-s3methods-dollar.R ├── generated-s3methods-series-namespace-dollar.R ├── import-standalone-cli.R ├── import-standalone-lifecycle.R ├── import-standalone-obj-type.R ├── import-standalone-s3-register.R ├── import-standalone-types-check.R ├── infer_polars_dtype.R ├── input-csv-functions.R ├── input-ipc-functions.R ├── input-json-functions.R ├── input-parquet-functions.R ├── integration-mirai.R ├── lazyframe-frame.R ├── lazyframe-group_by.R ├── lazyframe-s3-base.R ├── lazyframe-s3-tibble.R ├── lazyframe-utils.R ├── meta-thread_pool.R ├── meta-versions.R ├── object-s3-base.R ├── output-csv.R ├── output-ipc.R ├── output-json.R ├── output-parquet.R ├── output-partition.R ├── polars-package.R ├── polars_info.R ├── polars_options.R ├── selectors.R ├── series-array.R ├── series-binary.R ├── series-categorical.R ├── series-datetime.R ├── series-list.R ├── series-s3-arrow.R ├── series-s3-base.R ├── series-s3-knitr.R ├── series-s3-nanoarrow.R ├── series-s3-operators.R ├── series-s3-waldo.R ├── series-series.R ├── series-string.R ├── series-struct.R ├── series-to_r_vector.R ├── series-utils.R ├── sql-context.R ├── utils-check.R ├── utils-convert.R ├── utils-getitem.R ├── utils-parse-datatype.R ├── utils-parse-expr.R ├── utils-various.R ├── utils-wrap.R └── zzz.R ├── README.Rmd ├── README.md ├── Taskfile.yml ├── air.toml ├── altdoc ├── altdoc_postprocessing.R ├── mkdocs.yml ├── pkgdown.yml ├── polars-logo.png ├── preamble_man_qmd.yml ├── preamble_vignettes_qmd.yml ├── preamble_vignettes_rmd.yml ├── reference_home.Rmd └── stylesheets │ └── extra.css ├── cleanup ├── cleanup.win ├── configure ├── configure.win ├── dev ├── generate-lib-sums.R └── generate-r-files │ ├── data │ ├── class-names.tsv │ └── series-namespace-names.tsv │ ├── generate-s3methods-dollar.R │ └── templates │ ├── s3methods-dollar.R.txt │ └── s3methods-series-namespace-dollar.R.txt ├── man ├── as_polars_df.Rd ├── as_polars_expr.Rd ├── as_polars_lf.Rd ├── as_polars_series.Rd ├── check_polars.Rd ├── cs.Rd ├── cs__all.Rd ├── cs__alpha.Rd ├── cs__alphanumeric.Rd ├── cs__binary.Rd ├── cs__boolean.Rd ├── cs__by_dtype.Rd ├── cs__by_index.Rd ├── cs__by_name.Rd ├── cs__categorical.Rd ├── cs__contains.Rd ├── cs__date.Rd ├── cs__datetime.Rd ├── cs__decimal.Rd ├── cs__digit.Rd ├── cs__duration.Rd ├── cs__ends_with.Rd ├── cs__exclude.Rd ├── cs__first.Rd ├── cs__float.Rd ├── cs__integer.Rd ├── cs__last.Rd ├── cs__matches.Rd ├── cs__numeric.Rd ├── cs__signed_integer.Rd ├── cs__starts_with.Rd ├── cs__string.Rd ├── cs__temporal.Rd ├── cs__time.Rd ├── cs__unsigned_integer.Rd ├── dataframe__bottom_k.Rd ├── dataframe__cast.Rd ├── dataframe__clear.Rd ├── dataframe__clone.Rd ├── dataframe__count.Rd ├── dataframe__describe.Rd ├── dataframe__drop.Rd ├── dataframe__drop_nans.Rd ├── dataframe__drop_nulls.Rd ├── dataframe__equals.Rd ├── dataframe__explode.Rd ├── dataframe__fill_nan.Rd ├── dataframe__fill_null.Rd ├── dataframe__filter.Rd ├── dataframe__gather_every.Rd ├── dataframe__get_column.Rd ├── dataframe__get_column_index.Rd ├── dataframe__get_columns.Rd ├── dataframe__glimpse.Rd ├── dataframe__group_by.Rd ├── dataframe__group_by_dynamic.Rd ├── dataframe__hash_rows.Rd ├── dataframe__head.Rd ├── dataframe__is_duplicated.Rd ├── dataframe__is_empty.Rd ├── dataframe__is_unique.Rd ├── dataframe__join.Rd ├── dataframe__join_asof.Rd ├── dataframe__join_where.Rd ├── dataframe__lazy.Rd ├── dataframe__max.Rd ├── dataframe__max_horizontal.Rd ├── dataframe__mean.Rd ├── dataframe__mean_horizontal.Rd ├── dataframe__median.Rd ├── dataframe__merge_sorted.Rd ├── dataframe__min.Rd ├── dataframe__min_horizontal.Rd ├── dataframe__n_chunks.Rd ├── dataframe__partition_by.Rd ├── dataframe__pivot.Rd ├── dataframe__quantile.Rd ├── dataframe__rechunk.Rd ├── dataframe__rename.Rd ├── dataframe__reverse.Rd ├── dataframe__rolling.Rd ├── dataframe__sample.Rd ├── dataframe__select.Rd ├── dataframe__select_seq.Rd ├── dataframe__serialize.Rd ├── dataframe__set_sorted.Rd ├── dataframe__shift.Rd ├── dataframe__slice.Rd ├── dataframe__sort.Rd ├── dataframe__std.Rd ├── dataframe__sum.Rd ├── dataframe__sum_horizontal.Rd ├── dataframe__tail.Rd ├── dataframe__to_dummies.Rd ├── dataframe__to_series.Rd ├── dataframe__to_struct.Rd ├── dataframe__top_k.Rd ├── dataframe__transpose.Rd ├── dataframe__unique.Rd ├── dataframe__unnest.Rd ├── dataframe__unpivot.Rd ├── dataframe__unstack.Rd ├── dataframe__var.Rd ├── dataframe__with_columns.Rd ├── dataframe__with_columns_seq.Rd ├── dataframe__with_row_index.Rd ├── dataframe__write_csv.Rd ├── dataframe__write_ipc.Rd ├── dataframe__write_json.Rd ├── dataframe__write_ndjson.Rd ├── dataframe__write_parquet.Rd ├── expr__abs.Rd ├── expr__add.Rd ├── expr__agg_groups.Rd ├── expr__alias.Rd ├── expr__all.Rd ├── expr__and.Rd ├── expr__any.Rd ├── expr__append.Rd ├── expr__approx_n_unique.Rd ├── expr__arccos.Rd ├── expr__arccosh.Rd ├── expr__arcsin.Rd ├── expr__arcsinh.Rd ├── expr__arctan.Rd ├── expr__arctanh.Rd ├── expr__arg_max.Rd ├── expr__arg_min.Rd ├── expr__arg_sort.Rd ├── expr__arg_true.Rd ├── expr__arg_unique.Rd ├── expr__backward_fill.Rd ├── expr__bitwise_and.Rd ├── expr__bitwise_count_ones.Rd ├── expr__bitwise_count_zeros.Rd ├── expr__bitwise_leading_ones.Rd ├── expr__bitwise_leading_zeros.Rd ├── expr__bitwise_or.Rd ├── expr__bitwise_trailing_ones.Rd ├── expr__bitwise_trailing_zeros.Rd ├── expr__bitwise_xor.Rd ├── expr__bottom_k.Rd ├── expr__bottom_k_by.Rd ├── expr__cast.Rd ├── expr__cbrt.Rd ├── expr__ceil.Rd ├── expr__clip.Rd ├── expr__cos.Rd ├── expr__cosh.Rd ├── expr__cot.Rd ├── expr__count.Rd ├── expr__cum_count.Rd ├── expr__cum_max.Rd ├── expr__cum_min.Rd ├── expr__cum_prod.Rd ├── expr__cum_sum.Rd ├── expr__cumulative_eval.Rd ├── expr__cut.Rd ├── expr__degrees.Rd ├── expr__diff.Rd ├── expr__dot.Rd ├── expr__drop_nans.Rd ├── expr__drop_nulls.Rd ├── expr__entropy.Rd ├── expr__eq.Rd ├── expr__eq_missing.Rd ├── expr__ewm_mean.Rd ├── expr__ewm_mean_by.Rd ├── expr__ewm_std.Rd ├── expr__ewm_var.Rd ├── expr__exclude.Rd ├── expr__exp.Rd ├── expr__explode.Rd ├── expr__extend_constant.Rd ├── expr__fill_nan.Rd ├── expr__fill_null.Rd ├── expr__filter.Rd ├── expr__first.Rd ├── expr__flatten.Rd ├── expr__floor.Rd ├── expr__floor_div.Rd ├── expr__forward_fill.Rd ├── expr__gather.Rd ├── expr__gather_every.Rd ├── expr__ge.Rd ├── expr__get.Rd ├── expr__gt.Rd ├── expr__has_nulls.Rd ├── expr__hash.Rd ├── expr__head.Rd ├── expr__hist.Rd ├── expr__implode.Rd ├── expr__interpolate.Rd ├── expr__interpolate_by.Rd ├── expr__is_between.Rd ├── expr__is_duplicated.Rd ├── expr__is_finite.Rd ├── expr__is_first_distinct.Rd ├── expr__is_in.Rd ├── expr__is_infinite.Rd ├── expr__is_last_distinct.Rd ├── expr__is_nan.Rd ├── expr__is_not_nan.Rd ├── expr__is_not_null.Rd ├── expr__is_null.Rd ├── expr__is_unique.Rd ├── expr__kurtosis.Rd ├── expr__last.Rd ├── expr__le.Rd ├── expr__len.Rd ├── expr__limit.Rd ├── expr__log.Rd ├── expr__log10.Rd ├── expr__log1p.Rd ├── expr__lower_bound.Rd ├── expr__lt.Rd ├── expr__map_batches.Rd ├── expr__max.Rd ├── expr__mean.Rd ├── expr__median.Rd ├── expr__min.Rd ├── expr__mod.Rd ├── expr__mode.Rd ├── expr__mul.Rd ├── expr__n_unique.Rd ├── expr__nan_max.Rd ├── expr__nan_min.Rd ├── expr__ne.Rd ├── expr__ne_missing.Rd ├── expr__not.Rd ├── expr__null_count.Rd ├── expr__or.Rd ├── expr__over.Rd ├── expr__pct_change.Rd ├── expr__peak_max.Rd ├── expr__peak_min.Rd ├── expr__pow.Rd ├── expr__product.Rd ├── expr__qcut.Rd ├── expr__quantile.Rd ├── expr__radians.Rd ├── expr__rank.Rd ├── expr__rechunk.Rd ├── expr__reinterpret.Rd ├── expr__repeat_by.Rd ├── expr__replace.Rd ├── expr__replace_strict.Rd ├── expr__reshape.Rd ├── expr__reverse.Rd ├── expr__rle.Rd ├── expr__rle_id.Rd ├── expr__rolling.Rd ├── expr__rolling_max.Rd ├── expr__rolling_max_by.Rd ├── expr__rolling_mean.Rd ├── expr__rolling_mean_by.Rd ├── expr__rolling_median.Rd ├── expr__rolling_median_by.Rd ├── expr__rolling_min.Rd ├── expr__rolling_min_by.Rd ├── expr__rolling_quantile.Rd ├── expr__rolling_quantile_by.Rd ├── expr__rolling_skew.Rd ├── expr__rolling_std.Rd ├── expr__rolling_std_by.Rd ├── expr__rolling_sum.Rd ├── expr__rolling_sum_by.Rd ├── expr__rolling_var.Rd ├── expr__rolling_var_by.Rd ├── expr__round.Rd ├── expr__round_sig_figs.Rd ├── expr__sample.Rd ├── expr__search_sorted.Rd ├── expr__set_sorted.Rd ├── expr__shift.Rd ├── expr__shrink_dtype.Rd ├── expr__shuffle.Rd ├── expr__sign.Rd ├── expr__sin.Rd ├── expr__sinh.Rd ├── expr__skew.Rd ├── expr__slice.Rd ├── expr__sort.Rd ├── expr__sort_by.Rd ├── expr__sqrt.Rd ├── expr__std.Rd ├── expr__sub.Rd ├── expr__sum.Rd ├── expr__tail.Rd ├── expr__tan.Rd ├── expr__tanh.Rd ├── expr__to_physical.Rd ├── expr__top_k.Rd ├── expr__top_k_by.Rd ├── expr__true_div.Rd ├── expr__unique.Rd ├── expr__unique_counts.Rd ├── expr__upper_bound.Rd ├── expr__value_counts.Rd ├── expr__var.Rd ├── expr__xor.Rd ├── expr_arr_all.Rd ├── expr_arr_any.Rd ├── expr_arr_arg_max.Rd ├── expr_arr_arg_min.Rd ├── expr_arr_contains.Rd ├── expr_arr_count_matches.Rd ├── expr_arr_explode.Rd ├── expr_arr_first.Rd ├── expr_arr_get.Rd ├── expr_arr_join.Rd ├── expr_arr_last.Rd ├── expr_arr_max.Rd ├── expr_arr_median.Rd ├── expr_arr_min.Rd ├── expr_arr_n_unique.Rd ├── expr_arr_reverse.Rd ├── expr_arr_shift.Rd ├── expr_arr_sort.Rd ├── expr_arr_std.Rd ├── expr_arr_sum.Rd ├── expr_arr_to_list.Rd ├── expr_arr_to_struct.Rd ├── expr_arr_unique.Rd ├── expr_arr_var.Rd ├── expr_bin_contains.Rd ├── expr_bin_decode.Rd ├── expr_bin_encode.Rd ├── expr_bin_ends_with.Rd ├── expr_bin_size.Rd ├── expr_bin_starts_with.Rd ├── expr_cat_get_categories.Rd ├── expr_dt_add_business_days.Rd ├── expr_dt_base_utc_offset.Rd ├── expr_dt_cast_time_unit.Rd ├── expr_dt_century.Rd ├── expr_dt_combine.Rd ├── expr_dt_convert_time_zone.Rd ├── expr_dt_date.Rd ├── expr_dt_day.Rd ├── expr_dt_dst_offset.Rd ├── expr_dt_epoch.Rd ├── expr_dt_hour.Rd ├── expr_dt_is_leap_year.Rd ├── expr_dt_iso_year.Rd ├── expr_dt_microsecond.Rd ├── expr_dt_millisecond.Rd ├── expr_dt_minute.Rd ├── expr_dt_month.Rd ├── expr_dt_month_end.Rd ├── expr_dt_month_start.Rd ├── expr_dt_nanosecond.Rd ├── expr_dt_offset_by.Rd ├── expr_dt_ordinal_day.Rd ├── expr_dt_quarter.Rd ├── expr_dt_replace_time_zone.Rd ├── expr_dt_round.Rd ├── expr_dt_second.Rd ├── expr_dt_strftime.Rd ├── expr_dt_time.Rd ├── expr_dt_timestamp.Rd ├── expr_dt_to_string.Rd ├── expr_dt_total_days.Rd ├── expr_dt_total_hours.Rd ├── expr_dt_total_microseconds.Rd ├── expr_dt_total_milliseconds.Rd ├── expr_dt_total_minutes.Rd ├── expr_dt_total_nanoseconds.Rd ├── expr_dt_total_seconds.Rd ├── expr_dt_truncate.Rd ├── expr_dt_week.Rd ├── expr_dt_weekday.Rd ├── expr_dt_with_time_unit.Rd ├── expr_dt_year.Rd ├── expr_list_all.Rd ├── expr_list_any.Rd ├── expr_list_arg_max.Rd ├── expr_list_arg_min.Rd ├── expr_list_concat.Rd ├── expr_list_contains.Rd ├── expr_list_count_matches.Rd ├── expr_list_diff.Rd ├── expr_list_drop_nulls.Rd ├── expr_list_eval.Rd ├── expr_list_explode.Rd ├── expr_list_first.Rd ├── expr_list_gather.Rd ├── expr_list_gather_every.Rd ├── expr_list_get.Rd ├── expr_list_head.Rd ├── expr_list_join.Rd ├── expr_list_last.Rd ├── expr_list_len.Rd ├── expr_list_max.Rd ├── expr_list_mean.Rd ├── expr_list_median.Rd ├── expr_list_min.Rd ├── expr_list_n_unique.Rd ├── expr_list_reverse.Rd ├── expr_list_sample.Rd ├── expr_list_set_difference.Rd ├── expr_list_set_intersection.Rd ├── expr_list_set_symmetric_difference.Rd ├── expr_list_set_union.Rd ├── expr_list_shift.Rd ├── expr_list_slice.Rd ├── expr_list_sort.Rd ├── expr_list_std.Rd ├── expr_list_sum.Rd ├── expr_list_tail.Rd ├── expr_list_to_array.Rd ├── expr_list_to_struct.Rd ├── expr_list_unique.Rd ├── expr_list_var.Rd ├── expr_meta_eq.Rd ├── expr_meta_has_multiple_outputs.Rd ├── expr_meta_is_column.Rd ├── expr_meta_is_column_selection.Rd ├── expr_meta_is_regex_projection.Rd ├── expr_meta_ne.Rd ├── expr_meta_output_name.Rd ├── expr_meta_pop.Rd ├── expr_meta_root_names.Rd ├── expr_meta_serialize.Rd ├── expr_meta_tree_format.Rd ├── expr_meta_undo_aliases.Rd ├── expr_name_keep.Rd ├── expr_name_prefix.Rd ├── expr_name_prefix_fields.Rd ├── expr_name_suffix.Rd ├── expr_name_suffix_fields.Rd ├── expr_name_to_lowercase.Rd ├── expr_name_to_uppercase.Rd ├── expr_str_contains.Rd ├── expr_str_contains_any.Rd ├── expr_str_count_matches.Rd ├── expr_str_decode.Rd ├── expr_str_encode.Rd ├── expr_str_ends_with.Rd ├── expr_str_extract.Rd ├── expr_str_extract_all.Rd ├── expr_str_extract_groups.Rd ├── expr_str_extract_many.Rd ├── expr_str_find.Rd ├── expr_str_head.Rd ├── expr_str_join.Rd ├── expr_str_json_decode.Rd ├── expr_str_json_path_match.Rd ├── expr_str_len_bytes.Rd ├── expr_str_len_chars.Rd ├── expr_str_pad_end.Rd ├── expr_str_pad_start.Rd ├── expr_str_replace.Rd ├── expr_str_replace_all.Rd ├── expr_str_replace_many.Rd ├── expr_str_reverse.Rd ├── expr_str_slice.Rd ├── expr_str_split.Rd ├── expr_str_split_exact.Rd ├── expr_str_splitn.Rd ├── expr_str_starts_with.Rd ├── expr_str_strip_chars.Rd ├── expr_str_strip_chars_end.Rd ├── expr_str_strip_chars_start.Rd ├── expr_str_strip_prefix.Rd ├── expr_str_strip_suffix.Rd ├── expr_str_strptime.Rd ├── expr_str_tail.Rd ├── expr_str_to_date.Rd ├── expr_str_to_datetime.Rd ├── expr_str_to_decimal.Rd ├── expr_str_to_integer.Rd ├── expr_str_to_lowercase.Rd ├── expr_str_to_time.Rd ├── expr_str_to_titlecase.Rd ├── expr_str_to_uppercase.Rd ├── expr_str_zfill.Rd ├── expr_struct_field.Rd ├── expr_struct_json_encode.Rd ├── expr_struct_rename_fields.Rd ├── expr_struct_unnest.Rd ├── expr_struct_with_fields.Rd ├── figures │ ├── lifecycle-archived.svg │ ├── lifecycle-defunct.svg │ ├── lifecycle-deprecated.svg │ ├── lifecycle-experimental.svg │ ├── lifecycle-maturing.svg │ ├── lifecycle-questioning.svg │ ├── lifecycle-soft-deprecated.svg │ ├── lifecycle-stable.svg │ └── lifecycle-superseded.svg ├── groupby__agg.Rd ├── groupby__head.Rd ├── groupby__max.Rd ├── groupby__mean.Rd ├── groupby__median.Rd ├── groupby__min.Rd ├── groupby__n_unique.Rd ├── groupby__quantile.Rd ├── groupby__sum.Rd ├── groupby__tail.Rd ├── infer_polars_dtype.Rd ├── lazyframe__bottom_k.Rd ├── lazyframe__cast.Rd ├── lazyframe__clear.Rd ├── lazyframe__clone.Rd ├── lazyframe__collect.Rd ├── lazyframe__collect_schema.Rd ├── lazyframe__count.Rd ├── lazyframe__describe.Rd ├── lazyframe__drop.Rd ├── lazyframe__drop_nans.Rd ├── lazyframe__drop_nulls.Rd ├── lazyframe__explain.Rd ├── lazyframe__explode.Rd ├── lazyframe__fill_nan.Rd ├── lazyframe__fill_null.Rd ├── lazyframe__filter.Rd ├── lazyframe__first.Rd ├── lazyframe__gather_every.Rd ├── lazyframe__group_by.Rd ├── lazyframe__group_by_dynamic.Rd ├── lazyframe__head.Rd ├── lazyframe__interpolate.Rd ├── lazyframe__join.Rd ├── lazyframe__join_asof.Rd ├── lazyframe__join_where.Rd ├── lazyframe__last.Rd ├── lazyframe__max.Rd ├── lazyframe__mean.Rd ├── lazyframe__median.Rd ├── lazyframe__merge_sorted.Rd ├── lazyframe__min.Rd ├── lazyframe__null_count.Rd ├── lazyframe__profile.Rd ├── lazyframe__quantile.Rd ├── lazyframe__rename.Rd ├── lazyframe__reverse.Rd ├── lazyframe__rolling.Rd ├── lazyframe__select.Rd ├── lazyframe__select_seq.Rd ├── lazyframe__serialize.Rd ├── lazyframe__set_sorted.Rd ├── lazyframe__shift.Rd ├── lazyframe__sink_csv.Rd ├── lazyframe__sink_ipc.Rd ├── lazyframe__sink_ndjson.Rd ├── lazyframe__sink_parquet.Rd ├── lazyframe__slice.Rd ├── lazyframe__sort.Rd ├── lazyframe__sql.Rd ├── lazyframe__std.Rd ├── lazyframe__sum.Rd ├── lazyframe__tail.Rd ├── lazyframe__to_dot.Rd ├── lazyframe__top_k.Rd ├── lazyframe__unique.Rd ├── lazyframe__unnest.Rd ├── lazyframe__unpivot.Rd ├── lazyframe__var.Rd ├── lazyframe__with_columns.Rd ├── lazyframe__with_columns_seq.Rd ├── lazyframe__with_row_index.Rd ├── lazygroupby__agg.Rd ├── lazygroupby__head.Rd ├── lazygroupby__max.Rd ├── lazygroupby__mean.Rd ├── lazygroupby__median.Rd ├── lazygroupby__min.Rd ├── lazygroupby__n_unique.Rd ├── lazygroupby__quantile.Rd ├── lazygroupby__sum.Rd ├── lazygroupby__tail.Rd ├── pl.Rd ├── pl__DataFrame.Rd ├── pl__LazyFrame.Rd ├── pl__SQLContext.Rd ├── pl__Series.Rd ├── pl__all.Rd ├── pl__all_horizontal.Rd ├── pl__any.Rd ├── pl__any_horizontal.Rd ├── pl__arg_sort_by.Rd ├── pl__arg_where.Rd ├── pl__coalesce.Rd ├── pl__col.Rd ├── pl__concat.Rd ├── pl__concat_list.Rd ├── pl__concat_str.Rd ├── pl__cum_sum.Rd ├── pl__date.Rd ├── pl__date_range.Rd ├── pl__date_ranges.Rd ├── pl__datetime.Rd ├── pl__datetime_range.Rd ├── pl__datetime_ranges.Rd ├── pl__duration.Rd ├── pl__element.Rd ├── pl__first.Rd ├── pl__int_range.Rd ├── pl__int_ranges.Rd ├── pl__last.Rd ├── pl__len.Rd ├── pl__lit.Rd ├── pl__max.Rd ├── pl__max_horizontal.Rd ├── pl__mean_horizontal.Rd ├── pl__min.Rd ├── pl__min_horizontal.Rd ├── pl__nth.Rd ├── pl__read_csv.Rd ├── pl__read_ipc.Rd ├── pl__read_ipc_stream.Rd ├── pl__read_ndjson.Rd ├── pl__read_parquet.Rd ├── pl__repeat_.Rd ├── pl__scan_csv.Rd ├── pl__scan_ipc.Rd ├── pl__scan_ndjson.Rd ├── pl__scan_parquet.Rd ├── pl__show_versions.Rd ├── pl__struct.Rd ├── pl__sum.Rd ├── pl__sum_horizontal.Rd ├── pl__thread_pool_size.Rd ├── pl__time_range.Rd ├── pl__time_ranges.Rd ├── pl_api_register_series_namespace.Rd ├── polars-duration-string.Rd ├── polars-package.Rd ├── polars_dtype.Rd ├── polars_expr.Rd ├── polars_info.Rd ├── polars_options.Rd ├── polars_partitioning_scheme.Rd ├── s3-arithmetic.Rd ├── s3-as.data.frame.Rd ├── s3-as.list.Rd ├── s3-as_nanoarrow_array_stream.Rd ├── s3-as_tibble.Rd ├── s3-knit_print.Rd ├── series__alias.Rd ├── series__chunk_lengths.Rd ├── series__n_chunks.Rd ├── series__rechunk.Rd ├── series__serialize.Rd ├── series__to_frame.Rd ├── series__to_r_vector.Rd ├── series_struct_unnest.Rd ├── sql_context__execute.Rd ├── sql_context__register.Rd ├── sql_context__register_many.Rd ├── sql_context__tables.Rd └── sql_context__unregister.Rd ├── src ├── .gitignore ├── Makevars.in ├── Makevars.win.in ├── init.c ├── neopolars-win.def └── rust │ ├── Cargo.lock │ ├── Cargo.toml │ ├── api.h │ ├── build.rs │ ├── rust-toolchain.toml │ └── src │ ├── allocator.rs │ ├── conversion │ ├── base_date.rs │ ├── chunked_array.rs │ ├── clock.rs │ ├── data_table.rs │ └── mod.rs │ ├── dataframe │ ├── general.rs │ ├── io.rs │ ├── mod.rs │ └── serde.rs │ ├── datatypes.rs │ ├── error.rs │ ├── expr │ ├── array.rs │ ├── binary.rs │ ├── bitwise.rs │ ├── categorical.rs │ ├── datetime.rs │ ├── general.rs │ ├── list.rs │ ├── meta.rs │ ├── mod.rs │ ├── name.rs │ ├── rolling.rs │ ├── serde.rs │ ├── string.rs │ └── struct.rs │ ├── functions │ ├── aggregation.rs │ ├── eager.rs │ ├── lazy.rs │ ├── mod.rs │ ├── range.rs │ └── whenthen.rs │ ├── info.rs │ ├── lazyframe │ ├── general.rs │ ├── mod.rs │ ├── serde.rs │ └── sink.rs │ ├── lazygroupby.rs │ ├── lib.rs │ ├── map │ ├── lazy.rs │ └── mod.rs │ ├── prelude.rs │ ├── r_threads.rs │ ├── r_udf.rs │ ├── series │ ├── arithmetic.rs │ ├── construction.rs │ ├── export.rs │ ├── general.rs │ ├── import.rs │ └── mod.rs │ └── sql.rs ├── tests ├── testthat.R └── testthat │ ├── _snaps │ ├── as_polars_df.md │ ├── as_polars_expr.md │ ├── as_polars_lf.md │ ├── as_polars_series.md │ ├── dataframe-frame.md │ ├── dataframe-s3-arrow.md │ ├── dataframe-s3-base.md │ ├── dataframe-s3-knitr.md │ ├── dataframe-s3-nanoarrow.md │ ├── datatypes-classes.md │ ├── expr-array.md │ ├── expr-binary.md │ ├── expr-datetime.md │ ├── expr-expr.md │ ├── expr-list.md │ ├── expr-meta.md │ ├── expr-string.md │ ├── expr-struct.md │ ├── functions-aggregation-horizontal.md │ ├── functions-as_datatype.md │ ├── functions-col.md │ ├── functions-eager.md │ ├── functions-range-date_range.md │ ├── functions-range-datetime_range.md │ ├── functions-range-time_range.md │ ├── infer_polars_dtype.md │ ├── input-csv-functions.md │ ├── input-ipc-functions.md │ ├── input-json-functions.md │ ├── input-parquet-functions.md │ ├── lazyframe-frame.md │ ├── meta-versions.md │ ├── output-csv.md │ ├── output-ipc.md │ ├── output-json │ │ ├── sink_ndjson_output.txt │ │ └── write_json_output.txt │ ├── output-parquet.md │ ├── polars_info.md │ ├── polars_options.md │ ├── selectors.md │ ├── series-s3-arrow.md │ ├── series-s3-base.md │ ├── series-s3-nanoarrow.md │ ├── series-series.md │ ├── series-struct.md │ ├── series-to_r_vector.md │ └── utils-parse-expr.md │ ├── files │ └── rmarkdown.Rmd │ ├── helper-expections.R │ ├── helper-rmarkdown.R │ ├── setup.R │ ├── test-as_polars_df.R │ ├── test-as_polars_expr.R │ ├── test-as_polars_lf.R │ ├── test-as_polars_series.R │ ├── test-check_polars.R │ ├── test-dataframe-frame.R │ ├── test-dataframe-s3-arrow.R │ ├── test-dataframe-s3-base.R │ ├── test-dataframe-s3-knitr.R │ ├── test-dataframe-s3-nanoarrow.R │ ├── test-datatypes-classes.R │ ├── test-datatypes-s3-base.R │ ├── test-expr-array.R │ ├── test-expr-binary.R │ ├── test-expr-categorical.R │ ├── test-expr-datetime.R │ ├── test-expr-expr.R │ ├── test-expr-list.R │ ├── test-expr-meta.R │ ├── test-expr-name.R │ ├── test-expr-string.R │ ├── test-expr-struct.R │ ├── test-functions-aggregation-horizontal.R │ ├── test-functions-aggregation-vertical.R │ ├── test-functions-as_datatype.R │ ├── test-functions-col.R │ ├── test-functions-eager.R │ ├── test-functions-lazy.R │ ├── test-functions-len.R │ ├── test-functions-range-date_range.R │ ├── test-functions-range-datetime_range.R │ ├── test-functions-range-int_range.R │ ├── test-functions-range-time_range.R │ ├── test-functions-repeat.R │ ├── test-infer_polars_dtype.R │ ├── test-input-csv-functions.R │ ├── test-input-ipc-functions.R │ ├── test-input-json-functions.R │ ├── test-input-parquet-functions.R │ ├── test-integration-mirai.R │ ├── test-lazyframe-frame.R │ ├── test-lazyframe-s3-base.R │ ├── test-meta-versions.R │ ├── test-object-s3-base.R │ ├── test-output-csv.R │ ├── test-output-ipc.R │ ├── test-output-json.R │ ├── test-output-parquet.R │ ├── test-polars_info.R │ ├── test-polars_options.R │ ├── test-selectors.R │ ├── test-series-list.R │ ├── test-series-s3-arrow.R │ ├── test-series-s3-base.R │ ├── test-series-s3-nanoarrow.R │ ├── test-series-series.R │ ├── test-series-struct.R │ ├── test-series-to_r_vector.R │ ├── test-sql-context.R │ └── test-utils-parse-expr.R ├── tools ├── lib-sums.tsv └── prep-lib.R └── vignettes ├── custom-functions.Rmd ├── install.Rmd ├── performance.Rmd └── polars.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/build-docs.yml -------------------------------------------------------------------------------- /.github/workflows/build-wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/build-wasm.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/lint-pr.yml -------------------------------------------------------------------------------- /.github/workflows/lint-r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/lint-r.yml -------------------------------------------------------------------------------- /.github/workflows/lint-rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/lint-rust.yml -------------------------------------------------------------------------------- /.github/workflows/release-lib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/release-lib.yml -------------------------------------------------------------------------------- /.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /.github/workflows/test-r.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/test-r.yml -------------------------------------------------------------------------------- /.github/workflows/test-rust.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.github/workflows/test-rust.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.lintr.R -------------------------------------------------------------------------------- /.lycheeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.lycheeignore -------------------------------------------------------------------------------- /.mega-linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.mega-linter.yml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2024 2 | COPYRIGHT HOLDER: polars authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/000-wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/000-wrappers.R -------------------------------------------------------------------------------- /R/api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/api.R -------------------------------------------------------------------------------- /R/as_polars_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/as_polars_df.R -------------------------------------------------------------------------------- /R/as_polars_expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/as_polars_expr.R -------------------------------------------------------------------------------- /R/as_polars_lf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/as_polars_lf.R -------------------------------------------------------------------------------- /R/as_polars_series.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/as_polars_series.R -------------------------------------------------------------------------------- /R/check_polars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/check_polars.R -------------------------------------------------------------------------------- /R/config.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/config.R -------------------------------------------------------------------------------- /R/dataframe-frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-frame.R -------------------------------------------------------------------------------- /R/dataframe-group_by-general.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-group_by-general.R -------------------------------------------------------------------------------- /R/dataframe-group_by-rolling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-group_by-rolling.R -------------------------------------------------------------------------------- /R/dataframe-group_by_dynamic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-group_by_dynamic.R -------------------------------------------------------------------------------- /R/dataframe-html.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-html.R -------------------------------------------------------------------------------- /R/dataframe-s3-arrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-arrow.R -------------------------------------------------------------------------------- /R/dataframe-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-base.R -------------------------------------------------------------------------------- /R/dataframe-s3-knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-knitr.R -------------------------------------------------------------------------------- /R/dataframe-s3-nanoarrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-nanoarrow.R -------------------------------------------------------------------------------- /R/dataframe-s3-tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-tibble.R -------------------------------------------------------------------------------- /R/dataframe-s3-waldo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/dataframe-s3-waldo.R -------------------------------------------------------------------------------- /R/datatypes-classes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/datatypes-classes.R -------------------------------------------------------------------------------- /R/datatypes-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/datatypes-s3-base.R -------------------------------------------------------------------------------- /R/datatypes-s3-waldo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/datatypes-s3-waldo.R -------------------------------------------------------------------------------- /R/expr-array.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-array.R -------------------------------------------------------------------------------- /R/expr-binary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-binary.R -------------------------------------------------------------------------------- /R/expr-categorical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-categorical.R -------------------------------------------------------------------------------- /R/expr-datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-datetime.R -------------------------------------------------------------------------------- /R/expr-expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-expr.R -------------------------------------------------------------------------------- /R/expr-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-list.R -------------------------------------------------------------------------------- /R/expr-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-meta.R -------------------------------------------------------------------------------- /R/expr-name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-name.R -------------------------------------------------------------------------------- /R/expr-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-s3-base.R -------------------------------------------------------------------------------- /R/expr-s3-operators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-s3-operators.R -------------------------------------------------------------------------------- /R/expr-s3-waldo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-s3-waldo.R -------------------------------------------------------------------------------- /R/expr-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-string.R -------------------------------------------------------------------------------- /R/expr-struct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-struct.R -------------------------------------------------------------------------------- /R/expr-whenthen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/expr-whenthen.R -------------------------------------------------------------------------------- /R/functions-aggregation-horizontal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-aggregation-horizontal.R -------------------------------------------------------------------------------- /R/functions-aggregation-vertical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-aggregation-vertical.R -------------------------------------------------------------------------------- /R/functions-as_datatype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-as_datatype.R -------------------------------------------------------------------------------- /R/functions-col.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-col.R -------------------------------------------------------------------------------- /R/functions-eager.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-eager.R -------------------------------------------------------------------------------- /R/functions-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-lazy.R -------------------------------------------------------------------------------- /R/functions-len.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-len.R -------------------------------------------------------------------------------- /R/functions-lit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-lit.R -------------------------------------------------------------------------------- /R/functions-range-date_range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-range-date_range.R -------------------------------------------------------------------------------- /R/functions-range-datetime_range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-range-datetime_range.R -------------------------------------------------------------------------------- /R/functions-range-int_range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-range-int_range.R -------------------------------------------------------------------------------- /R/functions-range-time_range.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-range-time_range.R -------------------------------------------------------------------------------- /R/functions-repeat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-repeat.R -------------------------------------------------------------------------------- /R/functions-whenthen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/functions-whenthen.R -------------------------------------------------------------------------------- /R/generated-s3methods-dollar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/generated-s3methods-dollar.R -------------------------------------------------------------------------------- /R/import-standalone-cli.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/import-standalone-cli.R -------------------------------------------------------------------------------- /R/import-standalone-lifecycle.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/import-standalone-lifecycle.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-s3-register.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/import-standalone-s3-register.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/infer_polars_dtype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/infer_polars_dtype.R -------------------------------------------------------------------------------- /R/input-csv-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/input-csv-functions.R -------------------------------------------------------------------------------- /R/input-ipc-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/input-ipc-functions.R -------------------------------------------------------------------------------- /R/input-json-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/input-json-functions.R -------------------------------------------------------------------------------- /R/input-parquet-functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/input-parquet-functions.R -------------------------------------------------------------------------------- /R/integration-mirai.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/integration-mirai.R -------------------------------------------------------------------------------- /R/lazyframe-frame.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/lazyframe-frame.R -------------------------------------------------------------------------------- /R/lazyframe-group_by.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/lazyframe-group_by.R -------------------------------------------------------------------------------- /R/lazyframe-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/lazyframe-s3-base.R -------------------------------------------------------------------------------- /R/lazyframe-s3-tibble.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/lazyframe-s3-tibble.R -------------------------------------------------------------------------------- /R/lazyframe-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/lazyframe-utils.R -------------------------------------------------------------------------------- /R/meta-thread_pool.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/meta-thread_pool.R -------------------------------------------------------------------------------- /R/meta-versions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/meta-versions.R -------------------------------------------------------------------------------- /R/object-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/object-s3-base.R -------------------------------------------------------------------------------- /R/output-csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/output-csv.R -------------------------------------------------------------------------------- /R/output-ipc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/output-ipc.R -------------------------------------------------------------------------------- /R/output-json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/output-json.R -------------------------------------------------------------------------------- /R/output-parquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/output-parquet.R -------------------------------------------------------------------------------- /R/output-partition.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/output-partition.R -------------------------------------------------------------------------------- /R/polars-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/polars-package.R -------------------------------------------------------------------------------- /R/polars_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/polars_info.R -------------------------------------------------------------------------------- /R/polars_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/polars_options.R -------------------------------------------------------------------------------- /R/selectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/selectors.R -------------------------------------------------------------------------------- /R/series-array.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-array.R -------------------------------------------------------------------------------- /R/series-binary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-binary.R -------------------------------------------------------------------------------- /R/series-categorical.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-categorical.R -------------------------------------------------------------------------------- /R/series-datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-datetime.R -------------------------------------------------------------------------------- /R/series-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-list.R -------------------------------------------------------------------------------- /R/series-s3-arrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-arrow.R -------------------------------------------------------------------------------- /R/series-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-base.R -------------------------------------------------------------------------------- /R/series-s3-knitr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-knitr.R -------------------------------------------------------------------------------- /R/series-s3-nanoarrow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-nanoarrow.R -------------------------------------------------------------------------------- /R/series-s3-operators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-operators.R -------------------------------------------------------------------------------- /R/series-s3-waldo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-s3-waldo.R -------------------------------------------------------------------------------- /R/series-series.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-series.R -------------------------------------------------------------------------------- /R/series-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-string.R -------------------------------------------------------------------------------- /R/series-struct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-struct.R -------------------------------------------------------------------------------- /R/series-to_r_vector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-to_r_vector.R -------------------------------------------------------------------------------- /R/series-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/series-utils.R -------------------------------------------------------------------------------- /R/sql-context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/sql-context.R -------------------------------------------------------------------------------- /R/utils-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-check.R -------------------------------------------------------------------------------- /R/utils-convert.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-convert.R -------------------------------------------------------------------------------- /R/utils-getitem.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-getitem.R -------------------------------------------------------------------------------- /R/utils-parse-datatype.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-parse-datatype.R -------------------------------------------------------------------------------- /R/utils-parse-expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-parse-expr.R -------------------------------------------------------------------------------- /R/utils-various.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-various.R -------------------------------------------------------------------------------- /R/utils-wrap.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/utils-wrap.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/Taskfile.yml -------------------------------------------------------------------------------- /air.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/air.toml -------------------------------------------------------------------------------- /altdoc/altdoc_postprocessing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/altdoc_postprocessing.R -------------------------------------------------------------------------------- /altdoc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/mkdocs.yml -------------------------------------------------------------------------------- /altdoc/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/pkgdown.yml -------------------------------------------------------------------------------- /altdoc/polars-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/polars-logo.png -------------------------------------------------------------------------------- /altdoc/preamble_man_qmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/preamble_man_qmd.yml -------------------------------------------------------------------------------- /altdoc/preamble_vignettes_qmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/preamble_vignettes_qmd.yml -------------------------------------------------------------------------------- /altdoc/preamble_vignettes_rmd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/preamble_vignettes_rmd.yml -------------------------------------------------------------------------------- /altdoc/reference_home.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/reference_home.Rmd -------------------------------------------------------------------------------- /altdoc/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/altdoc/stylesheets/extra.css -------------------------------------------------------------------------------- /cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/cleanup -------------------------------------------------------------------------------- /cleanup.win: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./cleanup 4 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/configure -------------------------------------------------------------------------------- /configure.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/configure.win -------------------------------------------------------------------------------- /dev/generate-lib-sums.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/dev/generate-lib-sums.R -------------------------------------------------------------------------------- /man/as_polars_df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/as_polars_df.Rd -------------------------------------------------------------------------------- /man/as_polars_expr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/as_polars_expr.Rd -------------------------------------------------------------------------------- /man/as_polars_lf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/as_polars_lf.Rd -------------------------------------------------------------------------------- /man/as_polars_series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/as_polars_series.Rd -------------------------------------------------------------------------------- /man/check_polars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/check_polars.Rd -------------------------------------------------------------------------------- /man/cs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs.Rd -------------------------------------------------------------------------------- /man/cs__all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__all.Rd -------------------------------------------------------------------------------- /man/cs__alpha.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__alpha.Rd -------------------------------------------------------------------------------- /man/cs__alphanumeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__alphanumeric.Rd -------------------------------------------------------------------------------- /man/cs__binary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__binary.Rd -------------------------------------------------------------------------------- /man/cs__boolean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__boolean.Rd -------------------------------------------------------------------------------- /man/cs__by_dtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__by_dtype.Rd -------------------------------------------------------------------------------- /man/cs__by_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__by_index.Rd -------------------------------------------------------------------------------- /man/cs__by_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__by_name.Rd -------------------------------------------------------------------------------- /man/cs__categorical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__categorical.Rd -------------------------------------------------------------------------------- /man/cs__contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__contains.Rd -------------------------------------------------------------------------------- /man/cs__date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__date.Rd -------------------------------------------------------------------------------- /man/cs__datetime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__datetime.Rd -------------------------------------------------------------------------------- /man/cs__decimal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__decimal.Rd -------------------------------------------------------------------------------- /man/cs__digit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__digit.Rd -------------------------------------------------------------------------------- /man/cs__duration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__duration.Rd -------------------------------------------------------------------------------- /man/cs__ends_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__ends_with.Rd -------------------------------------------------------------------------------- /man/cs__exclude.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__exclude.Rd -------------------------------------------------------------------------------- /man/cs__first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__first.Rd -------------------------------------------------------------------------------- /man/cs__float.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__float.Rd -------------------------------------------------------------------------------- /man/cs__integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__integer.Rd -------------------------------------------------------------------------------- /man/cs__last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__last.Rd -------------------------------------------------------------------------------- /man/cs__matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__matches.Rd -------------------------------------------------------------------------------- /man/cs__numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__numeric.Rd -------------------------------------------------------------------------------- /man/cs__signed_integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__signed_integer.Rd -------------------------------------------------------------------------------- /man/cs__starts_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__starts_with.Rd -------------------------------------------------------------------------------- /man/cs__string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__string.Rd -------------------------------------------------------------------------------- /man/cs__temporal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__temporal.Rd -------------------------------------------------------------------------------- /man/cs__time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__time.Rd -------------------------------------------------------------------------------- /man/cs__unsigned_integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/cs__unsigned_integer.Rd -------------------------------------------------------------------------------- /man/dataframe__bottom_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__bottom_k.Rd -------------------------------------------------------------------------------- /man/dataframe__cast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__cast.Rd -------------------------------------------------------------------------------- /man/dataframe__clear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__clear.Rd -------------------------------------------------------------------------------- /man/dataframe__clone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__clone.Rd -------------------------------------------------------------------------------- /man/dataframe__count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__count.Rd -------------------------------------------------------------------------------- /man/dataframe__describe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__describe.Rd -------------------------------------------------------------------------------- /man/dataframe__drop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__drop.Rd -------------------------------------------------------------------------------- /man/dataframe__drop_nans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__drop_nans.Rd -------------------------------------------------------------------------------- /man/dataframe__drop_nulls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__drop_nulls.Rd -------------------------------------------------------------------------------- /man/dataframe__equals.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__equals.Rd -------------------------------------------------------------------------------- /man/dataframe__explode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__explode.Rd -------------------------------------------------------------------------------- /man/dataframe__fill_nan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__fill_nan.Rd -------------------------------------------------------------------------------- /man/dataframe__fill_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__fill_null.Rd -------------------------------------------------------------------------------- /man/dataframe__filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__filter.Rd -------------------------------------------------------------------------------- /man/dataframe__gather_every.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__gather_every.Rd -------------------------------------------------------------------------------- /man/dataframe__get_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__get_column.Rd -------------------------------------------------------------------------------- /man/dataframe__get_column_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__get_column_index.Rd -------------------------------------------------------------------------------- /man/dataframe__get_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__get_columns.Rd -------------------------------------------------------------------------------- /man/dataframe__glimpse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__glimpse.Rd -------------------------------------------------------------------------------- /man/dataframe__group_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__group_by.Rd -------------------------------------------------------------------------------- /man/dataframe__group_by_dynamic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__group_by_dynamic.Rd -------------------------------------------------------------------------------- /man/dataframe__hash_rows.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__hash_rows.Rd -------------------------------------------------------------------------------- /man/dataframe__head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__head.Rd -------------------------------------------------------------------------------- /man/dataframe__is_duplicated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__is_duplicated.Rd -------------------------------------------------------------------------------- /man/dataframe__is_empty.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__is_empty.Rd -------------------------------------------------------------------------------- /man/dataframe__is_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__is_unique.Rd -------------------------------------------------------------------------------- /man/dataframe__join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__join.Rd -------------------------------------------------------------------------------- /man/dataframe__join_asof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__join_asof.Rd -------------------------------------------------------------------------------- /man/dataframe__join_where.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__join_where.Rd -------------------------------------------------------------------------------- /man/dataframe__lazy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__lazy.Rd -------------------------------------------------------------------------------- /man/dataframe__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__max.Rd -------------------------------------------------------------------------------- /man/dataframe__max_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__max_horizontal.Rd -------------------------------------------------------------------------------- /man/dataframe__mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__mean.Rd -------------------------------------------------------------------------------- /man/dataframe__mean_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__mean_horizontal.Rd -------------------------------------------------------------------------------- /man/dataframe__median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__median.Rd -------------------------------------------------------------------------------- /man/dataframe__merge_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__merge_sorted.Rd -------------------------------------------------------------------------------- /man/dataframe__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__min.Rd -------------------------------------------------------------------------------- /man/dataframe__min_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__min_horizontal.Rd -------------------------------------------------------------------------------- /man/dataframe__n_chunks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__n_chunks.Rd -------------------------------------------------------------------------------- /man/dataframe__partition_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__partition_by.Rd -------------------------------------------------------------------------------- /man/dataframe__pivot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__pivot.Rd -------------------------------------------------------------------------------- /man/dataframe__quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__quantile.Rd -------------------------------------------------------------------------------- /man/dataframe__rechunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__rechunk.Rd -------------------------------------------------------------------------------- /man/dataframe__rename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__rename.Rd -------------------------------------------------------------------------------- /man/dataframe__reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__reverse.Rd -------------------------------------------------------------------------------- /man/dataframe__rolling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__rolling.Rd -------------------------------------------------------------------------------- /man/dataframe__sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__sample.Rd -------------------------------------------------------------------------------- /man/dataframe__select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__select.Rd -------------------------------------------------------------------------------- /man/dataframe__select_seq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__select_seq.Rd -------------------------------------------------------------------------------- /man/dataframe__serialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__serialize.Rd -------------------------------------------------------------------------------- /man/dataframe__set_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__set_sorted.Rd -------------------------------------------------------------------------------- /man/dataframe__shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__shift.Rd -------------------------------------------------------------------------------- /man/dataframe__slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__slice.Rd -------------------------------------------------------------------------------- /man/dataframe__sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__sort.Rd -------------------------------------------------------------------------------- /man/dataframe__std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__std.Rd -------------------------------------------------------------------------------- /man/dataframe__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__sum.Rd -------------------------------------------------------------------------------- /man/dataframe__sum_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__sum_horizontal.Rd -------------------------------------------------------------------------------- /man/dataframe__tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__tail.Rd -------------------------------------------------------------------------------- /man/dataframe__to_dummies.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__to_dummies.Rd -------------------------------------------------------------------------------- /man/dataframe__to_series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__to_series.Rd -------------------------------------------------------------------------------- /man/dataframe__to_struct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__to_struct.Rd -------------------------------------------------------------------------------- /man/dataframe__top_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__top_k.Rd -------------------------------------------------------------------------------- /man/dataframe__transpose.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__transpose.Rd -------------------------------------------------------------------------------- /man/dataframe__unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__unique.Rd -------------------------------------------------------------------------------- /man/dataframe__unnest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__unnest.Rd -------------------------------------------------------------------------------- /man/dataframe__unpivot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__unpivot.Rd -------------------------------------------------------------------------------- /man/dataframe__unstack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__unstack.Rd -------------------------------------------------------------------------------- /man/dataframe__var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__var.Rd -------------------------------------------------------------------------------- /man/dataframe__with_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__with_columns.Rd -------------------------------------------------------------------------------- /man/dataframe__with_columns_seq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__with_columns_seq.Rd -------------------------------------------------------------------------------- /man/dataframe__with_row_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__with_row_index.Rd -------------------------------------------------------------------------------- /man/dataframe__write_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__write_csv.Rd -------------------------------------------------------------------------------- /man/dataframe__write_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__write_ipc.Rd -------------------------------------------------------------------------------- /man/dataframe__write_json.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__write_json.Rd -------------------------------------------------------------------------------- /man/dataframe__write_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__write_ndjson.Rd -------------------------------------------------------------------------------- /man/dataframe__write_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/dataframe__write_parquet.Rd -------------------------------------------------------------------------------- /man/expr__abs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__abs.Rd -------------------------------------------------------------------------------- /man/expr__add.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__add.Rd -------------------------------------------------------------------------------- /man/expr__agg_groups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__agg_groups.Rd -------------------------------------------------------------------------------- /man/expr__alias.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__alias.Rd -------------------------------------------------------------------------------- /man/expr__all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__all.Rd -------------------------------------------------------------------------------- /man/expr__and.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__and.Rd -------------------------------------------------------------------------------- /man/expr__any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__any.Rd -------------------------------------------------------------------------------- /man/expr__append.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__append.Rd -------------------------------------------------------------------------------- /man/expr__approx_n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__approx_n_unique.Rd -------------------------------------------------------------------------------- /man/expr__arccos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arccos.Rd -------------------------------------------------------------------------------- /man/expr__arccosh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arccosh.Rd -------------------------------------------------------------------------------- /man/expr__arcsin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arcsin.Rd -------------------------------------------------------------------------------- /man/expr__arcsinh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arcsinh.Rd -------------------------------------------------------------------------------- /man/expr__arctan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arctan.Rd -------------------------------------------------------------------------------- /man/expr__arctanh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arctanh.Rd -------------------------------------------------------------------------------- /man/expr__arg_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arg_max.Rd -------------------------------------------------------------------------------- /man/expr__arg_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arg_min.Rd -------------------------------------------------------------------------------- /man/expr__arg_sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arg_sort.Rd -------------------------------------------------------------------------------- /man/expr__arg_true.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arg_true.Rd -------------------------------------------------------------------------------- /man/expr__arg_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__arg_unique.Rd -------------------------------------------------------------------------------- /man/expr__backward_fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__backward_fill.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_and.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_and.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_count_ones.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_count_ones.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_count_zeros.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_count_zeros.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_leading_ones.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_leading_ones.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_leading_zeros.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_leading_zeros.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_or.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_or.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_trailing_ones.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_trailing_ones.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_trailing_zeros.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_trailing_zeros.Rd -------------------------------------------------------------------------------- /man/expr__bitwise_xor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bitwise_xor.Rd -------------------------------------------------------------------------------- /man/expr__bottom_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bottom_k.Rd -------------------------------------------------------------------------------- /man/expr__bottom_k_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__bottom_k_by.Rd -------------------------------------------------------------------------------- /man/expr__cast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cast.Rd -------------------------------------------------------------------------------- /man/expr__cbrt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cbrt.Rd -------------------------------------------------------------------------------- /man/expr__ceil.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ceil.Rd -------------------------------------------------------------------------------- /man/expr__clip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__clip.Rd -------------------------------------------------------------------------------- /man/expr__cos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cos.Rd -------------------------------------------------------------------------------- /man/expr__cosh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cosh.Rd -------------------------------------------------------------------------------- /man/expr__cot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cot.Rd -------------------------------------------------------------------------------- /man/expr__count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__count.Rd -------------------------------------------------------------------------------- /man/expr__cum_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cum_count.Rd -------------------------------------------------------------------------------- /man/expr__cum_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cum_max.Rd -------------------------------------------------------------------------------- /man/expr__cum_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cum_min.Rd -------------------------------------------------------------------------------- /man/expr__cum_prod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cum_prod.Rd -------------------------------------------------------------------------------- /man/expr__cum_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cum_sum.Rd -------------------------------------------------------------------------------- /man/expr__cumulative_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cumulative_eval.Rd -------------------------------------------------------------------------------- /man/expr__cut.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__cut.Rd -------------------------------------------------------------------------------- /man/expr__degrees.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__degrees.Rd -------------------------------------------------------------------------------- /man/expr__diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__diff.Rd -------------------------------------------------------------------------------- /man/expr__dot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__dot.Rd -------------------------------------------------------------------------------- /man/expr__drop_nans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__drop_nans.Rd -------------------------------------------------------------------------------- /man/expr__drop_nulls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__drop_nulls.Rd -------------------------------------------------------------------------------- /man/expr__entropy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__entropy.Rd -------------------------------------------------------------------------------- /man/expr__eq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__eq.Rd -------------------------------------------------------------------------------- /man/expr__eq_missing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__eq_missing.Rd -------------------------------------------------------------------------------- /man/expr__ewm_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ewm_mean.Rd -------------------------------------------------------------------------------- /man/expr__ewm_mean_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ewm_mean_by.Rd -------------------------------------------------------------------------------- /man/expr__ewm_std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ewm_std.Rd -------------------------------------------------------------------------------- /man/expr__ewm_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ewm_var.Rd -------------------------------------------------------------------------------- /man/expr__exclude.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__exclude.Rd -------------------------------------------------------------------------------- /man/expr__exp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__exp.Rd -------------------------------------------------------------------------------- /man/expr__explode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__explode.Rd -------------------------------------------------------------------------------- /man/expr__extend_constant.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__extend_constant.Rd -------------------------------------------------------------------------------- /man/expr__fill_nan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__fill_nan.Rd -------------------------------------------------------------------------------- /man/expr__fill_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__fill_null.Rd -------------------------------------------------------------------------------- /man/expr__filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__filter.Rd -------------------------------------------------------------------------------- /man/expr__first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__first.Rd -------------------------------------------------------------------------------- /man/expr__flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__flatten.Rd -------------------------------------------------------------------------------- /man/expr__floor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__floor.Rd -------------------------------------------------------------------------------- /man/expr__floor_div.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__floor_div.Rd -------------------------------------------------------------------------------- /man/expr__forward_fill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__forward_fill.Rd -------------------------------------------------------------------------------- /man/expr__gather.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__gather.Rd -------------------------------------------------------------------------------- /man/expr__gather_every.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__gather_every.Rd -------------------------------------------------------------------------------- /man/expr__ge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ge.Rd -------------------------------------------------------------------------------- /man/expr__get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__get.Rd -------------------------------------------------------------------------------- /man/expr__gt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__gt.Rd -------------------------------------------------------------------------------- /man/expr__has_nulls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__has_nulls.Rd -------------------------------------------------------------------------------- /man/expr__hash.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__hash.Rd -------------------------------------------------------------------------------- /man/expr__head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__head.Rd -------------------------------------------------------------------------------- /man/expr__hist.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__hist.Rd -------------------------------------------------------------------------------- /man/expr__implode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__implode.Rd -------------------------------------------------------------------------------- /man/expr__interpolate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__interpolate.Rd -------------------------------------------------------------------------------- /man/expr__interpolate_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__interpolate_by.Rd -------------------------------------------------------------------------------- /man/expr__is_between.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_between.Rd -------------------------------------------------------------------------------- /man/expr__is_duplicated.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_duplicated.Rd -------------------------------------------------------------------------------- /man/expr__is_finite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_finite.Rd -------------------------------------------------------------------------------- /man/expr__is_first_distinct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_first_distinct.Rd -------------------------------------------------------------------------------- /man/expr__is_in.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_in.Rd -------------------------------------------------------------------------------- /man/expr__is_infinite.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_infinite.Rd -------------------------------------------------------------------------------- /man/expr__is_last_distinct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_last_distinct.Rd -------------------------------------------------------------------------------- /man/expr__is_nan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_nan.Rd -------------------------------------------------------------------------------- /man/expr__is_not_nan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_not_nan.Rd -------------------------------------------------------------------------------- /man/expr__is_not_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_not_null.Rd -------------------------------------------------------------------------------- /man/expr__is_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_null.Rd -------------------------------------------------------------------------------- /man/expr__is_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__is_unique.Rd -------------------------------------------------------------------------------- /man/expr__kurtosis.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__kurtosis.Rd -------------------------------------------------------------------------------- /man/expr__last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__last.Rd -------------------------------------------------------------------------------- /man/expr__le.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__le.Rd -------------------------------------------------------------------------------- /man/expr__len.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__len.Rd -------------------------------------------------------------------------------- /man/expr__limit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__limit.Rd -------------------------------------------------------------------------------- /man/expr__log.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__log.Rd -------------------------------------------------------------------------------- /man/expr__log10.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__log10.Rd -------------------------------------------------------------------------------- /man/expr__log1p.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__log1p.Rd -------------------------------------------------------------------------------- /man/expr__lower_bound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__lower_bound.Rd -------------------------------------------------------------------------------- /man/expr__lt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__lt.Rd -------------------------------------------------------------------------------- /man/expr__map_batches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__map_batches.Rd -------------------------------------------------------------------------------- /man/expr__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__max.Rd -------------------------------------------------------------------------------- /man/expr__mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__mean.Rd -------------------------------------------------------------------------------- /man/expr__median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__median.Rd -------------------------------------------------------------------------------- /man/expr__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__min.Rd -------------------------------------------------------------------------------- /man/expr__mod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__mod.Rd -------------------------------------------------------------------------------- /man/expr__mode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__mode.Rd -------------------------------------------------------------------------------- /man/expr__mul.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__mul.Rd -------------------------------------------------------------------------------- /man/expr__n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__n_unique.Rd -------------------------------------------------------------------------------- /man/expr__nan_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__nan_max.Rd -------------------------------------------------------------------------------- /man/expr__nan_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__nan_min.Rd -------------------------------------------------------------------------------- /man/expr__ne.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ne.Rd -------------------------------------------------------------------------------- /man/expr__ne_missing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__ne_missing.Rd -------------------------------------------------------------------------------- /man/expr__not.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__not.Rd -------------------------------------------------------------------------------- /man/expr__null_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__null_count.Rd -------------------------------------------------------------------------------- /man/expr__or.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__or.Rd -------------------------------------------------------------------------------- /man/expr__over.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__over.Rd -------------------------------------------------------------------------------- /man/expr__pct_change.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__pct_change.Rd -------------------------------------------------------------------------------- /man/expr__peak_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__peak_max.Rd -------------------------------------------------------------------------------- /man/expr__peak_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__peak_min.Rd -------------------------------------------------------------------------------- /man/expr__pow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__pow.Rd -------------------------------------------------------------------------------- /man/expr__product.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__product.Rd -------------------------------------------------------------------------------- /man/expr__qcut.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__qcut.Rd -------------------------------------------------------------------------------- /man/expr__quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__quantile.Rd -------------------------------------------------------------------------------- /man/expr__radians.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__radians.Rd -------------------------------------------------------------------------------- /man/expr__rank.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rank.Rd -------------------------------------------------------------------------------- /man/expr__rechunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rechunk.Rd -------------------------------------------------------------------------------- /man/expr__reinterpret.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__reinterpret.Rd -------------------------------------------------------------------------------- /man/expr__repeat_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__repeat_by.Rd -------------------------------------------------------------------------------- /man/expr__replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__replace.Rd -------------------------------------------------------------------------------- /man/expr__replace_strict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__replace_strict.Rd -------------------------------------------------------------------------------- /man/expr__reshape.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__reshape.Rd -------------------------------------------------------------------------------- /man/expr__reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__reverse.Rd -------------------------------------------------------------------------------- /man/expr__rle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rle.Rd -------------------------------------------------------------------------------- /man/expr__rle_id.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rle_id.Rd -------------------------------------------------------------------------------- /man/expr__rolling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling.Rd -------------------------------------------------------------------------------- /man/expr__rolling_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_max.Rd -------------------------------------------------------------------------------- /man/expr__rolling_max_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_max_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_mean.Rd -------------------------------------------------------------------------------- /man/expr__rolling_mean_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_mean_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_median.Rd -------------------------------------------------------------------------------- /man/expr__rolling_median_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_median_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_min.Rd -------------------------------------------------------------------------------- /man/expr__rolling_min_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_min_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_quantile.Rd -------------------------------------------------------------------------------- /man/expr__rolling_quantile_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_quantile_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_skew.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_skew.Rd -------------------------------------------------------------------------------- /man/expr__rolling_std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_std.Rd -------------------------------------------------------------------------------- /man/expr__rolling_std_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_std_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_sum.Rd -------------------------------------------------------------------------------- /man/expr__rolling_sum_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_sum_by.Rd -------------------------------------------------------------------------------- /man/expr__rolling_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_var.Rd -------------------------------------------------------------------------------- /man/expr__rolling_var_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__rolling_var_by.Rd -------------------------------------------------------------------------------- /man/expr__round.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__round.Rd -------------------------------------------------------------------------------- /man/expr__round_sig_figs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__round_sig_figs.Rd -------------------------------------------------------------------------------- /man/expr__sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sample.Rd -------------------------------------------------------------------------------- /man/expr__search_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__search_sorted.Rd -------------------------------------------------------------------------------- /man/expr__set_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__set_sorted.Rd -------------------------------------------------------------------------------- /man/expr__shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__shift.Rd -------------------------------------------------------------------------------- /man/expr__shrink_dtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__shrink_dtype.Rd -------------------------------------------------------------------------------- /man/expr__shuffle.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__shuffle.Rd -------------------------------------------------------------------------------- /man/expr__sign.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sign.Rd -------------------------------------------------------------------------------- /man/expr__sin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sin.Rd -------------------------------------------------------------------------------- /man/expr__sinh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sinh.Rd -------------------------------------------------------------------------------- /man/expr__skew.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__skew.Rd -------------------------------------------------------------------------------- /man/expr__slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__slice.Rd -------------------------------------------------------------------------------- /man/expr__sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sort.Rd -------------------------------------------------------------------------------- /man/expr__sort_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sort_by.Rd -------------------------------------------------------------------------------- /man/expr__sqrt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sqrt.Rd -------------------------------------------------------------------------------- /man/expr__std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__std.Rd -------------------------------------------------------------------------------- /man/expr__sub.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sub.Rd -------------------------------------------------------------------------------- /man/expr__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__sum.Rd -------------------------------------------------------------------------------- /man/expr__tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__tail.Rd -------------------------------------------------------------------------------- /man/expr__tan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__tan.Rd -------------------------------------------------------------------------------- /man/expr__tanh.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__tanh.Rd -------------------------------------------------------------------------------- /man/expr__to_physical.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__to_physical.Rd -------------------------------------------------------------------------------- /man/expr__top_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__top_k.Rd -------------------------------------------------------------------------------- /man/expr__top_k_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__top_k_by.Rd -------------------------------------------------------------------------------- /man/expr__true_div.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__true_div.Rd -------------------------------------------------------------------------------- /man/expr__unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__unique.Rd -------------------------------------------------------------------------------- /man/expr__unique_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__unique_counts.Rd -------------------------------------------------------------------------------- /man/expr__upper_bound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__upper_bound.Rd -------------------------------------------------------------------------------- /man/expr__value_counts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__value_counts.Rd -------------------------------------------------------------------------------- /man/expr__var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__var.Rd -------------------------------------------------------------------------------- /man/expr__xor.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr__xor.Rd -------------------------------------------------------------------------------- /man/expr_arr_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_all.Rd -------------------------------------------------------------------------------- /man/expr_arr_any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_any.Rd -------------------------------------------------------------------------------- /man/expr_arr_arg_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_arg_max.Rd -------------------------------------------------------------------------------- /man/expr_arr_arg_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_arg_min.Rd -------------------------------------------------------------------------------- /man/expr_arr_contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_contains.Rd -------------------------------------------------------------------------------- /man/expr_arr_count_matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_count_matches.Rd -------------------------------------------------------------------------------- /man/expr_arr_explode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_explode.Rd -------------------------------------------------------------------------------- /man/expr_arr_first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_first.Rd -------------------------------------------------------------------------------- /man/expr_arr_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_get.Rd -------------------------------------------------------------------------------- /man/expr_arr_join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_join.Rd -------------------------------------------------------------------------------- /man/expr_arr_last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_last.Rd -------------------------------------------------------------------------------- /man/expr_arr_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_max.Rd -------------------------------------------------------------------------------- /man/expr_arr_median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_median.Rd -------------------------------------------------------------------------------- /man/expr_arr_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_min.Rd -------------------------------------------------------------------------------- /man/expr_arr_n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_n_unique.Rd -------------------------------------------------------------------------------- /man/expr_arr_reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_reverse.Rd -------------------------------------------------------------------------------- /man/expr_arr_shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_shift.Rd -------------------------------------------------------------------------------- /man/expr_arr_sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_sort.Rd -------------------------------------------------------------------------------- /man/expr_arr_std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_std.Rd -------------------------------------------------------------------------------- /man/expr_arr_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_sum.Rd -------------------------------------------------------------------------------- /man/expr_arr_to_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_to_list.Rd -------------------------------------------------------------------------------- /man/expr_arr_to_struct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_to_struct.Rd -------------------------------------------------------------------------------- /man/expr_arr_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_unique.Rd -------------------------------------------------------------------------------- /man/expr_arr_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_arr_var.Rd -------------------------------------------------------------------------------- /man/expr_bin_contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_contains.Rd -------------------------------------------------------------------------------- /man/expr_bin_decode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_decode.Rd -------------------------------------------------------------------------------- /man/expr_bin_encode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_encode.Rd -------------------------------------------------------------------------------- /man/expr_bin_ends_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_ends_with.Rd -------------------------------------------------------------------------------- /man/expr_bin_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_size.Rd -------------------------------------------------------------------------------- /man/expr_bin_starts_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_bin_starts_with.Rd -------------------------------------------------------------------------------- /man/expr_cat_get_categories.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_cat_get_categories.Rd -------------------------------------------------------------------------------- /man/expr_dt_add_business_days.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_add_business_days.Rd -------------------------------------------------------------------------------- /man/expr_dt_base_utc_offset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_base_utc_offset.Rd -------------------------------------------------------------------------------- /man/expr_dt_cast_time_unit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_cast_time_unit.Rd -------------------------------------------------------------------------------- /man/expr_dt_century.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_century.Rd -------------------------------------------------------------------------------- /man/expr_dt_combine.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_combine.Rd -------------------------------------------------------------------------------- /man/expr_dt_convert_time_zone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_convert_time_zone.Rd -------------------------------------------------------------------------------- /man/expr_dt_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_date.Rd -------------------------------------------------------------------------------- /man/expr_dt_day.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_day.Rd -------------------------------------------------------------------------------- /man/expr_dt_dst_offset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_dst_offset.Rd -------------------------------------------------------------------------------- /man/expr_dt_epoch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_epoch.Rd -------------------------------------------------------------------------------- /man/expr_dt_hour.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_hour.Rd -------------------------------------------------------------------------------- /man/expr_dt_is_leap_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_is_leap_year.Rd -------------------------------------------------------------------------------- /man/expr_dt_iso_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_iso_year.Rd -------------------------------------------------------------------------------- /man/expr_dt_microsecond.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_microsecond.Rd -------------------------------------------------------------------------------- /man/expr_dt_millisecond.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_millisecond.Rd -------------------------------------------------------------------------------- /man/expr_dt_minute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_minute.Rd -------------------------------------------------------------------------------- /man/expr_dt_month.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_month.Rd -------------------------------------------------------------------------------- /man/expr_dt_month_end.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_month_end.Rd -------------------------------------------------------------------------------- /man/expr_dt_month_start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_month_start.Rd -------------------------------------------------------------------------------- /man/expr_dt_nanosecond.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_nanosecond.Rd -------------------------------------------------------------------------------- /man/expr_dt_offset_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_offset_by.Rd -------------------------------------------------------------------------------- /man/expr_dt_ordinal_day.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_ordinal_day.Rd -------------------------------------------------------------------------------- /man/expr_dt_quarter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_quarter.Rd -------------------------------------------------------------------------------- /man/expr_dt_replace_time_zone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_replace_time_zone.Rd -------------------------------------------------------------------------------- /man/expr_dt_round.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_round.Rd -------------------------------------------------------------------------------- /man/expr_dt_second.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_second.Rd -------------------------------------------------------------------------------- /man/expr_dt_strftime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_strftime.Rd -------------------------------------------------------------------------------- /man/expr_dt_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_time.Rd -------------------------------------------------------------------------------- /man/expr_dt_timestamp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_timestamp.Rd -------------------------------------------------------------------------------- /man/expr_dt_to_string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_to_string.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_days.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_days.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_hours.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_hours.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_microseconds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_microseconds.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_milliseconds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_milliseconds.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_minutes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_minutes.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_nanoseconds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_nanoseconds.Rd -------------------------------------------------------------------------------- /man/expr_dt_total_seconds.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_total_seconds.Rd -------------------------------------------------------------------------------- /man/expr_dt_truncate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_truncate.Rd -------------------------------------------------------------------------------- /man/expr_dt_week.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_week.Rd -------------------------------------------------------------------------------- /man/expr_dt_weekday.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_weekday.Rd -------------------------------------------------------------------------------- /man/expr_dt_with_time_unit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_with_time_unit.Rd -------------------------------------------------------------------------------- /man/expr_dt_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_dt_year.Rd -------------------------------------------------------------------------------- /man/expr_list_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_all.Rd -------------------------------------------------------------------------------- /man/expr_list_any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_any.Rd -------------------------------------------------------------------------------- /man/expr_list_arg_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_arg_max.Rd -------------------------------------------------------------------------------- /man/expr_list_arg_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_arg_min.Rd -------------------------------------------------------------------------------- /man/expr_list_concat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_concat.Rd -------------------------------------------------------------------------------- /man/expr_list_contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_contains.Rd -------------------------------------------------------------------------------- /man/expr_list_count_matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_count_matches.Rd -------------------------------------------------------------------------------- /man/expr_list_diff.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_diff.Rd -------------------------------------------------------------------------------- /man/expr_list_drop_nulls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_drop_nulls.Rd -------------------------------------------------------------------------------- /man/expr_list_eval.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_eval.Rd -------------------------------------------------------------------------------- /man/expr_list_explode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_explode.Rd -------------------------------------------------------------------------------- /man/expr_list_first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_first.Rd -------------------------------------------------------------------------------- /man/expr_list_gather.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_gather.Rd -------------------------------------------------------------------------------- /man/expr_list_gather_every.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_gather_every.Rd -------------------------------------------------------------------------------- /man/expr_list_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_get.Rd -------------------------------------------------------------------------------- /man/expr_list_head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_head.Rd -------------------------------------------------------------------------------- /man/expr_list_join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_join.Rd -------------------------------------------------------------------------------- /man/expr_list_last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_last.Rd -------------------------------------------------------------------------------- /man/expr_list_len.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_len.Rd -------------------------------------------------------------------------------- /man/expr_list_max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_max.Rd -------------------------------------------------------------------------------- /man/expr_list_mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_mean.Rd -------------------------------------------------------------------------------- /man/expr_list_median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_median.Rd -------------------------------------------------------------------------------- /man/expr_list_min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_min.Rd -------------------------------------------------------------------------------- /man/expr_list_n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_n_unique.Rd -------------------------------------------------------------------------------- /man/expr_list_reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_reverse.Rd -------------------------------------------------------------------------------- /man/expr_list_sample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_sample.Rd -------------------------------------------------------------------------------- /man/expr_list_set_difference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_set_difference.Rd -------------------------------------------------------------------------------- /man/expr_list_set_intersection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_set_intersection.Rd -------------------------------------------------------------------------------- /man/expr_list_set_union.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_set_union.Rd -------------------------------------------------------------------------------- /man/expr_list_shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_shift.Rd -------------------------------------------------------------------------------- /man/expr_list_slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_slice.Rd -------------------------------------------------------------------------------- /man/expr_list_sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_sort.Rd -------------------------------------------------------------------------------- /man/expr_list_std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_std.Rd -------------------------------------------------------------------------------- /man/expr_list_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_sum.Rd -------------------------------------------------------------------------------- /man/expr_list_tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_tail.Rd -------------------------------------------------------------------------------- /man/expr_list_to_array.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_to_array.Rd -------------------------------------------------------------------------------- /man/expr_list_to_struct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_to_struct.Rd -------------------------------------------------------------------------------- /man/expr_list_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_unique.Rd -------------------------------------------------------------------------------- /man/expr_list_var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_list_var.Rd -------------------------------------------------------------------------------- /man/expr_meta_eq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_eq.Rd -------------------------------------------------------------------------------- /man/expr_meta_is_column.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_is_column.Rd -------------------------------------------------------------------------------- /man/expr_meta_is_column_selection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_is_column_selection.Rd -------------------------------------------------------------------------------- /man/expr_meta_is_regex_projection.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_is_regex_projection.Rd -------------------------------------------------------------------------------- /man/expr_meta_ne.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_ne.Rd -------------------------------------------------------------------------------- /man/expr_meta_output_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_output_name.Rd -------------------------------------------------------------------------------- /man/expr_meta_pop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_pop.Rd -------------------------------------------------------------------------------- /man/expr_meta_root_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_root_names.Rd -------------------------------------------------------------------------------- /man/expr_meta_serialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_serialize.Rd -------------------------------------------------------------------------------- /man/expr_meta_tree_format.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_tree_format.Rd -------------------------------------------------------------------------------- /man/expr_meta_undo_aliases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_meta_undo_aliases.Rd -------------------------------------------------------------------------------- /man/expr_name_keep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_keep.Rd -------------------------------------------------------------------------------- /man/expr_name_prefix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_prefix.Rd -------------------------------------------------------------------------------- /man/expr_name_prefix_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_prefix_fields.Rd -------------------------------------------------------------------------------- /man/expr_name_suffix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_suffix.Rd -------------------------------------------------------------------------------- /man/expr_name_suffix_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_suffix_fields.Rd -------------------------------------------------------------------------------- /man/expr_name_to_lowercase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_to_lowercase.Rd -------------------------------------------------------------------------------- /man/expr_name_to_uppercase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_name_to_uppercase.Rd -------------------------------------------------------------------------------- /man/expr_str_contains.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_contains.Rd -------------------------------------------------------------------------------- /man/expr_str_contains_any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_contains_any.Rd -------------------------------------------------------------------------------- /man/expr_str_count_matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_count_matches.Rd -------------------------------------------------------------------------------- /man/expr_str_decode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_decode.Rd -------------------------------------------------------------------------------- /man/expr_str_encode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_encode.Rd -------------------------------------------------------------------------------- /man/expr_str_ends_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_ends_with.Rd -------------------------------------------------------------------------------- /man/expr_str_extract.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_extract.Rd -------------------------------------------------------------------------------- /man/expr_str_extract_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_extract_all.Rd -------------------------------------------------------------------------------- /man/expr_str_extract_groups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_extract_groups.Rd -------------------------------------------------------------------------------- /man/expr_str_extract_many.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_extract_many.Rd -------------------------------------------------------------------------------- /man/expr_str_find.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_find.Rd -------------------------------------------------------------------------------- /man/expr_str_head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_head.Rd -------------------------------------------------------------------------------- /man/expr_str_join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_join.Rd -------------------------------------------------------------------------------- /man/expr_str_json_decode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_json_decode.Rd -------------------------------------------------------------------------------- /man/expr_str_json_path_match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_json_path_match.Rd -------------------------------------------------------------------------------- /man/expr_str_len_bytes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_len_bytes.Rd -------------------------------------------------------------------------------- /man/expr_str_len_chars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_len_chars.Rd -------------------------------------------------------------------------------- /man/expr_str_pad_end.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_pad_end.Rd -------------------------------------------------------------------------------- /man/expr_str_pad_start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_pad_start.Rd -------------------------------------------------------------------------------- /man/expr_str_replace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_replace.Rd -------------------------------------------------------------------------------- /man/expr_str_replace_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_replace_all.Rd -------------------------------------------------------------------------------- /man/expr_str_replace_many.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_replace_many.Rd -------------------------------------------------------------------------------- /man/expr_str_reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_reverse.Rd -------------------------------------------------------------------------------- /man/expr_str_slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_slice.Rd -------------------------------------------------------------------------------- /man/expr_str_split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_split.Rd -------------------------------------------------------------------------------- /man/expr_str_split_exact.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_split_exact.Rd -------------------------------------------------------------------------------- /man/expr_str_splitn.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_splitn.Rd -------------------------------------------------------------------------------- /man/expr_str_starts_with.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_starts_with.Rd -------------------------------------------------------------------------------- /man/expr_str_strip_chars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strip_chars.Rd -------------------------------------------------------------------------------- /man/expr_str_strip_chars_end.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strip_chars_end.Rd -------------------------------------------------------------------------------- /man/expr_str_strip_chars_start.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strip_chars_start.Rd -------------------------------------------------------------------------------- /man/expr_str_strip_prefix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strip_prefix.Rd -------------------------------------------------------------------------------- /man/expr_str_strip_suffix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strip_suffix.Rd -------------------------------------------------------------------------------- /man/expr_str_strptime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_strptime.Rd -------------------------------------------------------------------------------- /man/expr_str_tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_tail.Rd -------------------------------------------------------------------------------- /man/expr_str_to_date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_date.Rd -------------------------------------------------------------------------------- /man/expr_str_to_datetime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_datetime.Rd -------------------------------------------------------------------------------- /man/expr_str_to_decimal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_decimal.Rd -------------------------------------------------------------------------------- /man/expr_str_to_integer.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_integer.Rd -------------------------------------------------------------------------------- /man/expr_str_to_lowercase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_lowercase.Rd -------------------------------------------------------------------------------- /man/expr_str_to_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_time.Rd -------------------------------------------------------------------------------- /man/expr_str_to_titlecase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_titlecase.Rd -------------------------------------------------------------------------------- /man/expr_str_to_uppercase.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_to_uppercase.Rd -------------------------------------------------------------------------------- /man/expr_str_zfill.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_str_zfill.Rd -------------------------------------------------------------------------------- /man/expr_struct_field.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_struct_field.Rd -------------------------------------------------------------------------------- /man/expr_struct_json_encode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_struct_json_encode.Rd -------------------------------------------------------------------------------- /man/expr_struct_rename_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_struct_rename_fields.Rd -------------------------------------------------------------------------------- /man/expr_struct_unnest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_struct_unnest.Rd -------------------------------------------------------------------------------- /man/expr_struct_with_fields.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/expr_struct_with_fields.Rd -------------------------------------------------------------------------------- /man/figures/lifecycle-archived.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-archived.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-defunct.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-defunct.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-deprecated.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-deprecated.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-maturing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-maturing.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-stable.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-stable.svg -------------------------------------------------------------------------------- /man/figures/lifecycle-superseded.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/figures/lifecycle-superseded.svg -------------------------------------------------------------------------------- /man/groupby__agg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__agg.Rd -------------------------------------------------------------------------------- /man/groupby__head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__head.Rd -------------------------------------------------------------------------------- /man/groupby__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__max.Rd -------------------------------------------------------------------------------- /man/groupby__mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__mean.Rd -------------------------------------------------------------------------------- /man/groupby__median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__median.Rd -------------------------------------------------------------------------------- /man/groupby__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__min.Rd -------------------------------------------------------------------------------- /man/groupby__n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__n_unique.Rd -------------------------------------------------------------------------------- /man/groupby__quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__quantile.Rd -------------------------------------------------------------------------------- /man/groupby__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__sum.Rd -------------------------------------------------------------------------------- /man/groupby__tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/groupby__tail.Rd -------------------------------------------------------------------------------- /man/infer_polars_dtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/infer_polars_dtype.Rd -------------------------------------------------------------------------------- /man/lazyframe__bottom_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__bottom_k.Rd -------------------------------------------------------------------------------- /man/lazyframe__cast.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__cast.Rd -------------------------------------------------------------------------------- /man/lazyframe__clear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__clear.Rd -------------------------------------------------------------------------------- /man/lazyframe__clone.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__clone.Rd -------------------------------------------------------------------------------- /man/lazyframe__collect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__collect.Rd -------------------------------------------------------------------------------- /man/lazyframe__collect_schema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__collect_schema.Rd -------------------------------------------------------------------------------- /man/lazyframe__count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__count.Rd -------------------------------------------------------------------------------- /man/lazyframe__describe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__describe.Rd -------------------------------------------------------------------------------- /man/lazyframe__drop.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__drop.Rd -------------------------------------------------------------------------------- /man/lazyframe__drop_nans.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__drop_nans.Rd -------------------------------------------------------------------------------- /man/lazyframe__drop_nulls.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__drop_nulls.Rd -------------------------------------------------------------------------------- /man/lazyframe__explain.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__explain.Rd -------------------------------------------------------------------------------- /man/lazyframe__explode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__explode.Rd -------------------------------------------------------------------------------- /man/lazyframe__fill_nan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__fill_nan.Rd -------------------------------------------------------------------------------- /man/lazyframe__fill_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__fill_null.Rd -------------------------------------------------------------------------------- /man/lazyframe__filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__filter.Rd -------------------------------------------------------------------------------- /man/lazyframe__first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__first.Rd -------------------------------------------------------------------------------- /man/lazyframe__gather_every.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__gather_every.Rd -------------------------------------------------------------------------------- /man/lazyframe__group_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__group_by.Rd -------------------------------------------------------------------------------- /man/lazyframe__group_by_dynamic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__group_by_dynamic.Rd -------------------------------------------------------------------------------- /man/lazyframe__head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__head.Rd -------------------------------------------------------------------------------- /man/lazyframe__interpolate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__interpolate.Rd -------------------------------------------------------------------------------- /man/lazyframe__join.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__join.Rd -------------------------------------------------------------------------------- /man/lazyframe__join_asof.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__join_asof.Rd -------------------------------------------------------------------------------- /man/lazyframe__join_where.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__join_where.Rd -------------------------------------------------------------------------------- /man/lazyframe__last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__last.Rd -------------------------------------------------------------------------------- /man/lazyframe__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__max.Rd -------------------------------------------------------------------------------- /man/lazyframe__mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__mean.Rd -------------------------------------------------------------------------------- /man/lazyframe__median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__median.Rd -------------------------------------------------------------------------------- /man/lazyframe__merge_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__merge_sorted.Rd -------------------------------------------------------------------------------- /man/lazyframe__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__min.Rd -------------------------------------------------------------------------------- /man/lazyframe__null_count.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__null_count.Rd -------------------------------------------------------------------------------- /man/lazyframe__profile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__profile.Rd -------------------------------------------------------------------------------- /man/lazyframe__quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__quantile.Rd -------------------------------------------------------------------------------- /man/lazyframe__rename.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__rename.Rd -------------------------------------------------------------------------------- /man/lazyframe__reverse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__reverse.Rd -------------------------------------------------------------------------------- /man/lazyframe__rolling.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__rolling.Rd -------------------------------------------------------------------------------- /man/lazyframe__select.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__select.Rd -------------------------------------------------------------------------------- /man/lazyframe__select_seq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__select_seq.Rd -------------------------------------------------------------------------------- /man/lazyframe__serialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__serialize.Rd -------------------------------------------------------------------------------- /man/lazyframe__set_sorted.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__set_sorted.Rd -------------------------------------------------------------------------------- /man/lazyframe__shift.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__shift.Rd -------------------------------------------------------------------------------- /man/lazyframe__sink_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sink_csv.Rd -------------------------------------------------------------------------------- /man/lazyframe__sink_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sink_ipc.Rd -------------------------------------------------------------------------------- /man/lazyframe__sink_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sink_ndjson.Rd -------------------------------------------------------------------------------- /man/lazyframe__sink_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sink_parquet.Rd -------------------------------------------------------------------------------- /man/lazyframe__slice.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__slice.Rd -------------------------------------------------------------------------------- /man/lazyframe__sort.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sort.Rd -------------------------------------------------------------------------------- /man/lazyframe__sql.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sql.Rd -------------------------------------------------------------------------------- /man/lazyframe__std.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__std.Rd -------------------------------------------------------------------------------- /man/lazyframe__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__sum.Rd -------------------------------------------------------------------------------- /man/lazyframe__tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__tail.Rd -------------------------------------------------------------------------------- /man/lazyframe__to_dot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__to_dot.Rd -------------------------------------------------------------------------------- /man/lazyframe__top_k.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__top_k.Rd -------------------------------------------------------------------------------- /man/lazyframe__unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__unique.Rd -------------------------------------------------------------------------------- /man/lazyframe__unnest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__unnest.Rd -------------------------------------------------------------------------------- /man/lazyframe__unpivot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__unpivot.Rd -------------------------------------------------------------------------------- /man/lazyframe__var.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__var.Rd -------------------------------------------------------------------------------- /man/lazyframe__with_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__with_columns.Rd -------------------------------------------------------------------------------- /man/lazyframe__with_columns_seq.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__with_columns_seq.Rd -------------------------------------------------------------------------------- /man/lazyframe__with_row_index.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazyframe__with_row_index.Rd -------------------------------------------------------------------------------- /man/lazygroupby__agg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__agg.Rd -------------------------------------------------------------------------------- /man/lazygroupby__head.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__head.Rd -------------------------------------------------------------------------------- /man/lazygroupby__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__max.Rd -------------------------------------------------------------------------------- /man/lazygroupby__mean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__mean.Rd -------------------------------------------------------------------------------- /man/lazygroupby__median.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__median.Rd -------------------------------------------------------------------------------- /man/lazygroupby__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__min.Rd -------------------------------------------------------------------------------- /man/lazygroupby__n_unique.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__n_unique.Rd -------------------------------------------------------------------------------- /man/lazygroupby__quantile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__quantile.Rd -------------------------------------------------------------------------------- /man/lazygroupby__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__sum.Rd -------------------------------------------------------------------------------- /man/lazygroupby__tail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/lazygroupby__tail.Rd -------------------------------------------------------------------------------- /man/pl.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl.Rd -------------------------------------------------------------------------------- /man/pl__DataFrame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__DataFrame.Rd -------------------------------------------------------------------------------- /man/pl__LazyFrame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__LazyFrame.Rd -------------------------------------------------------------------------------- /man/pl__SQLContext.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__SQLContext.Rd -------------------------------------------------------------------------------- /man/pl__Series.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__Series.Rd -------------------------------------------------------------------------------- /man/pl__all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__all.Rd -------------------------------------------------------------------------------- /man/pl__all_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__all_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__any.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__any.Rd -------------------------------------------------------------------------------- /man/pl__any_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__any_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__arg_sort_by.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__arg_sort_by.Rd -------------------------------------------------------------------------------- /man/pl__arg_where.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__arg_where.Rd -------------------------------------------------------------------------------- /man/pl__coalesce.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__coalesce.Rd -------------------------------------------------------------------------------- /man/pl__col.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__col.Rd -------------------------------------------------------------------------------- /man/pl__concat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__concat.Rd -------------------------------------------------------------------------------- /man/pl__concat_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__concat_list.Rd -------------------------------------------------------------------------------- /man/pl__concat_str.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__concat_str.Rd -------------------------------------------------------------------------------- /man/pl__cum_sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__cum_sum.Rd -------------------------------------------------------------------------------- /man/pl__date.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__date.Rd -------------------------------------------------------------------------------- /man/pl__date_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__date_range.Rd -------------------------------------------------------------------------------- /man/pl__date_ranges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__date_ranges.Rd -------------------------------------------------------------------------------- /man/pl__datetime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__datetime.Rd -------------------------------------------------------------------------------- /man/pl__datetime_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__datetime_range.Rd -------------------------------------------------------------------------------- /man/pl__datetime_ranges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__datetime_ranges.Rd -------------------------------------------------------------------------------- /man/pl__duration.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__duration.Rd -------------------------------------------------------------------------------- /man/pl__element.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__element.Rd -------------------------------------------------------------------------------- /man/pl__first.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__first.Rd -------------------------------------------------------------------------------- /man/pl__int_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__int_range.Rd -------------------------------------------------------------------------------- /man/pl__int_ranges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__int_ranges.Rd -------------------------------------------------------------------------------- /man/pl__last.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__last.Rd -------------------------------------------------------------------------------- /man/pl__len.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__len.Rd -------------------------------------------------------------------------------- /man/pl__lit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__lit.Rd -------------------------------------------------------------------------------- /man/pl__max.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__max.Rd -------------------------------------------------------------------------------- /man/pl__max_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__max_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__mean_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__mean_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__min.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__min.Rd -------------------------------------------------------------------------------- /man/pl__min_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__min_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__nth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__nth.Rd -------------------------------------------------------------------------------- /man/pl__read_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__read_csv.Rd -------------------------------------------------------------------------------- /man/pl__read_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__read_ipc.Rd -------------------------------------------------------------------------------- /man/pl__read_ipc_stream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__read_ipc_stream.Rd -------------------------------------------------------------------------------- /man/pl__read_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__read_ndjson.Rd -------------------------------------------------------------------------------- /man/pl__read_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__read_parquet.Rd -------------------------------------------------------------------------------- /man/pl__repeat_.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__repeat_.Rd -------------------------------------------------------------------------------- /man/pl__scan_csv.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__scan_csv.Rd -------------------------------------------------------------------------------- /man/pl__scan_ipc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__scan_ipc.Rd -------------------------------------------------------------------------------- /man/pl__scan_ndjson.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__scan_ndjson.Rd -------------------------------------------------------------------------------- /man/pl__scan_parquet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__scan_parquet.Rd -------------------------------------------------------------------------------- /man/pl__show_versions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__show_versions.Rd -------------------------------------------------------------------------------- /man/pl__struct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__struct.Rd -------------------------------------------------------------------------------- /man/pl__sum.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__sum.Rd -------------------------------------------------------------------------------- /man/pl__sum_horizontal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__sum_horizontal.Rd -------------------------------------------------------------------------------- /man/pl__thread_pool_size.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__thread_pool_size.Rd -------------------------------------------------------------------------------- /man/pl__time_range.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__time_range.Rd -------------------------------------------------------------------------------- /man/pl__time_ranges.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/pl__time_ranges.Rd -------------------------------------------------------------------------------- /man/polars-duration-string.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars-duration-string.Rd -------------------------------------------------------------------------------- /man/polars-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars-package.Rd -------------------------------------------------------------------------------- /man/polars_dtype.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars_dtype.Rd -------------------------------------------------------------------------------- /man/polars_expr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars_expr.Rd -------------------------------------------------------------------------------- /man/polars_info.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars_info.Rd -------------------------------------------------------------------------------- /man/polars_options.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars_options.Rd -------------------------------------------------------------------------------- /man/polars_partitioning_scheme.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/polars_partitioning_scheme.Rd -------------------------------------------------------------------------------- /man/s3-arithmetic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-arithmetic.Rd -------------------------------------------------------------------------------- /man/s3-as.data.frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-as.data.frame.Rd -------------------------------------------------------------------------------- /man/s3-as.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-as.list.Rd -------------------------------------------------------------------------------- /man/s3-as_nanoarrow_array_stream.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-as_nanoarrow_array_stream.Rd -------------------------------------------------------------------------------- /man/s3-as_tibble.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-as_tibble.Rd -------------------------------------------------------------------------------- /man/s3-knit_print.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/s3-knit_print.Rd -------------------------------------------------------------------------------- /man/series__alias.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__alias.Rd -------------------------------------------------------------------------------- /man/series__chunk_lengths.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__chunk_lengths.Rd -------------------------------------------------------------------------------- /man/series__n_chunks.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__n_chunks.Rd -------------------------------------------------------------------------------- /man/series__rechunk.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__rechunk.Rd -------------------------------------------------------------------------------- /man/series__serialize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__serialize.Rd -------------------------------------------------------------------------------- /man/series__to_frame.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__to_frame.Rd -------------------------------------------------------------------------------- /man/series__to_r_vector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series__to_r_vector.Rd -------------------------------------------------------------------------------- /man/series_struct_unnest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/series_struct_unnest.Rd -------------------------------------------------------------------------------- /man/sql_context__execute.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/sql_context__execute.Rd -------------------------------------------------------------------------------- /man/sql_context__register.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/sql_context__register.Rd -------------------------------------------------------------------------------- /man/sql_context__register_many.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/sql_context__register_many.Rd -------------------------------------------------------------------------------- /man/sql_context__tables.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/sql_context__tables.Rd -------------------------------------------------------------------------------- /man/sql_context__unregister.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/man/sql_context__unregister.Rd -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/Makevars.in -------------------------------------------------------------------------------- /src/Makevars.win.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/Makevars.win.in -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/init.c -------------------------------------------------------------------------------- /src/neopolars-win.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | R_init_polars 3 | -------------------------------------------------------------------------------- /src/rust/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/Cargo.lock -------------------------------------------------------------------------------- /src/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/Cargo.toml -------------------------------------------------------------------------------- /src/rust/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/api.h -------------------------------------------------------------------------------- /src/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/build.rs -------------------------------------------------------------------------------- /src/rust/rust-toolchain.toml: -------------------------------------------------------------------------------- 1 | [toolchain] 2 | channel = "nightly-2025-05-21" 3 | -------------------------------------------------------------------------------- /src/rust/src/allocator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/allocator.rs -------------------------------------------------------------------------------- /src/rust/src/conversion/base_date.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/conversion/base_date.rs -------------------------------------------------------------------------------- /src/rust/src/conversion/clock.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/conversion/clock.rs -------------------------------------------------------------------------------- /src/rust/src/conversion/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/conversion/mod.rs -------------------------------------------------------------------------------- /src/rust/src/dataframe/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/dataframe/general.rs -------------------------------------------------------------------------------- /src/rust/src/dataframe/io.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/dataframe/io.rs -------------------------------------------------------------------------------- /src/rust/src/dataframe/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/dataframe/mod.rs -------------------------------------------------------------------------------- /src/rust/src/dataframe/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/dataframe/serde.rs -------------------------------------------------------------------------------- /src/rust/src/datatypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/datatypes.rs -------------------------------------------------------------------------------- /src/rust/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/error.rs -------------------------------------------------------------------------------- /src/rust/src/expr/array.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/array.rs -------------------------------------------------------------------------------- /src/rust/src/expr/binary.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/binary.rs -------------------------------------------------------------------------------- /src/rust/src/expr/bitwise.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/bitwise.rs -------------------------------------------------------------------------------- /src/rust/src/expr/categorical.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/categorical.rs -------------------------------------------------------------------------------- /src/rust/src/expr/datetime.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/datetime.rs -------------------------------------------------------------------------------- /src/rust/src/expr/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/general.rs -------------------------------------------------------------------------------- /src/rust/src/expr/list.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/list.rs -------------------------------------------------------------------------------- /src/rust/src/expr/meta.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/meta.rs -------------------------------------------------------------------------------- /src/rust/src/expr/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/mod.rs -------------------------------------------------------------------------------- /src/rust/src/expr/name.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/name.rs -------------------------------------------------------------------------------- /src/rust/src/expr/rolling.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/rolling.rs -------------------------------------------------------------------------------- /src/rust/src/expr/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/serde.rs -------------------------------------------------------------------------------- /src/rust/src/expr/string.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/string.rs -------------------------------------------------------------------------------- /src/rust/src/expr/struct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/expr/struct.rs -------------------------------------------------------------------------------- /src/rust/src/functions/eager.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/functions/eager.rs -------------------------------------------------------------------------------- /src/rust/src/functions/lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/functions/lazy.rs -------------------------------------------------------------------------------- /src/rust/src/functions/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/functions/mod.rs -------------------------------------------------------------------------------- /src/rust/src/functions/range.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/functions/range.rs -------------------------------------------------------------------------------- /src/rust/src/functions/whenthen.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/functions/whenthen.rs -------------------------------------------------------------------------------- /src/rust/src/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/info.rs -------------------------------------------------------------------------------- /src/rust/src/lazyframe/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lazyframe/general.rs -------------------------------------------------------------------------------- /src/rust/src/lazyframe/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lazyframe/mod.rs -------------------------------------------------------------------------------- /src/rust/src/lazyframe/serde.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lazyframe/serde.rs -------------------------------------------------------------------------------- /src/rust/src/lazyframe/sink.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lazyframe/sink.rs -------------------------------------------------------------------------------- /src/rust/src/lazygroupby.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lazygroupby.rs -------------------------------------------------------------------------------- /src/rust/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/lib.rs -------------------------------------------------------------------------------- /src/rust/src/map/lazy.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/map/lazy.rs -------------------------------------------------------------------------------- /src/rust/src/map/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod lazy; 2 | -------------------------------------------------------------------------------- /src/rust/src/prelude.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/prelude.rs -------------------------------------------------------------------------------- /src/rust/src/r_threads.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/r_threads.rs -------------------------------------------------------------------------------- /src/rust/src/r_udf.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/r_udf.rs -------------------------------------------------------------------------------- /src/rust/src/series/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/arithmetic.rs -------------------------------------------------------------------------------- /src/rust/src/series/construction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/construction.rs -------------------------------------------------------------------------------- /src/rust/src/series/export.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/export.rs -------------------------------------------------------------------------------- /src/rust/src/series/general.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/general.rs -------------------------------------------------------------------------------- /src/rust/src/series/import.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/import.rs -------------------------------------------------------------------------------- /src/rust/src/series/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/series/mod.rs -------------------------------------------------------------------------------- /src/rust/src/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/src/rust/src/sql.rs -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-array.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-binary.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-expr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-expr.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-list.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-meta.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-string.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/expr-struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/expr-struct.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/output-csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/output-csv.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/output-ipc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/output-ipc.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/polars_info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/polars_info.md -------------------------------------------------------------------------------- /tests/testthat/_snaps/selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/_snaps/selectors.md -------------------------------------------------------------------------------- /tests/testthat/files/rmarkdown.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/files/rmarkdown.Rmd -------------------------------------------------------------------------------- /tests/testthat/helper-expections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/helper-expections.R -------------------------------------------------------------------------------- /tests/testthat/helper-rmarkdown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/helper-rmarkdown.R -------------------------------------------------------------------------------- /tests/testthat/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/setup.R -------------------------------------------------------------------------------- /tests/testthat/test-as_polars_df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-as_polars_df.R -------------------------------------------------------------------------------- /tests/testthat/test-as_polars_expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-as_polars_expr.R -------------------------------------------------------------------------------- /tests/testthat/test-as_polars_lf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-as_polars_lf.R -------------------------------------------------------------------------------- /tests/testthat/test-check_polars.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-check_polars.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-array.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-array.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-binary.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-binary.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-datetime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-datetime.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-expr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-expr.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-list.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-meta.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-meta.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-name.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-name.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-string.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-string.R -------------------------------------------------------------------------------- /tests/testthat/test-expr-struct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-expr-struct.R -------------------------------------------------------------------------------- /tests/testthat/test-functions-col.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-functions-col.R -------------------------------------------------------------------------------- /tests/testthat/test-functions-lazy.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-functions-lazy.R -------------------------------------------------------------------------------- /tests/testthat/test-functions-len.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-functions-len.R -------------------------------------------------------------------------------- /tests/testthat/test-meta-versions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-meta-versions.R -------------------------------------------------------------------------------- /tests/testthat/test-object-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-object-s3-base.R -------------------------------------------------------------------------------- /tests/testthat/test-output-csv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-output-csv.R -------------------------------------------------------------------------------- /tests/testthat/test-output-ipc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-output-ipc.R -------------------------------------------------------------------------------- /tests/testthat/test-output-json.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-output-json.R -------------------------------------------------------------------------------- /tests/testthat/test-output-parquet.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-output-parquet.R -------------------------------------------------------------------------------- /tests/testthat/test-polars_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-polars_info.R -------------------------------------------------------------------------------- /tests/testthat/test-polars_options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-polars_options.R -------------------------------------------------------------------------------- /tests/testthat/test-selectors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-selectors.R -------------------------------------------------------------------------------- /tests/testthat/test-series-list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-series-list.R -------------------------------------------------------------------------------- /tests/testthat/test-series-s3-base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-series-s3-base.R -------------------------------------------------------------------------------- /tests/testthat/test-series-series.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-series-series.R -------------------------------------------------------------------------------- /tests/testthat/test-series-struct.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-series-struct.R -------------------------------------------------------------------------------- /tests/testthat/test-sql-context.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tests/testthat/test-sql-context.R -------------------------------------------------------------------------------- /tools/lib-sums.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tools/lib-sums.tsv -------------------------------------------------------------------------------- /tools/prep-lib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/tools/prep-lib.R -------------------------------------------------------------------------------- /vignettes/custom-functions.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/vignettes/custom-functions.Rmd -------------------------------------------------------------------------------- /vignettes/install.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/vignettes/install.Rmd -------------------------------------------------------------------------------- /vignettes/performance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/vignettes/performance.Rmd -------------------------------------------------------------------------------- /vignettes/polars.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eitsupi/neo-r-polars/HEAD/vignettes/polars.Rmd --------------------------------------------------------------------------------