Search
 
SCRIPT & CODE EXAMPLE
 

R

store list in data.frame R

# Add a list to data.frame in single 'element' slot
# 1) Make data.frame from named list (names are optional)
rowA <- as.list(c(1,2,3,4,5))
names(rowA) <- c("A", "B", "C", "D", "E")
data.df <- data.frame(rowA, stringsAsFactors=FALSE)
data.df
#   A B C D E
# 1 1 2 3 4 5
#
# 2) Make lists you want to add to data frame:
numeric.X <- as.numeric(c(100,200,300,400))
# 3) Add List as new column to data.frame:
data.df$X <- list(numeric.X)
data.df
#   A B C D E                  X
# 1 1 2 3 4 5 100, 200, 300, 400
Comment

PREVIOUS NEXT
Code Example
R :: dotted y intercept line in ggplot 
R :: fcrit in r 
R :: ggplot - subset top 10 in a stack bar plot 
R :: changing base group in factor in r 
R :: R (R 3.5.2) sample 
R :: XLConnect 
R :: meaning of %% R 
R :: STR_REPLACE PACKAGE r 
R :: Iteration in R 
Rust :: rust get command line arguments 
Rust :: how to cahce clean cargo 
Rust :: rust get items in a list with index and value 
Rust :: rust case 
Rust :: rustlang string 
Rust :: rust•armanriazi•error•cannot be formatted using `{:?}` 
Rust :: optional arguments rust 
Rust :: how to make a sorting algorithim rust 
Rust :: string and str to string rust 
Rust :: rust enter number from keyboard / stdin 
Rust :: armanriazi•rust•generic•monomorphization 
Rust :: armanriazi•rust•closures•anonymous•lambda•loosely 
Rust :: rust How to use if let statement with conditions? 
Rust :: rust list comprehension 
Rust :: rust string split 
Lua :: roblox lua on player chatted 
Lua :: roblox how to tween part color 
Lua :: roblox brick color 
Lua :: lua while loops 
Lua :: lua clear table 
Lua :: lua class 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =