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
package frc.robot.lib; | |
import io.github.jdiemke.triangulation.DelaunayTriangulator; | |
import io.github.jdiemke.triangulation.NotEnoughPointsException; | |
import io.github.jdiemke.triangulation.Triangle2D; | |
import io.github.jdiemke.triangulation.Vector2D; | |
import java.util.List; | |
import java.util.Optional; | |
public class BarycentricInterpolation { |
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 csv | |
from scipy import stats | |
# Initialize empty lists to store the data | |
age_data = [] | |
roi_data = [] | |
# Read the data from the CSV file | |
with open('combined_data.csv', 'r') as file: | |
csv_reader = csv.DictReader(file) |
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 csv | |
from scipy import stats | |
# Initialize empty lists to store the data | |
age_data = [] | |
roi_data = [] | |
# Read the data from the CSV file | |
with open('combined_data.csv', 'r') as file: | |
csv_reader = csv.DictReader(file) |