Skip to content
Snippets Groups Projects
Commit 9bfd57c5 authored by Ryan Randles Jones's avatar Ryan Randles Jones
Browse files

udates

parent 4d36cdff
No related branches found
No related tags found
1 merge request!1Kmeans clustering
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
import numpy as np import numpy as np
import pandas as pd import pandas as pd
import pandas_profiling import pandas_profiling
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
df = pd.read_csv('userusage.txt',delimiter='|') df = pd.read_csv('userusage.txt',delimiter='|')
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
df.head() df.head()
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
df[['jid','step']] = df.JobID.str.split(".",expand=True) df[['jid','step']] = df.JobID.str.split(".",expand=True)
df.Partition.values df.Partition.values
``` ```
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
batchDF=df.dropna(subset=["MaxRSS"]) batchDF=df.dropna(subset=["MaxRSS"])
userDF=df.dropna(subset=["User"]) userDF=df.dropna(subset=["User"])
for jid in df.jid.unique(): for jid in df.jid.unique():
userDF['MaxRSS'][userDF['jid'] == jid]=batchDF['MaxRSS'][batchDF['jid'] == jid] userDF['MaxRSS'][userDF['jid'] == jid]=batchDF['MaxRSS'][batchDF['jid'] == jid]
#print(userDF[userDF['jid'] == jid]) #print(userDF[userDF['jid'] == jid])
userDF.head() userDF.head()
``` ```
%% Cell type:markdown id: tags: %% Cell type:markdown id: tags:
# add more graphs here # add more graphs here
%% Cell type:code id: tags: %% Cell type:code id: tags:
``` python ```
``` ```
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment