| yacht_hydrodynamics | R Documentation | 
Yacht Hydrodynamics (Residuary Resistance) Dataset
A dataset for predicting the residuary resistance of sailing yachts during early design stages. It contains hull geometry, operational parameters, and experimental resistance measurements from the Delft Ship Hydromechanics Laboratory.
yacht_hydrodynamics
A data frame with 308 observations (rows) and 7 variables:
V1Hull length (typical unit: meters). A core geometric parameter that shapes hydrodynamic performance.
V2Hull beam (width) (typical unit: meters). Influences the yacht’s stability and resistance properties.
V3Hull draft (typical unit: meters). The depth of the hull beneath the waterline, a vital factor for hydrodynamics.
V4Displacement (typical unit: kilograms or metric tons). The total mass of the yacht (hull + payload), a key design limitation.
V5Trim angle (typical unit: degrees). The longitudinal tilt of the hull, which has an impact on resistance and speed.
V6Boat velocity (typical unit: m/s or knots). The speed of the yacht during resistance testing.
V7Residuary resistance (typical unit: Newtons). The target variable, representing resistance from wave formation and hull friction (air resistance not included).
data(yacht_hydrodynamics)  
summary(yacht_hydrodynamics)  
plot(  
  x = yacht_hydrodynamics$V6,  
  y = yacht_hydrodynamics$V7,  
  xlab = "Boat Velocity",  
  ylab = "Residuary Resistance",  
  main = "Velocity vs Residuary Resistance"  
)  
if (requireNamespace("corrplot", quietly = TRUE)) {  
  yacht_corr <- cor(yacht_hydrodynamics, use = "complete.obs")  
  corrplot::corrplot(yacht_corr, method = "color", type = "upper", order = "hclust")  
}  
model <- lm(V7 ~ V6 + V1, data = yacht_hydrodynamics)  
summary(model)  
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.