Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Ad Server Session Algo.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
import string
import numpy as np
import sys

# proces wstępny
input = pd.read_csv ('yoda_exp_hr_user_askfm.csv', sep = ",", kodowanie = 'utf-16') # przeczytaj plik
input ['request_time'] = input.request_time.str.split ('.'). str [0]; #trucnate the microsec
#pre-process
input=pd.read_csv('yoda_exp_hr_user_askfm.csv',sep=",",encoding='utf-16') #read file
input['request_time']=input.request_time.str.split('.').str[0]; #trucnate the microsec
Expand Down