Skip to content
Snippets Groups Projects
Commit 4ef28946 authored by rubegar's avatar rubegar
Browse files

Delete medidas.py

parent 91a3f13f
No related branches found
No related tags found
No related merge requests found
import pandas as pd
# Ruta del archivo CSV
file_path = 'resPeque.csv'
# Leer el archivo CSV
df = pd.read_csv(file_path)
# Seleccionar las filas donde 'allThreads' es igual a 87
selected_rows = df[df['allThreads'] == 87]
selected_rows.to_csv('medidasPeque.csv', index=False)
\ No newline at end of file
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