Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% Thingiverse_API_runner | |
# Import libraries and make a first request to get the data about the different categories | |
from requests import Request, Session | |
from requests.exceptions import ConnectionError, Timeout, TooManyRedirects | |
import pandas as pd | |
pd.set_option('display.max_columns', None) | |
my_token = 'get yours at https://www.thingiverse.com/developers' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Read the CSV file | |
filename = 'test_FSCar_ddMMYYYY_TrackN_setupID2.csv' | |
t = readtable(filename); | |
%% Get statistics | |
meanFL = mean(t.trq_NmFL, 'omitnan') | |
meanFR = mean(t.trq_NmFR, 'omitnan') | |
meanRL = mean(t.trq_NmRL, 'omitnan') | |
meanRR = mean(t.trq_NmRR, 'omitnan') | |
stdFL = std(t.trq_NmFL, 'omitnan') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
df = pd.read_csv('test_FSCar_ddMMYYYY_TrackN_setupID2.csv') | |
# Get statistics | |
meanFL = df.trq_NmFL.mean() | |
meanFR = df.trq_NmFR.mean() | |
meanRL = df.trq_NmRL.mean() | |
meanRR = df.trq_NmRR.mean() | |
stdFL = df.trq_NmFL.std() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#%% Import libraries and read file as dataframe | |
import pandas as pd | |
import numpy as np | |
df = pd.read_csv('test_FSCar_ddMMYYYY_TrackN_setupID2.csv') | |
#%% Index non-empty values and extract time vector | |
idx1 = df.spd_rpmFL.notnull() | |
idx2 = df.spd_rpmFR.notnull() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Read the CSV file | |
filename = 'test_FSCar_ddMMYYYY_TrackN_setupID2.csv' | |
t = readtable(filename); | |
%% Index non-empty values and extract time vector | |
idx1 = ~isnan(t.spd_rpmFL); | |
idx2 = ~isnan(t.spd_rpmFR); | |
idx3 = ~isnan(t.trq_NmFL); |
NewerOlder