怎樣用spss中的python語法將V2列的時間戳轉為時間(年月日時分秒)

2021-06-29 16:42:31 字數 2606 閱讀 6184

1樓:匿名使用者

# -*- coding: utf-8 -*-

import math

#實現整除運算

def div(x,y):

return int(round(x)/round(y))

#return $cal2('x','x',p_div,x,y);

def df2dhms(f):

df = f

day = math.floor(df)

hour = math.floor((df-day)*24)

minute = math.floor((df-day-hour/24)*1440)

sec = (df-day-hour/24-minute/1440)*86400

return [day,hour,minute,sec]

mjd=17366.62152773142

djmin = -68569.5

djmax = 1e9

dj1 = 2400000.5

dj2 = mjd

dj = dj1 + dj2

d1 =''

d2 =''

j =''

jd =''

if ( dj < djmin or dj > djmax ):

j = -1

print u'無效的日期: '+mjd

print j

else:

j = 0

if ( dj1 >= dj2 ):

d1 = dj1

d2 = dj2

else:

d1 = dj2

d2 = dj1

d2 = d2 - 0.5

f1 = d1%1.0

f2 = d2%1.0

f = (f1+f2) % 1.0

if ( f < 0 ) :f = f + 1.0

d = round(d1-f1) + round(d2-f2) + round(f1+f2-f)

jd = round(d) + 1

l = jd + 68569

n = div( 4*l , 146097)

l = l - div(( 146097*n + 3 ) , 4)

i = div( 4000 * (l+1) , 1461001)

l = l - div( 1461*i , 4) + 31

k = div( 80*l , 2447)

id = l - div( 2447*k , 80)

l = div(k , 11)

im = k + 2 - 12*l

iy = 100 * ( n-49 ) + i + l

fd = df2dhms(f)

print mjd,'對應日期為',[iy,im,int(id),int(fd[1]),int(fd[2]),fd[3]]

-------

>>>17366.6215277 對應日期為 [1906, 6, 5, 14, 54, 59.99599456786802]

2樓:匿名使用者

格式問題,可以調整的

python怎麼將時間戳轉化為日期

3樓:匿名使用者

當前時間戳:time.time()

當前日期:time.ctime()

1、python下日期到時間戳的轉換

import datetime

import time

datec=datetime.datetime(2010,6,6,8,14,59)

timestamp=time.mktime(datec.timetuple())

print timestamp

2、python下將時間戳轉換到日期

import datetime

import time

ltime=time.localtime(1395025933)timestr=time.strftime("%y-%m-%d %h:%m:%s", ltime)

print timestr

用python將某一列時間戳轉為時間日期格式

4樓:匿名使用者

應該是bai不能直接全部替du

換,只zhi能一行行讀取,dao獲取時間戳,版然後權轉換:

time_stamp = 1494579361time.strftime('%y-%m-%d %h:%m:%s', time.localtime(time_stamp))

python中,有個字串形式的時間戳,如何轉換為日期呢

5樓:我配合的演出

用datetime.datetime.strptime()函式baidu;a=datetime.

datetime.strptime('2018-1-8 10:10:

10','%y-%m-%d %h:%m:%s')輸出的

zhia就是dao時間回格式答

怎樣用SPSS計算P值,怎麼用spss計算p值

先把資料按照格式錄入到spss裡面,然後通過n來進行加權,之後用t檢驗就可以了 怎樣用spss計算p值 對於這種已經整bai理後du 的只有均數標準差的資料用zhiexcel計算比較復dao雜。建議選用excel用公式回 classification tree模組基於資料探勘中發展起來的樹結構模型對...

怎樣用SPSS做二項Logistic迴歸分析?結果如何解釋

因變數是二分類,其他的放入自變數即可處理。南心網 spss 怎樣用spss做二項logistic迴歸分析?結果如何解釋 相關因素logistic迴歸分析結果怎麼看?logistic迴歸在spss中怎麼操作?要選哪些統計量?謝謝 在這地方有些說不清楚,我給你找到這個例子,說的比較明白,你看看 所謂lo...

請問怎樣用Amos和SPSS做中介效應的分析以及結果如何解釋

中介效應 做迴歸或者方差分析 amos複雜 統計專業,為您服務 如何運用spss及amos進行中介效應與調 三62616964757a686964616fe59b9ee7ad9431333363366263 調節變數可以是定性的,也可以是定量的.在做調節效應分析時,通常要將自變數和調節變數做中心化變...