🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Memory Buffered File / Returning summary of a linear model from R-Script to RapidMiner

User: "MPB_"
New Altair Community Member
Updated by Jocelyn
Hi there,

I am trying to load / read the results of a R-Script in Rapidminer.

As a result of the code:


lm_mod_dyn <- lm(UNITS ~ PR ,data = data)

summary (lm_mod_dyn) 

RapidMiner gives back 
Memory buffered file

In this post it is said, that it is important to convert the results of a script to a dataframe, so I changed the script to:


{


lm_mod_dyn <- lm(UNITS ~ PR ,data = data)


NewData <- data.frame(summary (lm_mod_dyn) )

return(NewData)

}


Now I get a new Error :



Is there a solution for that?


Best regards and have a nice weekend


Find more posts tagged with