A data frame is a tabular data structure. Usually, it contains data where rows are observations and columns are variables of various types. While "data frame" or "dataframe" is the term used for this concept in several languages (R, Apache Spark, deedle, Maple, the pandas library in Python and the DataFrames library in Julia), "table" is the term used in MATLAB and SQL.
Je calcule des valeurs uniques, par ligne. Cependant, je veux exclure la valeur 0, puis calculer les uniques col1 col2 col3 uniques
0 1 3 0 2
1 2 4 ...
J'ai un dataframe, où une colonne est une liste: colA colB
0 ID2 [A]
1 ID3 [B]
2 ID4 [A, B]
Je souhaite filtrer les lignes afin que seules les lignes qui contienn ...