2009
DOI: 10.1214/08-bjps017
|View full text |Cite
|
Sign up to set email alerts
|

The reliability of statistical functions in four software packages freely used in numerical computation

Help me understand this report

Search citation statements

Order By: Relevance

Paper Sections

Select...
2
1
1
1

Citation Types

0
17
0
1

Year Published

2009
2009
2024
2024

Publication Types

Select...
4
3

Relationship

0
7

Authors

Journals

citations
Cited by 14 publications
(18 citation statements)
references
References 21 publications
0
17
0
1
Order By: Relevance
“…This platform is freely available at http://www.r-project.org for a diversity of computational platforms, and its excellent numerical properties have been attested in [2,3].…”
Section: Resultsmentioning
confidence: 99%
“…This platform is freely available at http://www.r-project.org for a diversity of computational platforms, and its excellent numerical properties have been attested in [2,3].…”
Section: Resultsmentioning
confidence: 99%
“…Although Python is now used in other scientific fields (e.g., physics), and as a teaching tool, it is much less well-known to econometricians and statisticians (exceptions are Choirat and Seri, 2009, which briefly introduces Python and contains some nice examples; and Almiron et al, 2009). We have tried to motivate Python as a powerful alternative for advanced econometric and statistical project work, but in particular as a means of linking different environments used in applied work.…”
Section: Discussionmentioning
confidence: 99%
“…physics), and as a teaching tool, it is much less well-known to econometricians and statisticians (exceptions are [5], which briefly introduces Python, and contains some nice examples; and [1]). We have tried to motivate Python as a powerful alternative for advanced econometric and statistical project work, but in particular as a means of linking different environments used in applied work.…”
Section: Discussionmentioning
confidence: 99%
“…>>> squares_cubes=[[x**2,x**3] for x in range(6) if x**2<=16]; print squares_cubes \ # list comprehension [[0, 0], [1,1], [4,8], [9,27], [16, 64]] >>> for x,y in enumerate(squares_cubes): print x,y, # the enumerate() function [4,8] 3 [9,27] 4 [16,64] >>> print zip(range (5),squares_cubes) # the zip(function) (2, [4, 8]), (3, [9, 27]), (4, [16, 64]…”
Section: Container Types: Lists and Dictionariesmentioning
confidence: 99%
See 1 more Smart Citation