Skip to content

Commit

Permalink
Update routers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
petya-vasileva authored Feb 11, 2024
1 parent 48d88a8 commit ac6638d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routers.py
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ def buildRoutersDataset(dt):
routerDf.loc[:, 'dest'] = routerDf['dest'].str.upper()
routerDf.loc[:, 'router'] = routerDf['router'].str.upper()
routerDf.loc[:,'ttl'] = routerDf['ttl'].astype(int)
routerDf.loc[:,'rtt'] = routerDf['rtt'].astype(int)
routerDf.loc[:,'rtt'] = routerDf['rtt'].astype(float)
routerDf.loc[:,'asn'] = routerDf['asn'].astype(int)

mdf = getMeta()
Expand Down

0 comments on commit ac6638d

Please sign in to comment.