savemining: Load/save into a file the result of a fit (model) or mining...

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/model.R

Description

Load/save into a file the result of a fit (model) or mining functions.

Usage

1
savemining(mmm_mining, file, ascii = TRUE)

Arguments

mmm_mining

the list object that is returned by the mining function.

file

filename that should include an extension

ascii

if TRUE then ascii format is used to store the file (larger file size), else a binary format is used.

Details

Very simple functions that do what their names say. Additional usages are:
loadmining(file)
savemodel(MM_model,file,ascii=FALSE)
loadmodel(file)

Value

loadmining returns a mining mining list, while loadmodel returns a model object (from fit).

Author(s)

Paulo Cortez http://www3.dsi.uminho.pt/pcortez/

References

See fit.

See Also

fit, predict.fit, mining, mgraph, mmetric, savemining, Importance.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
### dontrun is used here to avoid the creation of a new file
### in the CRAN servers. The example should work fine:
## Not run: 
data(iris)
M=fit(Species~.,iris,model="rpart")
tempdirpath=tempdir()
filename=paste(tempdirpath,"/iris.model",sep="")
savemodel(M,filename) # saves to file
M=NULL # cleans M
M=loadmodel(filename) # load from file
print(M)

## End(Not run)

rminer documentation built on Aug. 28, 2020, 5:08 p.m.

Related to savemining in rminer...