我想在R中不使用日期来获得时间序列。我用谷歌搜索但没有找到任何东西。我有一种方法可以做到这一点但是日期也是如此。
display:inline-block
我只是想知道是否存在产生时间序列的方法(没有使用日期)
答案 0 :(得分:1)
也许
substr(as.character(a),12,19)
OR
sapply(strsplit(as.character(a)," "), "[[", 2)
答案 1 :(得分:1)
chron的// Stuff gleaned from a form
var headers = {
'subject': e.data.subject,
'to': e.data.to,
'cc': e.data.cc,
'bcc': e.data.bcc,
'content-type': 'text/html; charset=utf-8'
};
// grab the email content
message = editor.getContent({format : 'raw'});
// construct the email
var email = '';
for(var header in headers)
email += header += ': ' + headers[header] + '\r\n';
email += '\r\n' + message;
// This is the bit - changing userId to anything other than 'me' (or the primary email address) kicks error
var sendRequest = gapi.client.gmail.users.messages.send({
'userId': 'me',
'resource': {
'raw': window.btoa(unescape(encodeURIComponent(email))).replace(/\+/g, '-').replace(/\//g, '_')
}
});
return sendRequest.execute(function(){});
}
类可以代表"times"
以下没有日期的时间:
24:00:00