Questions et réponses pour le dataframe :

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.

0
votes
J'ai un dataframe pandas similaire à:"'a', 'b', 'c', 'd'" J'essaie de convertir toutes les lignes de cette colonne en une chaîne séparée par des virgules a ...

-1
votes
J'ai un dataframe au format long suivant: J'ai besoin de le convertir en une liste qui devrait ressembler à cec ...

1
votes
Je me demande pourquoi j'obtiens une Error: Problem with summarise() input wt_avg ci-dessous?library(tidyverse) CA_vacc <- read_csv('https://raw.githubusercontent.com/rnorouzi ...

0
votes
J'ai un dataframe pandas qui ressemble à ceci:pd.pivot_table(df, 'VALUE', 'COLUMN_NAME', ['YEAR1', 'YEAR2']) YEAR1 2013 2014 YEAR2 2014 2015 COLUMN_NAME ...