I am currently trying to reconstruct the Example code for lmeSplines
(page 4 and 5 on the official documentation).
The first line of code is (in R syntax):
# smoothing spline curve fit
data(smSplineEx1)
How can I view this data via RPy? I Tried:
from rpy2.robjects.packages import importr
lmeS = importr("lmeSplines")
print lmeS.smSplineEx1
and I get:
AttributeError: 'InstalledSTPackage' object has no attribute 'smSplineEx1'