Skip to main content

Posts

Showing posts with the label testing

First post using stackedit

Welcome to StackEdit! Hey! I’m your first Markdown document in StackEdit 1 . Don’t delete me, I’m very helpful! I can be recovered anyway in the Utils tab of the Settings dialog. Documents StackEdit stores your documents in your browser, which means all your documents are automatically saved locally and are accessible offline! Note: StackEdit is accessible offline after the application has been loaded for the first time. Your local documents are not shared between different browsers or computers. Clearing your browser’s data may delete all your local documents! Make sure your documents are synchronized with Google Drive or Dropbox (check out the Synchronization section). Create a document The document panel is accessible using the button in the navigation bar. You can create a new document by clicking New document in the document panel. Switch to another document All your local documents are listed in the document panel. You can switch from one to anoth...

Testing the difference between two correlations in R

Introduction Correlation is the measurement to measure how two datasets increase or decrease together. It's a real number range from -1 (i.e, when one dataset increases, another one decreases and vice versa) to +1 (i.e, these two datasets increase or decrease together). Value 0 means there is no relationship between two datasets. Calculating correlation Calculating correlation of two datasets in R is quite straightforward: In R: > x = c (1,5,2,6,7) > y = c (2,4,3,9,-5) > cor(x,y) [1] -0.1459338 Usually, a single value does not say much in statistics. You need a confidence level. > cor.test (x, y) Pearson's product-moment correlation data:  x and y t = -0.2555, df = 3, p-value = 0.8149 alternative hypothesis: true correlation is not equal to 0 95 percent confidence interval:  -0.9109173  0.8451475 sample estimates:        cor  -0.1459338  The function 'cor.test' will gives you the correlation, ...

The Art of Software Testing, 3rd edition. 2011

Really good book! A classic. DOWNLOAD (You may need to disable AdBlock temporarily) Mediafire: Link1 / Link2 Prefiles: Link 1 / Link 2 Book Description Publication Date:  November 8, 2011   | ISBN-10:  1118031962  | ISBN-13:  978-1118031964   | Edition:  3 The classic, landmark work on software testing The hardware and software of computing have changed markedly in the three decades since the first edition of  The Art of Software Testing,  but this book's powerful underlying analysis has stood the test of time. Whereas most books on software testing target particular development techniques, languages, or testing methods,  The Art of Software Testing, Third Edition  provides a brief but powerful and comprehensive presentation of time-proven software testing approaches. If your software development project is mission critical, this book is an investment that will pay for itself with the first bug you find. The n...