base package used when arules is required. Specifying package doesn't work
up vote
5
down vote
favorite
I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write
function instead of the arules::write
function.
arules::write(x = dfSingle,
file = "dfSingleFile",
format = "single",
quote = TRUE,
sep = ",")
Gives the following error message:
Error in base::write(x, file, ...) :
unused arguments (format = "single", quote = TRUE)
When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:
library(arules)
Loading required package: Matrix
Attaching package: ‘arules’
The following objects are masked from ‘package:base’: abbreviate, write
I've already tried installing the arules
package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).
Any help on this?
r arules
add a comment |
up vote
5
down vote
favorite
I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write
function instead of the arules::write
function.
arules::write(x = dfSingle,
file = "dfSingleFile",
format = "single",
quote = TRUE,
sep = ",")
Gives the following error message:
Error in base::write(x, file, ...) :
unused arguments (format = "single", quote = TRUE)
When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:
library(arules)
Loading required package: Matrix
Attaching package: ‘arules’
The following objects are masked from ‘package:base’: abbreviate, write
I've already tried installing the arules
package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).
Any help on this?
r arules
add a comment |
up vote
5
down vote
favorite
up vote
5
down vote
favorite
I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write
function instead of the arules::write
function.
arules::write(x = dfSingle,
file = "dfSingleFile",
format = "single",
quote = TRUE,
sep = ",")
Gives the following error message:
Error in base::write(x, file, ...) :
unused arguments (format = "single", quote = TRUE)
When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:
library(arules)
Loading required package: Matrix
Attaching package: ‘arules’
The following objects are masked from ‘package:base’: abbreviate, write
I've already tried installing the arules
package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).
Any help on this?
r arules
I'm trying to write a single format file within the arules package, to load it in as a transaction afterwards for association rule mining. I can't use this function, since R keeps using the base::write
function instead of the arules::write
function.
arules::write(x = dfSingle,
file = "dfSingleFile",
format = "single",
quote = TRUE,
sep = ",")
Gives the following error message:
Error in base::write(x, file, ...) :
unused arguments (format = "single", quote = TRUE)
When I loaded the arules package at the beginning of the session, it did say it masked the write function from base:
library(arules)
Loading required package: Matrix
Attaching package: ‘arules’
The following objects are masked from ‘package:base’: abbreviate, write
I've already tried installing the arules
package again. I'm using R 3.5.1 within Rstudio Server (1.1.414).
Any help on this?
r arules
r arules
edited Nov 7 at 8:11
zx8754
28.5k76394
28.5k76394
asked Nov 7 at 8:07
Cnidders
283
283
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
2
down vote
accepted
Check the class of dfSingle
, if it is not "transactions"
then it is passed to base::write
, see example:
library(arules)
data(Epub)
class(Epub)
# [1] "transactions"
# attr(,"package")
# [1] "arules"
arules::write(x = head(Epub),
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# no errors!
class(mtcars)
#[1] "data.frame"
arules::write(x = mtcars,
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# Error in base::write(x, file, ...) :
# unused arguments (format = "single", quote = TRUE)
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
2
down vote
accepted
Check the class of dfSingle
, if it is not "transactions"
then it is passed to base::write
, see example:
library(arules)
data(Epub)
class(Epub)
# [1] "transactions"
# attr(,"package")
# [1] "arules"
arules::write(x = head(Epub),
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# no errors!
class(mtcars)
#[1] "data.frame"
arules::write(x = mtcars,
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# Error in base::write(x, file, ...) :
# unused arguments (format = "single", quote = TRUE)
add a comment |
up vote
2
down vote
accepted
Check the class of dfSingle
, if it is not "transactions"
then it is passed to base::write
, see example:
library(arules)
data(Epub)
class(Epub)
# [1] "transactions"
# attr(,"package")
# [1] "arules"
arules::write(x = head(Epub),
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# no errors!
class(mtcars)
#[1] "data.frame"
arules::write(x = mtcars,
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# Error in base::write(x, file, ...) :
# unused arguments (format = "single", quote = TRUE)
add a comment |
up vote
2
down vote
accepted
up vote
2
down vote
accepted
Check the class of dfSingle
, if it is not "transactions"
then it is passed to base::write
, see example:
library(arules)
data(Epub)
class(Epub)
# [1] "transactions"
# attr(,"package")
# [1] "arules"
arules::write(x = head(Epub),
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# no errors!
class(mtcars)
#[1] "data.frame"
arules::write(x = mtcars,
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# Error in base::write(x, file, ...) :
# unused arguments (format = "single", quote = TRUE)
Check the class of dfSingle
, if it is not "transactions"
then it is passed to base::write
, see example:
library(arules)
data(Epub)
class(Epub)
# [1] "transactions"
# attr(,"package")
# [1] "arules"
arules::write(x = head(Epub),
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# no errors!
class(mtcars)
#[1] "data.frame"
arules::write(x = mtcars,
file = "test",
format = "single",
quote = TRUE,
sep = ",")
# Error in base::write(x, file, ...) :
# unused arguments (format = "single", quote = TRUE)
answered Nov 7 at 8:28
zx8754
28.5k76394
28.5k76394
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53185553%2fbase-package-used-when-arules-is-required-specifying-package-doesnt-work%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown