|
||||||
| Software Tuning Discuss all software tuning topics. |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#15 |
|
Senior Member
Join Date: Oct 2012
Drives: UK GT86
Location: UK
Posts: 3,040
Thanks: 185
Thanked 1,632 Times in 1,113 Posts
Mentioned: 156 Post(s)
Tagged: 1 Thread(s)
|
Python 2 seems to work. Note the file directory requires the right slash before the file name or it doesn't work. Here's how I got mine to run:
Code:
# -*- coding: utf-8 -*-
"""
Kodename47 - Test File
"""
import pandas as pd
from bokeh.plotting import figure, HBox, output_file, show, VBox
output_file("graph.html")
logRaw = pd.read_csv('C:\EcuTek\MapAccessLogs/Kodename 70mm Pulley Dyno V5 ZA1JA02G -27-05-2015 Mode 3.csv')
p1x = logRaw['Engine Load (load)']
p1y = logRaw['MAF Sensor (g/s)']
p1 = figure(tools="pan,wheel_zoom,box_zoom,reset,save", plot_width=1024, plot_height=600)
p1.scatter(p1x, p1y, size=1, color="red", alpha=0.5)
show(VBox(HBox(p1)))
__________________
.: Stealth 86 :.
Abbey Motorsport/K47 Tuned Sprintex 210 Supercharger Kodename 47 DJ: Soundcloud / Instagram / Facebook |
|
|
|
| The Following User Says Thank You to Kodename47 For This Useful Post: | burdickjp (07-12-2015) |
|
|
#16 |
|
Banned
Join Date: Dec 2013
Drives: FT86
Location: Australia
Posts: 7,996
Thanks: 1,035
Thanked 4,992 Times in 2,983 Posts
Mentioned: 598 Post(s)
Tagged: 2 Thread(s)
|
bit off topic but have you guys seen this ? also @ztan may be interested
http://blog.vittuned.com/viperdata/ |
|
|
|
|
|
#17 | |
|
Senior Member
Join Date: Jan 2015
Drives: 2013 ultramarine Scion FR-S
Location: Royal Oak, MI
Posts: 293
Thanks: 140
Thanked 137 Times in 70 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
Quote:
Something I've been using quite a bit to this point is MegaLogViewer. http://www.efianalytics.com/MegaLogViewer/ I'm wanting to concentrate on Python because I view it as a marketable skill, so I'm using the project of datalog analysis as a reason. My current plan is getting fill color working correctly in Bokeh. |
|
|
|
|
|
|
#18 | |
|
Senior Member
Join Date: Jan 2015
Drives: 2013 ultramarine Scion FR-S
Location: Royal Oak, MI
Posts: 293
Thanks: 140
Thanked 137 Times in 70 Posts
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
|
Quote:
|
|
|
|
|
|
|
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| BRZ MPG Data Analysis | housecat | BRZ First-Gen (2012+) — General Topics | 30 | 02-14-2016 09:32 PM |
| Recognizing Brake Fade with Data Analysis | GSpeed | Tracking / Autocross / HPDE / Drifting | 25 | 07-06-2015 01:42 AM |
| Help with School Assignment.(Programming with Python) | Zaku | Off-Topic Lounge [WARNING: NO POLITICS] | 0 | 04-09-2013 03:55 PM |
| python vinyl wrapped interior panels | Vonsamhain | Cosmetic Modification (Interior/Exterior/Lighting) | 26 | 10-14-2012 02:21 AM |
| Downloadable driving data/Toyota encourages modification | nate89 | Scion FR-S / Toyota 86 GT86 General Forum | 22 | 03-15-2012 10:12 AM |