1.生產以日迴圈的時間序列(3種方法)
#生成時間序列數
n<-36
t<-ts(1:n, frequency =1, start =as.date("2010-01-29"))
s <- as.date("2010-01-29")
dates<-seq(from=s, by=1, length.out=n)
t<-data.frame(dates,t)
head(t)
frequency=365
n<-367
t<-ts(1:n, frequency =365, start =c(2008,01))
date<-seq(as.date("2010-02-01"), length=367, by="day")
library(zoo)
data<-zoo(1:367,date)
2.計數
dim()能給出全部資料的行列數,
nrow()用於計算行數,
函式中使用na.omit(data)可用來計算各列均非na時的行數。
儲存過程中的一些片斷
create or replace procedure 儲存過程名 astype ref cursor is ref cursor 定義游標 mycursor ref cursor 定義需要的變數 變數1 number begin 變數ny to char sysdate,yyyymm strsql...
Linux移植過程中的一些錯誤
問題點 1 yaffs2根檔案系統無法掛載 failed to execute linuxrc.attempting defaults.kernel panic not syncing no init found.try passing init option to kernel.原因 mkyaff...
修改page alloc c過程中的一些筆記
1 define phys to page phys pfn to page phys page shift 2 define page to phys page page to pfn page page shift 這兩個巨集的功能分別是將struct page 和實體地址之間進行轉換 例如pa...