Skip to content

Commit

Permalink
Fix typo for consistency with other examples
Browse files Browse the repository at this point in the history
  • Loading branch information
scw committed Oct 5, 2015
1 parent 20548d9 commit 3a394fa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions scripts/clustering.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# case study using mclust package
tool_exec <- function(in_params, out_prams)
tool_exec <- function(in_params, out_params)
{
if (!requireNamespace("sp", quietly = TRUE))
install.packages("sp")
Expand All @@ -10,10 +10,10 @@ tool_exec <- function(in_params, out_prams)

source_dataset = in_params[[1]]
#nclust = in_params[[2]]
out_table = out_prams[[1]]
out_ellipses = out_prams[[2]]
out_dens = out_prams[[3]]
out_sim = out_prams[[4]]
out_table = out_params[[1]]
out_ellipses = out_params[[2]]
out_dens = out_params[[3]]
out_sim = out_params[[4]]
### read data
arc.progress_label("Loading Dataset")
d <- arc.open(source_dataset)
Expand Down Expand Up @@ -155,4 +155,4 @@ foo <- function()
list("d:\\Data\\R-staff\\samps\\data.gdb\\spruce_trees", NULL),
list(NULL, NULL, NULL, "in_memory\\sim")
)
}
}

0 comments on commit 3a394fa

Please sign in to comment.