【发布时间】:2017-11-01 21:49:07
【问题描述】:
我编写了一个 R 包,其中包含一个使用 xts 对象的 S4 类。我的理解是我需要包含该行
setOldClass("xts")
stock.returns <- setClass(
Class = "stock.returns",
slots = c(xts_returns = "xts", timeframe = "timeframe", currency = "character"),
prototype = prototype(xts_returns = xts::xts(, order.by = c(lubridate::today())), timeframe = timeframe(), currency = "Local")
)
在我的类定义脚本的顶部。当我使用我的包创建我的对象时会出现问题。它有效,但我偶尔会多次重复此警告:
Found more than one class "xts" in cache; using the first, from namespace 'quantmod'
如何强制我的班级使用正确的 xts 包,而不是默认使用 quantmod 包?如果做不到这一点,我该如何至少停止警告?
我注意到 Hadley Wickham 和另一位在同一主题上的对话:http://r.789695.n4.nabble.com/setOldClass-quot-xts-quot-td4714332.html。它无处可去。
编辑:我的 NAMESPACE 文件是
# Generated by roxygen2: do not edit by hand
export("%>%")
export(EOMonth)
export(EOWeek)
export(VaR.cree)
export(date_to_sql_string)
export(df_to_xts)
export(ewma)
export(factor_model_maker)
export(flatten_xts)
export(get_USD_fx)
export(get_benchmark_index)
export(get_benchmark_xts_returns)
export(get_bond_index)
export(get_currency_index)
export(get_end_date)
export(get_financial_history)
export(get_financial_history_and_make_it_monthly)
export(get_frequency)
export(get_fund_performance)
export(get_fx_USD_history)
export(get_fx_cross)
export(get_index_snapshot)
export(get_metrics_history)
export(get_portfolio)
export(get_price_history)
export(get_shock_results)
export(get_shock_results.yield_version)
export(get_spc_xts_raw_total_returns)
export(get_spc_xts_returns)
export(get_start_date)
export(get_table_from_sql_CISMPRDSVR)
export(get_test_date)
export(get_ticker_xts_return_index)
export(get_ticker_xts_t_data_fs_eps)
export(get_watchlist)
export(get_yield_index)
export(market_capture_ratio)
export(previous_business_date_if_weekend)
export(price_plot)
export(rel_plot)
export(return_over_horizon)
export(rolling_correlation)
export(run_sql_in_CISMPRDSVR)
export(scenario_analysis)
export(show_regression)
export(single_experiment_summary)
export(stock.returns)
export(timeframe)
export(update_fund_performance_from_spreadsheet)
export(write.zoo)
export(xts_add_average_series)
export(xts_price_from_returns)
export(xts_returns)
exportClasses(timeframe)
我的描述文件是:
Package: cree
Title: CI Risk Engine, Eh?
Version: 0.0.0.9000
Authors@R: person("Mr", "lebelinoz", email = "lebelinoz@mycompany.com", role = c("aut", "cre"))
Description: All the in-house risk tools built in R.
Depends: R (>= 3.3.1)
License: Proprietary. Do not distribute outside My Company Limited.
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.0.1
Imports:
tidyverse,
lubridate,
quantmod,
xts,
zoo,
RODBC,
PerformanceAnalytics
Collate:
'Functions.R'
'Sql_Wrapper.R'
'StockPlot.R'
'VaR.cree.R'
'ewma.R'
'timeframe.R'
'stock.returns.R'
'factor_model_maker.R'
'get_benchmark_index.R'
'get_bond_index.R'
'get_currency_index.R'
'get_financial_history.R'
'get_fx_.R'
'get_metrics_history.R'
'get_portfolio.R'
'get_price_history.R'
'get_shock_results.R'
'get_shock_results.yield_version.R'
'get_yield_index.R'
'market_capture_ratio.R'
'return_over_horizon.R'
'scenario_analysis.R'
'show_regression.R'
'show_regression_between_xts.R'
'single_experiment_summary.R'
'update_fund_performance_from_spreadsheet.R'
【问题讨论】:
-
您是否尝试过使用
::运算符?例如:xts::避免冲突? -
@ar7 是的,我有,但它会导致编译错误。我添加了我的示例类来帮助澄清我的问题。
-
您的 NAMESPACE 和DESCRIPTION 文件也是相关的。你的包源代码公开吗?
-
@JoshuaUlrich 不,这是为了工作。
-
那么你需要提供你的NAMESPACE和DESCRIPTION文件。