我正在尝试将此2008-01-01
转换为R中的1/1/2008
。我已尝试as.Date(abc,'%m/%d/%y')
但它不起作用......相反,我得到了一堆NA。
有什么想法吗?
答案 0 :(得分:2)
我假设 var isDescendant = function(desc, root) {
return !!desc && (desc === root || isDecendant(desc.parentNode, root));
};
var onremove = function(element, callback) {
var observer = new MutationObserver(function(mutations) {
_.forEach(mutations, function(mutation) {
_.forEach(mutation.removedNodes, function(removed) {
if (isDescendant(element, removed)) {
callback();
// allow garbage collection
observer.disconnect();
observer = undefined;
}
});
});
});
observer.observe(document, {
childList: true,
subtree: true
});
};
是一个字符串,并且您希望2008-01-01
也是一个字符串。
您可以使用1/1/2008
执行此操作,但可能有更好的解决方案。如果你真的不希望输出中没有零(而不是format()
),那么我认为01/01/2008
不会对你有所帮助。
format()
答案 1 :(得分:1)