Skip to content
Snippets Groups Projects
Commit 6bd00eb5 authored by rubegar's avatar rubegar
Browse files

Upload New File

parent 87d44031
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