RODM_drop_model(RODM)
RODM_drop_model()所属R语言包:RODM
Drop an Oracle Data Mining model
删除Oracle数据挖掘模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function drops an Oracle Data Mining model in the Oracle database.
此功能下降的Oracle在Oracle数据库中的数据挖掘模型。
用法----------Usage----------
RODM_drop_model(database,
model_name,
sql.log.file = NULL)
参数----------Arguments----------
参数:database
Database ODBC channel identifier returned from a call to RODM_open_dbms_connection
数据库的ODBC通道标识符返回调用RODM_open_dbms_connection
参数:model_name
ODM Model name to be dropped.
ODM产品型号名称将被丢弃。
参数:sql.log.file
File to append the log of all the SQL calls made by this function.
文件追加记录所有的SQL调用此功能。
Details
详细信息----------Details----------
This function drops an Oracle Data Mining model in the Oracle database.
此功能下降的Oracle在Oracle数据库中的数据挖掘模型。
值----------Value----------
None.
无。
(作者)----------Author(s)----------
Pablo Tamayo <a href="mailto:pablo.tamayo@oracle.com">pablo.tamayo@oracle.com</a>
Ari Mozes <a href="mailto:ari.mozes@oracle.com">ari.mozes@oracle.com</a>
参考文献----------References----------
Oracle Data Mining Concepts 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28129/toc.htm
Oracle Data Mining Application Developer's Guide 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28131/toc.htm
Oracle Data Mining Administrator's Guide 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/datamine.111/b28130/toc.htm
Oracle Database PL/SQL Packages and Types Reference 11g Release 1 (11.1) http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28419/d_datmin.htm#ARPLS192
参见----------See Also----------
RODM_create_svm_model, RODM_create_kmeans_model, RODM_create_oc_model, RODM_create_ai_model, RODM_create_nb_model, RODM_create_glm_model, RODM_create_assoc_model,
RODM_create_svm_model,RODM_create_kmeans_model,RODM_create_oc_model,RODM_create_ai_model,RODM_create_nb_model,RODM_create_glm_model,RODM_create_assoc_model,
实例----------Examples----------
## Not run: [#不运行:]
DB <- RODM_open_dbms_connection(dsn="orcl11g", uid="rodm", pwd="rodm")
data(titanic3, package="PASWR")
db_titanic <- titanic3[,c("pclass", "survived", "sex", "age", "fare", "embarked")]
db_titanic[,"survived"] <- ifelse(db_titanic[,"survived"] == 1, "Yes", "No")
RODM_create_dbms_table(DB, "db_titanic") # Push the table to the database[按下表的数据库]
ai <- RODM_create_ai_model(
database = DB, # Database ODBC connection[数据库的ODBC连接]
data_table_name = "db_titanic", # Database table containing the input dataset[数据库表中输入数据集]
target_column_name = "survived", # Target column name in data_table_name[目标列名data_table_name]
model_name = "TITANIC_AI_MODEL") # Oracle Data Mining model name to create[Oracle数据挖掘模型的名称来创建]
# Drop the model that was just created[删除刚刚创建的模型,]
RODM_drop_model(DB, "TITANIC_AI_MODEL")
RODM_drop_dbms_table(DB, "db_titanic") # Drop the database table[删除数据库中的表]
RODM_close_dbms_connection(DB)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|