?>
Voir la documentation de attribute
Fügt eine Tabelle hinzu, indem sie vom Client an den Server gesendet wird. Diese Aktion wird normalerweise nicht direkt aufgerufen, sondern über eine client-spezifische Funktion oder Methode (z. B. `add_table` in Python SWAT oder `as.cas.ctable` in R) genutzt, die den Datentransfer vom Client-Speicher zum CAS-Server kapselt. Sie ist grundlegend für die Erstellung von In-Memory-Tabellen aus lokalen Datenstrukturen wie Pandas DataFrames oder R Data Frames.
Ajoute les lignes d'une table source à la fin d'une table cible en mémoire. Cette action est particulièrement utile pour consolider des données provenant de différentes sources ou pour agréger des lots de données dans une table principale sans avoir à recréer entièrement la table.
The `append` action adds the rows from a source table to the end of a target table. It is a versatile tool for combining datasets within the CAS environment. The target table must be an in-memory table, while the source can be an in-memory table or a server-side file that has not been loaded. This action is particularly useful in data preparation workflows where data from multiple sources needs to be consolidated into a single table for analysis.