Advertisement
orborbson

oscylogram.py

Dec 30th, 2024 (edited)
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.22 KB | Source Code | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import pandas as pd
  4. import matplotlib.pyplot as plt
  5.  
  6. # Wczytanie danych z pliku CSV
  7. data = pd.read_csv('WAVE2.CSV', sep=',', header=None, decimal='.', skiprows=11)
  8. data.columns = ['Czas', 'Wartość']
  9.  
  10. # Konwersja kolumny "Czas" na mikrosekundy
  11. data['Czas'] = data['Czas'].astype(int) * 0.4  # Przekształcenie czasu na mikrosekundy
  12. #data['Wartość'] = data['Wartość'].astype(int) // 4
  13.  
  14. # Rysowanie wykresu typu "step" (prostokątnego)
  15. fig, ax = plt.subplots(figsize=(16, 6))
  16. ax.step(data['Czas'], data['Wartość'], where='post', color='#94F008', marker=None, linestyle='solid', label='Sygnał')
  17.  
  18. # Ustawienie formatu współrzędnych w µs i mV
  19. def format_coord(x, y):
  20.     """Funkcja formatująca współrzędne w µs i mV."""
  21.     return f"Czas: {x:.2f} µs, Wartość: {y:.2f} mV"
  22.  
  23. # Przypisanie funkcji format_coord do aktualnych osi
  24. ax.format_coord = format_coord
  25.  
  26. # Oznaczenie osi i tytułu
  27. ax.set_title('Sygnał')
  28. ax.set_xlabel('Czas (µs)')
  29. ax.set_ylabel('Napięcie (mV)')
  30. ax.grid(True, linestyle='dotted', linewidth=0.7, color='gray')  # Przerywane linie siatki
  31. ax.set_facecolor("black")
  32.  
  33. # Włączenie siatki
  34. ax.grid(True)
  35. plt.tight_layout()
  36.  
  37. # Wyświetlenie wykresu
  38. plt.show()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement