search for: ntitle

Displaying 4 results from an estimated 4 matches for "ntitle".

Did you mean: title
2008 Jan 21
1
specin'' update_attributes! + Hash
...Mocks::MockExpectationError in ''InteractController (submit) - saving a form to use later should update costumer details using the form params'' Mock ''Instance_1039'' expected :update_attributes with ({:customer_details=>"--- !map:HashWithIndifferentAccess \\ntitle: Hola\\n"}) but received it with ({:customer_details=>"--- !map:HashWithIndifferentAccess \ntitle: Hola\n"}) C:/webapps/interact/branches/interact_new_features/app/controllers/interact_controller.rb:74:in `submit'' ./spec/controllers/interact_controller_spec.rb:200: script...
2018 Jan 26
0
Help in Plotting in "fArma" Package
...w the package author handled the plotting options in rsFit(). Actually it's an S4 method: showMethods("show", classes="fHURST", includeDefs=TRUE) Function: show (package methods) object="fHURST" function (object) { x = object doplot = TRUE cat("\nTitle:\n ", x at title, "\n", sep = "") cat("\nCall:\n ") cat(paste(deparse(x at call), sep = "\n", collapse = "\n"), "\n", sep = "") ... snipped IAnd not easily susceptible to throwing base graphics parameters a...
2018 Jan 26
2
Help in Plotting in "fArma" Package
What Dave said, plus here's a hint. Try this example (which uses base graphics): plot(1:5) plot(1:5, cex.lab=2) Then look at the help page for par help('par') or ?par to search for other graphics parameters (base graphics) you can use to change various things. Success will depend, as Dave indicated, on how the package author handled the plotting options in rsFit(). -Don --
2019 Jan 24
0
Possible setClassUnion Unloading Issue
...MRE of the problems it causes: ## the character and NULL basic types, and install it testpkg <- tempfile() dir.create(file.path(testpkg, 'R'), recursive=TRUE) writeLines('', file.path(testpkg, 'NAMESPACE')) description <- 'Package: testpkg\nTitle: Textpkg\nVersion: 0.1\n' writeLines(description, file.path(testpkg, 'DESCRIPTION')) code <- 'setClassUnion("chrOrNULL", c("character", "NULL"))' writeLines(code, file.path(testpkg, 'R', 'union.R')) install.pac...