init research

This commit is contained in:
2026-02-08 11:20:43 -10:00
commit bdf064f54d
3041 changed files with 1592200 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
[//]: # (title: Update / convert values)
Both [`update`](update.md) and [`convert`](convert.md) can be used to change column values in a `DataFrame`.
Difference between these operations:
* `convert` allows changing the type of the column, `update` doesn't
* `parse` is a special case of `convert` to convert String into different types automatically based on its contents
* `unfold` is a special case of `convert` to convert `DataColumn` of objects into `ColumnGroup` based on properties of objects.
* `update` allows filtering cells to be updated, `convert` doesn't
* [`fill`](fill.md) is a special case of `update` to replace missing values