s4

    1熱度

    1回答

    我正在製作一個表來比較使用r和latex的不同線性模型,通過包texreg(這是我第一次使用此包)。我發現這個軟件包非常有用,但我真的不明白爲什麼RMSE不包含在extract.lm方法中。 我已經修改了extract.lm方法在這條路上,包括它的選項: extract.lm<- function (model, include.rsquared = TRUE, include.adjrs = T

    0熱度

    1回答

    我想用一個通用的方法來定義我自己的S4類。 setClass("MultiplyObject", representation(the.factor = "numeric")) # Create a new instance of a class with the "new" method multobj <- new("MultiplyObject", the.factor = 3) #

    0熱度

    1回答

    Example of the problem - class.a has slots 1, 2, 3 and inherits from class c (4, and 5). The slots in class (1, 2, 3) are passed to function.b as variables. the output of function b is as class.c.

    2熱度

    1回答

    我不是S4的專家,但是在獲得一些在線幫助後開始工作。下面的代碼工作正常,現在我想設置α= 0.05的默認值,如果通話中缺少alpha。任何幫助將不勝感激。謝謝 setClass(Class = "Test", representation = representation( data = "data.frame", rep =

    3熱度

    1回答

    我使用R中的空間數據處理商業應用程序,並希望將ggplot2用於數據可視化。如果以https://github.com/hadley/ggplot2/wiki/plotting-polygon-shapefiles運行Hadley示例,則會發現要運行fortify命令,需要使用gpclibPermit()啓用gpclib工具。 我正在尋找一種有效的方法(不涉及手動入侵S4對象)執行與fortify

    7熱度

    1回答

    警告警告時產生的S4泛型函數的評價參數不能使用withCallingHandlers被抓()。 插圖withCallingHandlers的正常行爲: ### simple function that sends a warning send_warning <- function() { warning('send_warning') } send_warning() # Wa

    2熱度

    1回答

    要回答this question,我試圖從包raster看看功能extract的源代碼。 > library(raster) > extract standardGeneric for "extract" defined from package "raster" function (x, y, ...) standardGeneric("extract") <environment:

    4熱度

    1回答

    我現在有一流的施工人員在兩個方面的工作: 第一, setMethod("initialize", signature(.Object = "BondCashFlows"), function(.Object, x, y, ...){ do some things [email protected] = array[,m] } 第二, Bon

    0熱度

    1回答

    好吧,我花了一段時間來創建複製我的問題的代碼片段。這裏是。注意如果你運行命令new("FirstSet", id = "Input", multiplier = 2) 你會得到正確的答案。但是,如果您嘗試創建一個包含兩者的類,您將獲得以下內容:Error in .local(.Object, ...) : argument "id" is missing, with no default。這實際上

    1熱度

    1回答

    我們試圖在R中使用S4方法編程面向對象編程。在編程過程中,我們遇到了一些問題。顯然,S4方法的使用在互聯網上沒有很好的記錄,因此我們希望我們能夠在這裏得到我們一些問題的答案。 第一個問題: 我們試圖做一個矢量/陣列/列表..空S4對象。搜索互聯網給我們帶來以下問題在這個論壇: Create a vector of empty S4 objects 由於(下同)在回答上面的問題的一個描述,我們用下面