search for: tensil

Displaying 7 results from an estimated 7 matches for "tensil".

Did you mean: tensile
2006 May 01
2
Pasting data into scan()
The file TENSILE.DAT from the Hand et al "Handbook of Small Data Sets" looks like this: 0.023 0.032 0.054 0.069 0.081 0.094 0.105 0.127 0.148 0.169 0.188 0.216 0.255 0.277 0.311 0.361 0.376 0.395 0.432 0.463 0.481 0.519 0.529 0.567 0.642 0.674 0.752 0.823 0.887 0.926 except that my mail client has rep...
2004 Feb 05
2
Sweave problem
Here is the file minimal.Snw: \documentclass[a4paper]{article} \title{R tips and tricks} \author{Murray Jorgensen} \usepackage{Sweave} \begin{document} \maketitle \section*{Entering data from a single variable} The following data are transformed tensile strength measurements on polyester fibres. They may be found on the file \texttt{TENSILE.DAT}. We may enter this data into R using the \texttt{scan} command. <<>>= strength <- scan() 0.023 0.032 0.054 0.069 0.081 0.094 0.105 0.127 0.148 0.169 0.188 0.216 @ \end...
2013 Jan 04
3
Log analysis with R
Hello all, Need some suggestions on interesting use cases with R in the field of log processing. Any help would be greatly appreciated. -- With Thanks and Regards, Ramprakash Ramamoorthy, India, +91 9626975420 [[alternative HTML version deleted]]
2009 Dec 21
3
Question About Repeat Random Sampling from a Data Frame
...posts on the r-help system and I feel compelled to quickly admit that I am relatively new to R, I do have several reference books around me, but I cannot count myself among the fortunate who seem to strong programming intuition. I have a data set consisting of 1637 observations of five variables: tensile strength, yield strength, elongation, hardness and a character indicator with three levels: (Y)es, (N)o, and (F)ail. My objective is to randomly sample various subsets from this data set and then evaluate these subsets using simple parameters among them tests for normality, shape and skewness. Th...
2006 May 02
0
Pasting data into scan() - oops!
I forgot to mention that I am using Windows XP. -------- Original Message -------- Subject: Pasting data into scan() Date: Tue, 02 May 2006 11:55:03 +1200 From: Murray Jorgensen <maj at stats.waikato.ac.nz> To: r-help at stat.math.ethz.ch The file TENSILE.DAT from the Hand et al "Handbook of Small Data Sets" looks like this: [...] -- Dr Murray Jorgensen http://www.stats.waikato.ac.nz/Staff/maj.html Department of Statistics, University of Waikato, Hamilton, New Zealand Email: maj at waikato.ac.nz Fax 7...
2007 May 27
0
weibplot (Weibull plot) for R
...sed on R. My code also allows for a graphical visualization of weibull fitted data. In particular, data can be represented by a straight line in a so-called Weibull plot. According to my observations this is the most common way of analyzing Weibull distributed data (e.g. time to breakdown values, tensile strength values, metal fatigue). Here comes my code: # data 4 wbl plot data<-c(10,25,35,90,175) confidence_level=.95 jpeg() library(survival) # time to breakdown values res<-survreg(Surv(data) ~ 1,dist='weibull') # scale parameter: eta=exp(res$coefficient) # shape paramet...
2023 Jun 02
1
Help sourcing datasets (.csv)
See ?data On 28.05.2023 10:53, james carrigan wrote: > Dear Sir or Madam > I?m trying to compile a collection of datasets that require use of the following hypothesis tests. > Are there datasets within the R library that I can get access to? > Kind regards > James Carrigan > > Hypothesis Testing > t.test(X,Y) > ? performs a two sample t-test between X and Y >