I have an R package made by someone else. I want to add an additional function to it, how can I do that?
相关问题
- Keeping track of variable instances
- R - Quantstart: Testing Strategy on Multiple Equit
- Using predict with svyglm
- Reshape matrix by rows
- Extract P-Values from Dunnett Test into a Table by
相关文章
- How to convert summary output to a data frame?
- How to plot smoother curves in R
- Paste all possible diagonals of an n*n matrix or d
- ess-rdired: I get this error “no ESS process is as
- How to use doMC under Windows or alternative paral
- dyLimit for limited time in Dygraphs
- Saving state of Shiny app to be restored later
- How to insert pictures into each individual bar in
To change a function from a given package, you'll probably need
trace
function, it helps you edit and modify a functionF
it will open a small window for you to modify the code, but it won't change the actual source code permanently. you can copy and paste the code and create a new function with your own modifications.