RODM_create_model(RODM)
RODM_create_model()所属R语言包:RODM
Create an ODM model
ODM模式
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Helper function to create an Oracle Data Mining model
辅助函数来创建一个Oracle数据挖掘模型
用法----------Usage----------
RODM_create_model(database,
model_name,
mining_function_type,
data_table_name,
case_id_column_name = "",
target_column_name = "",
retrieve_outputs_to_R = TRUE,
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.
ODM产品型号名称。
参数:mining_function_type
Mining function to use, e.g., "dbms_data_mining.classification"
挖掘功能使用,例如,“dbms_data_mining.classification”
参数:data_table_name
Database table/view containing the training dataset.
数据库表/视图包含训练数据集。
参数:case_id_column_name
Row unique case identifier in data_table_name.
行独特的标识符的data_table_name。
参数:target_column_name
Name of the target column (for supervised models).
目标列的名称(监督模式)。
参数:retrieve_outputs_to_R
Flag controlling if the output results are moved to the R environment.
船籍控制,如果输出的结果被移动到R环境。
参数:sql.log.file
File to append the log of all the SQL calls made by this function.
文件追加记录所有的SQL调用此功能。
Details
详细信息----------Details----------
This is the generic function for creating ODM models.
这是通用函数创建ODM模式。
It is not intended to be called directly by the user, but rather via the RODM_create_XX_model functions.
它的目的不是要由用户直接调用,但,而经由RODM_create_XX_model功能。
值----------Value----------
If retrieve_outputs_to_R is TRUE, returns a list with the following elements: <table summary="R valueblock"> <tr valign="top"><td>model.model_settings</td> <td> Table of settings used to build the model.</td></tr> <tr valign="top"><td>model.model_attributes</td> <td> Table of attributes used to build the model.</td></tr> </table>
如果retrieve_outputs_to_R是TRUE,返回一个列表,包含下列元素:<table summary="R valueblock"> <tr valign="top"> <TD> model.model_settings</ TD> <TD>表,用来设置建立模型。</ TD> </ TR> <tr valign="top"> <TD> model.model_attributes</ TD> <TD>表用于建立模型的属性。</ TD> </ TR> </ TABLE>
(作者)----------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 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
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|