vignettes/tests/test_util_fn2columns.Rmd
test_util_fn2columns.Rmd
library(testthat)
library(jeksterslabRutils)
context("Test util_fn2columns.")
tmp <- util_make_subdir()
extdata
to temporary folder
pattern <- "^filename.*"
extdata <- system.file(
"extdata",
"tests",
package = "jeksterslabRutils",
mustWork = TRUE
)
files_from <- list.files(
path = extdata,
pattern = pattern
)
full_path_files_from <- file.path(
extdata,
files_from
)
full_path_files_to <- file.path(
tmp,
files_from
)
file.copy(
from = full_path_files_from,
to = full_path_files_to
)
#> [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
root <- basename(tmp)
fn_output <- file.path(
tmp,
paste0(
root,
".csv"
)
)
fn_column <- TRUE
save <- FALSE
rows <- 1108
columns <- 10
if (fn_column) {
columns <- columns + 1 # columns plus fn_column
}
Variable <- c(
"`tmp`",
"`pattern`",
"`fn_column`",
"`save`",
"`rows`",
"`columns`"
)
Description <- c(
"Working directory.",
"Pattern.",
"Save file name of source data file as a new column.",
"Save concatenated files in `csv` format.",
"Number of rows.",
"Number of columns."
)
Value <- c(
tmp,
pattern,
fn_column,
save,
rows,
columns
)
knitr::kable(
x = data.frame(
Variable,
Description,
Value
),
row.names = FALSE
)
Variable | Description | Value |
---|---|---|
tmp |
Working directory. | /media/jeksterslab/scripts/r/jeksterslabRutils/vignettes/tests/JCcKAEqU |
pattern |
Pattern. | ^filename.* |
fn_column |
Save file name of source data file as a new column. | TRUE |
save |
Save concatenated files in csv format. |
FALSE |
rows |
Number of rows. | 1108 |
columns |
Number of columns. | 11 |
csv <- util_bind(
dir = tmp,
format = "csv",
pattern = "^filename.*",
fn_column = TRUE,
save = FALSE,
save_dir = tmp,
par = FALSE
)
df <- as.data.frame(
csv
)
df <- util_fn2columns(
df = df,
colnames = c("root", "number", "ext")
)
head(df)
#> Item.Title
#> 1 Stochastic Orders in Reliability and Risk
#> 2 Statistical Methods for Imbalanced Data in Ecological and Biological Studies
#> 3 Analyzing Compositional Data with R
#> 4 Statistical Decision Theory and Bayesian Analysis
#> 5 Long-Memory Processes
#> 6 Multiple Statistical Decision Theory: Recent Developments
#> Publication.Title Book.Series.Title Journal.Volume Journal.Issue
#> 1 Lecture Notes in Statistics NA NA NA
#> 2 SpringerBriefs in Statistics NA NA NA
#> 3 Use R! NA NA NA
#> 4 Springer Series in Statistics NA NA NA
#> 5 NA NA NA
#> 6 Lecture Notes in Statistics NA NA NA
#> Item.DOI Authors
#> 1 10.1007/978-1-4614-6892-9 Haijun LiXiaohu Li
#> 2 10.1007/978-4-431-55570-4 Osamu KomoriProf. Shinto Eguchi
#> 3 10.1007/978-3-642-36809-7 K. Gerald van den BoogaartRaimon Tolosana-Delgado
#> 4 10.1007/978-1-4757-4286-2 James O. Berger
#> 5 10.1007/978-3-642-35512-7 Jan BeranYuanhua FengSucharita GhoshRafal Kulik
#> 6 10.1007/978-1-4612-5925-1 Shanti S. GuptaDeng-Yuan Huang
#> Publication.Year URL
#> 1 2013 http://link.springer.com/book/10.1007/978-1-4614-6892-9
#> 2 2019 http://link.springer.com/book/10.1007/978-4-431-55570-4
#> 3 2013 http://link.springer.com/book/10.1007/978-3-642-36809-7
#> 4 1985 http://link.springer.com/book/10.1007/978-1-4757-4286-2
#> 5 2013 http://link.springer.com/book/10.1007/978-3-642-35512-7
#> 6 1981 http://link.springer.com/book/10.1007/978-1-4612-5925-1
#> Content.Type fn root number ext
#> 1 Book filename_001.csv filename 001 csv
#> 2 Book filename_001.csv filename 001 csv
#> 3 Book filename_001.csv filename 001 csv
#> 4 Book filename_001.csv filename 001 csv
#> 5 Book filename_001.csv filename 001 csv
#> 6 Book filename_001.csv filename 001 csv
test_that("expect_true", {
expect_true(
("root" %in% colnames(df)),
("number" %in% colnames(df)),
("ext" %in% colnames(df))
)
})
#> Test passed 🌈
test_that("error", {
expect_error(
util_fn2columns(
df = "NOT A DATA FRAME"
)
)
})
#> Test passed 😀
test_that("message", {
expect_message(
util_fn2columns(
df = as.data.frame(
csv
),
colnames = paste0("col", 1:20)
)
)
})
#> Test passed 😸
util_fn2columns(
df = as.data.frame(
csv
)
)
#> Item.Title
#> 1 Stochastic Orders in Reliability and Risk
#> 2 Statistical Methods for Imbalanced Data in Ecological and Biological Studies
#> 3 Analyzing Compositional Data with R
#> 4 Statistical Decision Theory and Bayesian Analysis
#> 5 Long-Memory Processes
#> 6 Multiple Statistical Decision Theory: Recent Developments
#> 7 Classification, (Big) Data Analysis and Statistical Learning
#> 8 ISS-2012 Proceedings Volume On Longitudinal Data Analysis Subject to Measurement Errors, Missing Values, and/or Outliers
#> 9 Practical Considerations for Adaptive Trial Design and Implementation
#> 10 Applications of Measure Theory to Statistics
#> 11 Statistical Models for Data Analysis
#> 12 Essential Statistical Inference
#> 13 Testing and Inspection Using Acceptance Sampling Plans
#> 14 Spatial Statistics and Computational Methods
#> 15 Plane Answers to Complex Questions
#> 16 Matrix-Based Introduction to Multivariate Data Analysis
#> 17 Statistical Analysis of Extreme Values
#> 18 Bayesian and Frequentist Regression Methods
#> 19 Matrix Algebra: Exercises and Solutions
#> 20 Statistical Design
#> 21 The Cox Model and Its Applications
#> 22 Bayesian Networks in R
#> 23 Metric Methods for Analyzing Partially Ranked Data
#> 24 Nonparametric Statistics
#> 25 Missing Data and Small-Area Estimation
#> 26 The Work of Raymond J. Carroll
#> 27 Selected Works of E. L. Lehmann
#> 28 Decision Support Using Nonparametric Statistics
#> 29 Non-Linear Time Series
#> 30 Longitudinal Data Analysis
#> 31 Targeted Learning in Data Science
#> 32 Interactive LISREL in Practice
#> 33 Stochastic Models, Statistics and Their Applications
#> 34 Convolution Copula Econometrics
#> 35 Statistical Distributions in Scientific Work
#> 36 Statistical Learning of Complex Data
#> 37 Contemporary Biostatistics with Biopharmaceutical Applications
#> 38 Classification and Multivariate Analysis for Complex Data Structures
#> 39 Chaos: A Statistical Perspective
#> 40 Weighted Empirical Processes in Dynamic Nonlinear Models
#> 41 New Advances in Statistical Modeling and Applications
#> 42 Applied Statistical Methods in Agriculture, Health and Life Sciences
#> 43 Stochastics in Finite and Infinite Dimensions
#> 44 Plane Answers to Complex Questions
#> 45 Bilinear Regression Analysis
#> 46 Inference on the Hurst Parameter and the Variance of Diffusions Driven by Fractional Brownian Motion
#> 47 Advances in Regression, Survival Analysis, Extreme Values, Markov Processes and Other Statistical Applications
#> 48 Examples in Parametric Inference with R
#> 49 Seamless R and C++ Integration with Rcpp
#> 50 Topics in Nonparametric Statistics
#> 51 An Intermediate Course in Probability
#> 52 Maximum-Entropy and Bayesian Spectral Analysis and Estimation Problems
#> 53 Selected Works of C.C. Heyde
#> 54 The Multiple Facets of Partial Least Squares and Related Methods
#> 55 Introduction to Time Series and Forecasting
#> 56 State-Space Models
#> 57 Advances in Directional and Linear Statistics
#> 58 Projecting Statistical Functionals
#> 59 Elements of Large-Sample Theory
#> 60 Probability with Applications in Engineering, Science, and Technology
#> 61 Assessing Model-Based Reasoning using Evidence- Centered Design
#> 62 Shrinkage Estimation
#> 63 Functional Data Analysis
#> 64 Statistical Inference for Discrete Time Stochastic Processes
#> 65 Ranked Set Sampling
#> 66 Multivariate Time Series With Linear State Space Structure
#> 67 Science Dynamics and Research Production
#> 68 Restricted Kalman Filtering
#> 69 Estimation and Inferential Statistics
#> 70 Quantitative Psychology
#> 71 Nonparametric Curve Estimation
#> 72 S+ Functional Data Analysis
#> 73 Empirical Agent-Based Modelling - Challenges and Solutions
#> 74 Dependence in Probability and Statistics
#> 75 Linear Regression
#> 76 Indexation and Causation of Financial Markets
#> 77 Empirical Likelihood and Quantile Methods for Time Series
#> 78 Generalized Linear Models With Examples in R
#> 79 Educational Measurement for Applied Researchers
#> 80 The Basics of Item Response Theory Using R
#> 81 Sequential Monte Carlo Methods in Practice
#> 82 Pharmaceutical Statistics
#> 83 Mathematical Foundations of Time Series Analysis
#> 84 Statistical Analysis of Panel Count Data
#> 85 A First Course in Statistics for Signal Analysis
#> 86 Essentials of Monte Carlo Simulation
#> 87 Screening
#> 88 Finite Mixture of Skewed Distributions
#> 89 Statistical Analysis of Designed Experiments
#> 90 Statistical Distributions
#> 91 Selected Works of Peter J. Bickel
#> 92 Statistical Approaches to Orofacial Pain and Temporomandibular Disorders Research
#> 93 Targeted Learning
#> 94 Nonparametric Bayesian Inference in Biostatistics
#> 95 Statistics and Research Methods in Psychology with Excel
#> 96 In and Out of Equilibrium
#> 97 The Art of Progressive Censoring
#> 98 Functional Data Analysis
#> 99 Quantitative Psychology
#> 100 Probabilistic Symmetries and Invariance Principles
#> 101 Monte Carlo Strategies in Scientific Computing
#> 102 Permutation Tests for Stochastic Ordering and ANOVA
#> 103 Selected Contributions in Data Analysis and Classification
#> 104 Applied Multivariate Statistical Analysis
#> 105 Generalized Estimating Equations
#> 106 Model Selection and Inference
#> 107 Functional Statistics and Applications
#> 108 Parametric and Nonparametric Inference from Record-Breaking Data
#> 109 Theory and Application of Uniform Experimental Designs
#> 110 Mathematics A Level
#> 111 Mathematical Statistics
#> 112 A Comprehensive Guide to Factorial Two-Level Experimentation
#> 113 Partitions, Hypergeometric Systems, and Dirichlet Processes in Statistics
#> 114 Lectures on Algebraic Statistics
#> 115 Excel 2016 for Marketing Statistics
#> 116 Statistical Matching
#> 117 Mathematical Statistics
#> 118 Complex Models and Computational Methods in Statistics
#> 119 Topics in Percolative and Disordered Systems
#> 120 Learning Regression Analysis by Simulation
#> 121 New Perspectives in Partial Least Squares and Related Methods
#> 122 Asymptotics for Associated Random Variables
#> 123 Basics of Modern Mathematical Statistics
#> 124 Advances and Challenges in Space-time Modelling of Natural Events
#> 125 Case Studies in Bayesian Statistics
#> 126 Topics in Statistical Simulation
#> 127 Statistical Estimation for Truncated Exponential Families
#> 128 Developments in Statistical Evaluation of Clinical Trials
#> 129 Stochastic Models, Statistics and Their Applications
#> 130 Bayesian Statistics and New Generations
#> 131 Adaptive Regression for Modeling Nonlinear Relationships
#> 132 Robust Rank-Based and Nonparametric Methods
#> 133 Bayesian Inference and Maximum Entropy Methods in Science and Engineering
#> 134 Multiple Decrement Models in Insurance
#> 135 Theory of Nonparametric Tests
#> 136 Goodness-of-Fit Tests and Model Validity
#> 137 Statistics and Data Analysis for Financial Engineering
#> 138 Analysis of Neural Data
#> 139 A Modern Course on Statistical Distributions in Scientific Work
#> 140 Indirect Sampling
#> 141 Quantitative Analysis and IBM® SPSS® Statistics
#> 142 Studies in Neural Data Science
#> 143 Statistical Models for Proportions and Probabilities
#> 144 Time Series Analysis and Its Applications
#> 145 Monte Carlo Statistical Methods
#> 146 Contributions on Theory of Mathematical Statistics
#> 147 Meta-Analytic Structural Equation Modelling
#> 148 Modern Dose-Finding Designs for Cancer Phase I Trials: Drug Combinations and Molecularly Targeted Agents
#> 149 Modelling Operational Risk Using Bayesian Inference
#> 150 Functional Approach to Optimal Experimental Design
#> 151 The Design and Analysis of Computer Experiments
#> 152 Basics of Modern Mathematical Statistics
#> 153 Spectral Analysis of Large Dimensional Random Matrices
#> 154 Time Series Modeling for Analysis and Control
#> 155 Characterizing Interdependencies of Multiple Time Series
#> 156 Topics from the 8th Annual UNCG Regional Mathematics and Statistics Conference
#> 157 Modern Nonparametric, Robust and Multivariate Methods
#> 158 Practical Tools for Designing and Weighting Survey Samples
#> 159 Matrix Algebra
#> 160 Complex Surveys
#> 161 Selected Works of Oded Schramm
#> 162 Majorization and the Lorenz Order with Applications in Applied Mathematics and Economics
#> 163 Permutation Tests
#> 164 Regression Modeling Strategies
#> 165 Robustness and Complex Data Structures
#> 166 Combinatorial Methods in Density Estimation
#> 167 Frontiers of Biostatistical Methods and Applications in Clinical Oncology
#> 168 Statistical Analysis with Measurement Error or Misclassification
#> 169 Copulas and Dependence Models with Applications
#> 170 Dynamic Linear Models with R
#> 171 Multivariate Analysis with LISREL
#> 172 Mathematical Statistics: Exercises and Solutions
#> 173 Robustness in Statistical Forecasting
#> 174 The Gini Methodology
#> 175 Correlation Theory of Stationary and Related Random Functions
#> 176 Statistical Methods for Biostatistics and Related Fields
#> 177 Observational Studies
#> 178 Applied Functional Data Analysis: Methods and Case Studies
#> 179 Weak Dependence: With Examples and Applications
#> 180 Advanced Statistical Methods for the Analysis of Large Data-Sets
#> 181 L1-Norm and L∞-Norm Estimation
#> 182 Nonparametric Statistics for Applied Research
#> 183 Information Criteria and Statistical Modeling
#> 184 Statistics and Simulation
#> 185 Optimization
#> 186 Scan Statistics
#> 187 Advances in Latent Variables
#> 188 Applied Statistics for Social and Management Sciences
#> 189 Nonlinear Estimation and Classification
#> 190 Statistical Analysis of Management Data
#> 191 Stat Labs
#> 192 Conditional Specification of Statistical Models
#> 193 An Introduction to Algebraic Statistics with Tensors
#> 194 Applied Multivariate Statistical Analysis
#> 195 Statistics GCSE
#> 196 Inference for Functional Data with Applications
#> 197 All of Nonparametric Statistics
#> 198 The Linear Model and Hypothesis
#> 199 Time Series Analysis and Its Applications
#> 200 Essentials of Stochastic Processes
#> 201 Introduction to Stochastic Calculus
#> 202 Selected Works of Willem van Zwet
#> 203 OpenStat Reference Manual
#> 204 An Introduction to Statistical Modeling of Extreme Values
#> 205 Recent Developments in Modeling and Applications in Statistics
#> 206 Asymptotics in Statistics
#> 207 Forging Connections between Computational Mathematics and Computational Geometry
#> 208 Model-Free Prediction and Regression
#> 209 Parametric Statistical Change Point Analysis
#> 210 Optimal Mixture Experiments
#> 211 mODa 11 - Advances in Model-Oriented Design and Analysis
#> 212 Astrostatistical Challenges for the New Astronomy
#> 213 Statistical Analysis of Financial Data in R
#> 214 Applied Survival Analysis Using R
#> 215 Indirect Questioning in Sample Surveys
#> 216 Design and Analysis of Experiments
#> 217 Markov Bases in Algebraic Statistics
#> 218 Trends and Perspectives in Linear Statistical Inference
#> 219 Permutation Tests in Shape Analysis
#> 220 An Introduction to Bayesian Analysis
#> 221 Statistical Theory and Inference
#> 222 Theoretical Statistics
#> 223 Data Mining with SPSS Modeler
#> 224 Euclidean Distance Matrices and Their Applications in Rigidity Theory
#> 225 Experimental Designs: Exercises and Solutions
#> 226 Analysis of Repeated Measures Data
#> 227 Statistical Data Analysis Using SAS
#> 228 Breakthroughs in Statistics
#> 229 Bayesian Statistics from Methods to Models and Applications
#> 230 Statistical Tools for Nonlinear Regression
#> 231 Seasonal Adjustment Methods and Real Time Trend-Cycle Estimation
#> 232 Computerized Adaptive and Multistage Testing with R
#> 233 Interactive and Dynamic Graphics for Data Analysis
#> 234 Quantile-Based Reliability Analysis
#> 235 Probability and Statistical Inference
#> 236 Applied Statistics in Biomedicine and Clinical Trials Design
#> 237 Six Sigma for Organizational Excellence
#> 238 Statistical Research Methods
#> 239 Paradoxes in Probability Theory
#> 240 Semiparametric Regression with R
#> 241 Intuitive Introductory Statistics
#> 242 Analysis of Variance for Random Models
#> 243 Graphical Models with R
#> 244 Introduction to Nonparametric Statistics for the Biological Sciences Using R
#> 245 Targeting Uplift
#> 246 Mathematical Statistics
#> 247 Statistical Modelling in Biostatistics and Bioinformatics
#> 248 New Developments in Statistical Modeling, Inference and Application
#> 249 Regression
#> 250 Statistical Modeling and Computation
#> 251 The Manual of Strategic Economic Decision Making
#> 252 Directions in Robust Statistics and Diagnostics
#> 253 Modern Problems of Stochastic Analysis and Statistics
#> 254 Contingency Table Analysis
#> 255 Statistical Tools for Nonlinear Regression
#> 256 Probability Matching Priors: Higher Order Asymptotics
#> 257 Matrix Tricks for Linear Statistical Models
#> 258 The Elements of Statistical Learning
#> 259 Statistics for Mathematicians
#> 260 Singular Spectrum Analysis for Time Series
#> 261 Generalized Hyperbolic Secant Distributions
#> 262 The Uncertainty Analysis of Model Results
#> 263 Essentials of Stochastic Processes
#> 264 Mathematical Statistics
#> 265 Monte Carlo and Quasi-Monte Carlo Sampling
#> 266 Statistical Disclosure Control for Microdata
#> 267 Quantitative Psychology Research
#> 268 Modern Mathematical Statistics with Applications
#> 269 Statistical Applications from Clinical Trials and Personalized Medicine to Finance and Business Analytics
#> 270 Compositional Data Analysis
#> 271 Statistical Consulting
#> 272 Practical Tools for Designing and Weighting Survey Samples
#> 273 Quantitative Psychology
#> 274 Big and Complex Data Analysis
#> 275 Advances in Theoretical and Applied Statistics
#> 276 R by Example
#> 277 Analytical Methods in Statistics
#> 278 New Advances in Statistics and Data Science
#> 279 Stochastic Orders
#> 280 Time Series: Theory and Methods
#> 281 An Introduction to Statistical Learning
#> 282 Advances in Growth Curve and Structural Equation Modeling
#> 283 Statistics for Non-Statisticians
#> 284 Statistics and Finance
#> 285 Partial Least Squares Path Modeling
#> 286 Mathematics and Politics
#> 287 Permutation Methods
#> 288 Statistical Methods for Astronomical Data Analysis
#> 289 Mathematical and Statistical Methods for Genetic Analysis
#> 290 A Modern Theory of Factorial Designs
#> 291 Advanced mathematics 1
#> 292 Exploring Research Frontiers in Contemporary Statistics and Econometrics
#> 293 Multivariate Methods and Forecasting with IBM® SPSS® Statistics
#> 294 Nonparametric Monte Carlo Tests and Their Applications
#> 295 Scan Statistics
#> 296 The Optimal Design of Blocked and Split-Plot Experiments
#> 297 Advanced Multivariate Statistics with Matrices
#> 298 Statistics for Non-Statisticians
#> 299 Statistics on Special Manifolds
#> 300 Resampling Methods
#> 301 Advances in Stochastic Models for Reliability, Quality and Safety
#> 302 Sampling Algorithms
#> 303 Health Care Systems Engineering for Scientists and Practitioners
#> 304 Permutation, Parametric and Bootstrap Tests of Hypotheses
#> 305 Stochastic Models for Time Series
#> 306 Branching Processes and Their Applications
#> 307 Nonparametric Sequential Selection Procedures
#> 308 A Course in Mathematical Statistics and Large Sample Theory
#> 309 Mathematics and Politics
#> 310 An Introduction to Bartlett Correction and Bias Reduction
#> 311 Handling Missing Data in Ranked Set Sampling
#> 312 Exponentiated Distributions
#> 313 Probability for Statisticians
#> 314 Information Geometry
#> 315 Fisher, Neyman, and the Creation of Classical Statistics
#> 316 Statistics and Measurement Concepts with OpenStat
#> 317 Classification and Data Mining
#> 318 Interdisciplinary Bayesian Statistics
#> 319 Essential Statistics
#> 320 Working with the American Community Survey in R
#> 321 Advanced Statistics for the Behavioral Sciences
#> 322 Exact Statistical Methods for Data Analysis
#> 323 A Primer of Permutation Statistical Methods
#> 324 Analysis of Doubly Truncated Data
#> 325 Data Science
#> 326 An Introduction to Order Statistics
#> 327 High-dimensional Microarray Data Analysis
#> 328 Spatial Statistics: Methodological Aspects and Applications
#> 329 Frontiers in Statistical Quality Control 10
#> 330 Parametric and Semiparametric Models with Applications to Reliability, Survival Analysis, and Quality of Life
#> 331 Elements of Nonlinear Time Series Analysis and Forecasting
#> 332 Competing Risks and Multistate Models with R
#> 333 Topics in Theoretical and Applied Statistics
#> 334 Introduction to Time Series and Forecasting
#> 335 Handbook of Computational Statistics
#> 336 Principal Component Analysis
#> 337 Statistical Models Based on Counting Processes
#> 338 Inequalities: Theory of Majorization and Its Applications
#> 339 Heavy-Tailed Distributions and Robustness in Economics and Finance
#> 340 Statistical Modelling of Survival Data with Random Effects
#> 341 Nonparametric Goodness-of-Fit Testing Under Gaussian Models
#> 342 Functional Statistics and Related Fields
#> 343 Theoretical Aspects of Spatial-Temporal Modeling
#> 344 Statistical Tools for Measuring Agreement
#> 345 New Frontiers of Biostatistics and Bioinformatics
#> 346 Series Approximation Methods in Statistics
#> 347 Introduction to Variance Estimation
#> 348 Dynamic Data Analysis
#> 349 Stochastic Population Models
#> 350 Case Studies in Bayesian Statistics
#> 351 Visualizing Time
#> 352 Introduction to Reliability Analysis
#> 353 Modeling Psychophysical Data in R
#> 354 Adaptive Regression
#> 355 Matrix Algebra From a Statistician’s Perspective
#> 356 Nonparametric Methods in Change-Point Problems
#> 357 Two-Way Analysis of Variance
#> 358 Advances in Growth Curve Models
#> 359 Introduction to Probability Simulation and Gibbs Sampling with R
#> 360 A Distribution-Free Theory of Nonparametric Regression
#> 361 Theory and Applications of Recent Robust Methods
#> 362 Studies in Theoretical and Applied Statistics
#> 363 Sequential Analysis
#> 364 Analyzing Dependent Data with Vine Copulas
#> 365 Bayesian Essentials with R
#> 366 Handbook of Big Data Analytics
#> 367 Sequential Experimentation in Clinical Trials
#> 368 Topics on Methodological and Applied Statistical Inference
#> 369 Parametric and Nonparametric Statistics for Sample Surveys and Customer Satisfaction Data
#> 370 Space, Structure and Randomness
#> 371 Design, Analysis, and Interpretation of Genome-Wide Association Scans
#> 372 Matrices, Statistics and Big Data
#> 373 Subsampling
#> 374 Statistical Methods in Counterterrorism
#> 375 Dependent Data in Social Sciences Research
#> 376 Dihedral Fourier Analysis
#> 377 Graphical Exploratory Data Analysis
#> 378 Advanced mathematics 2
#> 379 Linear Models
#> 380 Statistics for High-Dimensional Data
#> 381 Prior Processes and Their Applications
#> 382 Smoothing Spline ANOVA Models
#> 383 Restricted Parameter Space Estimation Problems
#> 384 Modeling Infectious Disease Parameters Based on Serological and Social Contact Data
#> 385 A Graduate Course on Statistical Inference
#> 386 Group-Sequential Clinical Trials with Multiple Co-Objectives
#> 387 Selected Works of David Brillinger
#> 388 Topics from Australian Conferences on Teaching Statistics
#> 389 Applied Statistical Inference
#> 390 Introduction to Multivariate Analysis
#> 391 New Theory of Discriminant Analysis After R. Fisher
#> 392 Parametric Statistical Change Point Analysis
#> 393 An Introduction to the Theory of Point Processes
#> 394 Penalty, Shrinkage and Pretest Strategies
#> 395 An Introduction to Copulas
#> 396 Vector Generalized Linear and Additive Models
#> 397 Sampling Designs Dependent on Sample Parameters of Auxiliary Variables
#> 398 The Analysis of Cross-Classified Categorical Data
#> 399 An Introduction to Applied Multivariate Analysis with R
#> 400 The Contribution of Young Researchers to Bayesian Statistics
#> 401 Block Designs: A Randomization Approach
#> 402 Measures of Association for Cross Classifications
#> 403 Multiscale Modeling
#> 404 Statistics and its Applications
#> 405 Growth Curve Models and Applications
#> 406 Nonlinear System Identification by Haar Wavelets
#> 407 Introduction to Statistical Methods, Design of Experiments and Statistical Quality Control
#> 408 Theory of Point Estimation
#> 409 Recent Advances in Statistical Research and Data Analysis
#> 410 Principal Component Analysis
#> 411 The Population-Sample Decomposition Method
#> 412 mODa 10 – Advances in Model-Oriented Design and Analysis
#> 413 Euclidean Design Theory
#> 414 Advances in Complex Data Modeling and Computational Methods in Statistics
#> 415 Pseudo-Populations
#> 416 Regression Analysis
#> 417 Introduction to Nonparametric Estimation
#> 418 From Statistics to Mathematical Finance
#> 419 Longitudinal Categorical Data Analysis
#> 420 Statistical Analysis of Climate Series
#> 421 Bayesian Statistics in Action
#> 422 Breakthroughs in Statistics
#> 423 Partial Identification of Probability Distributions
#> 424 Asymmetric Kernel Smoothing
#> 425 Robust Bayesian Analysis
#> 426 Introduction to Statistics and Data Analysis
#> 427 Data Analysis and Decision Support
#> 428 Network Science
#> 429 Data Wrangling with R
#> 430 Asymptotic Theory of Statistical Inference for Time Series
#> 431 Advanced Statistical Methods in Data Science
#> 432 Rankings and Preferences
#> 433 Using Statistics in Social Research
#> 434 Survival Analysis with Correlated Endpoints
#> 435 Probability Distributions
#> 436 Inference for Diffusion Processes
#> 437 Experimental Design
#> 438 Testing Statistical Hypotheses
#> 439 Basic Elements of Computational Statistics
#> 440 Advanced Data Analysis in Neuroscience
#> 441 Brief Guidelines for Methods and Statistics in Medical Research
#> 442 Advanced Mathematics 3
#> 443 Foundations of Applied Statistical Methods
#> 444 Contemporary Developments in Statistical Theory
#> 445 Marshall ̶ Olkin Distributions - Advances in Theory and Applications
#> 446 Bayesian Nonparametric Data Analysis
#> 447 Characterizations of Univariate Continuous Distributions
#> 448 Modern Methodology and Applications in Spatial-Temporal Modeling
#> 449 Epistemic Processes
#> 450 A Multiple-Testing Approach to the Multivariate Behrens-Fisher Problem
#> 451 Bayesian Analysis of Demand Under Block Rate Pricing
#> 452 Recent Studies on Risk Analysis and Statistical Modeling
#> 453 Model Averaging
#> 454 Multivariate Statistics
#> 455 Records via Probability Theory
#> 456 Dose-Finding Designs for Early-Phase Cancer Clinical Trials
#> 457 Semiparametric Theory and Missing Data
#> 458 Bayesian Survival Analysis
#> 459 Introductory Statistical Inference with the Likelihood Function
#> 460 Probability for Statistics and Machine Learning
#> 461 Applied Multivariate Statistical Analysis
#> 462 Theory of U-Statistics
#> 463 Non-negative Matrices and Markov Chains
#> 464 Parametric and Nonparametric Inference for Statistical Dynamic Shape Analysis with Applications
#> 465 Nonparametric Estimation of Probability Densities and Regression Curves
#> 466 Finite Form Representations for Meijer G and Fox H Functions
#> 467 Case Studies in Spatial Point Process Modeling
#> 468 Monte Carlo Statistical Methods
#> 469 Regression with Linear Predictors
#> 470 The Nature of Statistical Evidence
#> 471 Quantitative Methods in Environmental and Climate Research
#> 472 Linear Models in Matrix Form
#> 473 Applied Compositional Data Analysis
#> 474 Nonparametric Statistics
#> 475 Separating Information Maximum Likelihood Method for High-Frequency Financial Data
#> 476 Uncertainty
#> 477 Applications of Regression Techniques
#> 478 Nonlinear Principal Component Analysis and Its Applications
#> 479 International Encyclopedia of Statistical Science
#> 480 Theoretical and Applied Statistics
#> 481 Sample Size Determination in Clinical Trials with Multiple Endpoints
#> 482 Continuous Bivariate Distributions
#> 483 Time Series Analysis and Its Applications
#> 484 Model Choice in Nonnested Families
#> 485 The Pleasures of Statistics
#> 486 Topics in Optimal Design
#> 487 U-Statistics, Mm-Estimators and Resampling
#> 488 The Significance Test Controversy Revisited
#> 489 Computation of Multivariate Normal and t Probabilities
#> 490 Statistical Analysis of Observations of Increasing Dimension
#> 491 Bayesian Theory and Methods with Applications
#> 492 An Introduction to Queueing Theory
#> 493 Strategic Economic Decision-Making
#> 494 Model Selection and Multimodel Inference
#> 495 Topics in Survey Sampling
#> 496 Modeling Binary Correlated Responses using SAS, SPSS and R
#> 497 Resampling Methods for Dependent Data
#> 498 Advances in Statistical Models for Data Analysis
#> 499 Ordered Data Analysis, Modeling and Health Research Methods
#> 500 Selected Works of Terry Speed
#> 501 Analysis and Modeling of Complex Data in Behavioral and Social Sciences
#> 502 Advances and Challenges in Parametric and Semi-parametric Analysis for Correlated Data
#> 503 The Measurement of Association
#> 504 Rank and Pseudo-Rank Procedures for Independent Observations in Factorial Designs
#> 505 Capture-Recapture: Parameter Estimation for Open Animal Populations
#> 506 Statistical Modeling for Degradation Data
#> 507 Functional and Shape Data Analysis
#> 508 Empirical Modeling and Data Analysis for Engineers and Applied Scientists
#> 509 Decision Processes by Using Bivariate Normal Quantile Pairs
#> 510 Statistical Methods for Ranking Data
#> 511 Dynamic Mixed Models for Familial Longitudinal Data
#> 512 Quantitative Methods for Current Environmental Issues
#> 513 Statistical and Inductive Inference by Minimum Message Length
#> 514 Pivotal Measures in Statistical Experiments and Sufficiency
#> 515 Selected Works of Donald L. Burkholder
#> 516 Gröbner Bases
#> 517 Studies on the Optimal Search Plan
#> 518 Block Designs: A Randomization Approach
#> 519 Pairwise Multiple Comparisons
#> 520 Person-Centered Methods
#> 521 Modeling Discrete Time-to-Event Data
#> 522 Statistical Learning from a Regression Perspective
#> 523 Sampling Methods
#> 524 Selected Works of Debabrata Basu
#> 525 Statistical Inference in Science
#> 526 Statistical Analysis and Data Display
#> 527 Mathematical Statistics and Limit Theorems
#> 528 Statistics for Innovation
#> 529 New Perspectives in Statistical Modeling and Data Analysis
#> 530 Independent Random Sampling Methods
#> 531 Test Equating
#> 532 Applied Bayesian Statistics
#> 533 Handbook of Scan Statistics
#> 534 The Borel-Cantelli Lemma
#> 535 Permutation Statistical Methods
#> 536 Linear Mixed-Effects Models Using R
#> 537 Analysing Inequalities in Germany
#> 538 Selected Works of Murray Rosenblatt
#> 539 Statistical Decision Theory
#> 540 Bayesian Nonparametrics
#> 541 Elliptically Contoured Models in Statistics and Portfolio Theory
#> 542 Growth Curve and Structural Equation Modeling
#> 543 Formulas Useful for Linear Regression Analysis and Related Matrix Theory
#> 544 Sampling Inspection and Quality Control
#> 545 Statistical Data Analysis and Entropy
#> 546 Singular Spectrum Analysis with R
#> 547 Applied Probability
#> 548 Statistical Analysis of Network Data with R
#> 549 The Information Theory of Comparisons
#> 550 Analysis of Survival Data with Dependent Censoring
#> 551 Meta-Analysis with R
#> 552 Stochastic Orders in Reliability and Risk
#> 553 Statistical Methods for Imbalanced Data in Ecological and Biological Studies
#> 554 Oceanographic Analysis with R
#> 555 Long-Memory Processes
#> 556 New Diagnostic, Therapeutic and Organizational Strategies for Acute Coronary Syndromes Patients
#> 557 ISS-2012 Proceedings Volume On Longitudinal Data Analysis Subject to Measurement Errors, Missing Values, and/or Outliers
#> 558 Practical Considerations for Adaptive Trial Design and Implementation
#> 559 Converting Data into Evidence
#> 560 The Cox Model and Its Applications
#> 561 Nonparametric Statistics
#> 562 The Work of Raymond J. Carroll
#> 563 Instruments for Health Surveys in Children and Adolescents
#> 564 Targeted Learning in Data Science
#> 565 Excel 2016 for Health Services Management Statistics
#> 566 Stochastic Models, Statistics and Their Applications
#> 567 Clinical Prediction Models
#> 568 Contemporary Biostatistics with Biopharmaceutical Applications
#> 569 Foundations of Biostatistics
#> 570 Applied Statistical Methods in Agriculture, Health and Life Sciences
#> 571 Bilinear Regression Analysis
#> 572 Biopharmaceutical Applied Statistics Symposium
#> 573 Innovative Statistical Methods for Public Health Data
#> 574 Dental Informatics: Strategic Issues for the Dental Profession
#> 575 Statistical Methods in Toxicology
#> 576 Estimation and Inferential Statistics
#> 577 S+ Functional Data Analysis
#> 578 Statistical Methods for Dynamic Treatment Regimes
#> 579 Six Sigma with R
#> 580 Pharmaceutical Statistics
#> 581 Statistical Analysis of Microbiome Data with R
#> 582 Logistic Regression
#> 583 Statistical Analysis of Panel Count Data
#> 584 Statistical Causal Inferences and Their Applications in Public Health Research
#> 585 Proceedings of the Fourth Seattle Symposium in Biostatistics: Clinical Trials
#> 586 Recent Advances in Robust Statistics: Theory and Applications
#> 587 Excel 2010 for Biological and Life Sciences Statistics
#> 588 Screening
#> 589 Distance Sampling: Methods and Applications
#> 590 Applied Spatial Data Analysis with R
#> 591 Finite Mixture of Skewed Distributions
#> 592 Adaptive Sampling Designs
#> 593 Statistical Approaches to Orofacial Pain and Temporomandibular Disorders Research
#> 594 Extended Abstracts Fall 2015
#> 595 Targeted Learning
#> 596 Nonparametric Bayesian Inference in Biostatistics
#> 597 Multiple Hypothesenprüfung / Multiple Hypotheses Testing
#> 598 The Art of Progressive Censoring
#> 599 Functional Statistics and Applications
#> 600 Medical Applications of Finite Mixture Models
#> 601 Proceedings of the First Seattle Symposium in Biostatistics
#> 602 Survey Methodology and Missing Data
#> 603 An Introduction to Statistics with Python
#> 604 Misclassification of Smoking Habits and Passive Smoking
#> 605 Heart Rate Variability Analysis with the R package RHRV
#> 606 Advances and Challenges in Space-time Modelling of Natural Events
#> 607 Multivariate Analysis of Ecological Data with ade4
#> 608 Developments in Statistical Evaluation of Clinical Trials
#> 609 Sound Analysis and Synthesis with R
#> 610 Discovery and Representation of Causal Relationships from a Large Time-Oriented Clinical Database: The RX Project
#> 611 Bayesian Statistics and New Generations
#> 612 Modeling Demographic Processes In Marked Populations
#> 613 New Developments in Classification and Data Analysis
#> 614 Adaptive Regression for Modeling Nonlinear Relationships
#> 615 Robust Rank-Based and Nonparametric Methods
#> 616 Theory of Nonparametric Tests
#> 617 The Evaluation of Surrogate Endpoints
#> 618 Analysis of Neural Data
#> 619 Statistical Monitoring of Clinical Trials
#> 620 Studies in Neural Data Science
#> 621 Time Series Analysis and Its Applications
#> 622 Modern Dose-Finding Designs for Cancer Phase I Trials: Drug Combinations and Molecularly Targeted Agents
#> 623 Functional Approach to Optimal Experimental Design
#> 624 Excel 2007 for Biological and Life Sciences Statistics
#> 625 Characterizing Interdependencies of Multiple Time Series
#> 626 Practical Tools for Designing and Weighting Survey Samples
#> 627 Sedentary Behaviour Epidemiology
#> 628 Community Food Webs
#> 629 Complex Surveys
#> 630 Permutation Tests
#> 631 Regression Modeling Strategies
#> 632 Frontiers of Biostatistical Methods and Applications in Clinical Oncology
#> 633 Statistical Analysis with Measurement Error or Misclassification
#> 634 Excel 2013 for Biological and Life Sciences Statistics
#> 635 Analysis of Genetic Association Studies
#> 636 Probability, Statistics and Modelling in Public Health
#> 637 Fundamentals of Clinical Trials
#> 638 Statistical Methods for Biostatistics and Related Fields
#> 639 Observational Studies
#> 640 Applied Functional Data Analysis: Methods and Case Studies
#> 641 Advanced Sampling Theory with Applications
#> 642 Nonparametric Statistics for Applied Research
#> 643 Statistics and Simulation
#> 644 Scan Statistics
#> 645 Advances in Latent Variables
#> 646 Optimal Covariate Designs
#> 647 Synthetic Datasets for Statistical Disclosure Control
#> 648 Phase II Clinical Development of New Drugs
#> 649 Time Series Analysis and Its Applications
#> 650 Medical Informatics Europe ’90
#> 651 Excel 2010 for Health Services Management Statistics
#> 652 An Introduction to Statistical Modeling of Extreme Values
#> 653 Introduction to Data Analysis and Graphical Presentation in Biostatistics with R
#> 654 Recent Developments in Modeling and Applications in Statistics
#> 655 Statistical Design and Analysis for Intercropping Experiments
#> 656 Statistical Methods in Medical Research
#> 657 Statistical Methods for Environmental Epidemiology with R
#> 658 Statistical Applications for Chemistry, Manufacturing and Controls (CMC) in the Pharmaceutical Industry
#> 659 Data Monitoring in Clinical Trials
#> 660 mODa 11 - Advances in Model-Oriented Design and Analysis
#> 661 Permutation Testing for Isotonic Inference on Association Studies in Genetics
#> 662 Topics in Applied Statistics
#> 663 Applied Survival Analysis Using R
#> 664 Indirect Questioning in Sample Surveys
#> 665 Trends and Perspectives in Linear Statistical Inference
#> 666 Permutation Tests in Shape Analysis
#> 667 Engymetry and Personal Computing in Nuclear Medicine
#> 668 Analysis of Repeated Measures Data
#> 669 Statistical Methods in Biomarker and Early Clinical Development
#> 670 Personality Traits and Drug Consumption
#> 671 Dynamic Regression Models for Survival Data
#> 672 Statistical Tools for Nonlinear Regression
#> 673 Statistical Literacy for Clinical Practitioners
#> 674 Introduction to Statistics
#> 675 Quantile-Based Reliability Analysis
#> 676 Applied Statistics in Biomedicine and Clinical Trials Design
#> 677 Statistical Research Methods
#> 678 Semiparametric Regression with R
#> 679 Objective Medical Decision-Making Systems Approach in Disease
#> 680 Analysis of Variance for Random Models
#> 681 Introduction to Nonparametric Statistics for the Biological Sciences Using R
#> 682 Statistical Modelling in Biostatistics and Bioinformatics
#> 683 German-Japanese Interchange of Data Analysis Results
#> 684 New Developments in Statistical Modeling, Inference and Application
#> 685 Survival Analysis
#> 686 Biopharmaceutical Applied Statistics Symposium
#> 687 Statistical Modeling and Computation
#> 688 Modern Problems of Stochastic Analysis and Statistics
#> 689 Contingency Table Analysis
#> 690 Statistical Tools for Nonlinear Regression
#> 691 Composite Sampling
#> 692 Advanced LIMS Technology
#> 693 Analysis of Large and Complex Data
#> 694 Clinical Prediction Models
#> 695 Statistical Analysis of Proteomics, Metabolomics, and Lipidomics Data Using Mass Spectrometry
#> 696 Survival Analysis
#> 697 Statistical Disclosure Control for Microdata
#> 698 Multivariate Statistical Analysis
#> 699 Statistical Applications from Clinical Trials and Personalized Medicine to Finance and Business Analytics
#> 700 Compositional Data Analysis
#> 701 Statistical Consulting
#> 702 Practical Tools for Designing and Weighting Survey Samples
#> 703 Forest Analytics with R
#> 704 Advances in Theoretical and Applied Statistics
#> 705 New Advances in Statistics and Data Science
#> 706 Theory and Practice of Risk Assessment
#> 707 HELP: A Dynamic Hospital Information System
#> 708 Applied Multidimensional Scaling and Unfolding
#> 709 A Beginner’s Guide to R
#> 710 Medical Informatics Europe 1991
#> 711 Modeling Survival Data Using Frailty Models
#> 712 Planning and Analyzing Clinical Trials with Composite Endpoints
#> 713 Analysing Seasonal Health Data
#> 714 Excel 2016 for Social Work Statistics
#> 715 Scan Statistics
#> 716 evaluating clinical research
#> 717 Experimental Design and Model Choice
#> 718 Health Care Systems Engineering for Scientists and Practitioners
#> 719 Permutation, Parametric and Bootstrap Tests of Hypotheses
#> 720 Branching Processes and Their Applications
#> 721 Statistics in Scientific Investigation
#> 722 Statistics Applied to Clinical Trials
#> 723 Statistics in Ornithology
#> 724 Excel 2013 for Health Services Management Statistics
#> 725 Group Sequential and Confirmatory Adaptive Designs in Clinical Trials
#> 726 Handling Missing Data in Ranked Set Sampling
#> 727 Influence of Economic Instability on Health
#> 728 Statistics Applied to Clinical Trials
#> 729 Biostatistics and Epidemiology
#> 730 Interdisciplinary Bayesian Statistics
#> 731 Ranking and Prioritization for Multi-indicator Systems
#> 732 Introduction to Interrater Agreement for Nominal Data
#> 733 Epidemiology
#> 734 Big Data Analytics
#> 735 Risk Assessment and Evaluation of Predictions
#> 736 Bayesian Methods in Structural Bioinformatics
#> 737 Logistic Regression
#> 738 SAS for Epidemiologists
#> 739 A Concise Guide to Statistics
#> 740 A Primer of Permutation Statistical Methods
#> 741 High-dimensional Microarray Data Analysis
#> 742 Nonclinical Statistics for Pharmaceutical and Biotechnology Industries
#> 743 Survival Analysis
#> 744 Elements of Nonlinear Time Series Analysis and Forecasting
#> 745 Statistical Modelling of Survival Data with Random Effects
#> 746 Functional Statistics and Related Fields
#> 747 Projection Matrices, Generalized Inverse Matrices, and Singular Value Decomposition
#> 748 Missing Data
#> 749 New Frontiers of Biostatistics and Bioinformatics
#> 750 Applied Multivariate Statistics with R
#> 751 Adaptive Regression
#> 752 European Approaches to Patient Classification Systems
#> 753 Applications of Operations Research to Health Care Delivery Systems
#> 754 Modern Issues and Methods in Biostatistics
#> 755 Advances in Growth Curve Models
#> 756 Clinical Pre Computer Proforma for the International Computer Database for Radiation Exposure Case Histories
#> 757 ActivEpi Companion Textbook
#> 758 Multivariate Methods of Representing Relations in R for Prioritization Purposes
#> 759 Analyzing Dependent Data with Vine Copulas
#> 760 Philosophical and Methodological Debates in Public Health
#> 761 Proportional Hazards Regression
#> 762 Sequential Experimentation in Clinical Trials
#> 763 Statistical Quality Technologies
#> 764 Topics on Methodological and Applied Statistical Inference
#> 765 Health Care Systems Engineering
#> 766 Design, Analysis, and Interpretation of Genome-Wide Association Scans
#> 767 Matrices, Statistics and Big Data
#> 768 Statistics Applied to Clinical Trials
#> 769 Quantitative Decisions in Drug Development
#> 770 Prior Processes and Their Applications
#> 771 Numerical Ecology with R
#> 772 Statistical Challenges in Modern Astronomy V
#> 773 Modeling Infectious Disease Parameters Based on Serological and Social Contact Data
#> 774 Group-Sequential Clinical Trials with Multiple Co-Objectives
#> 775 Applied Statistical Inference
#> 776 New Theory of Discriminant Analysis After R. Fisher
#> 777 Parametric Statistical Change Point Analysis
#> 778 Objective Medical Decision-making; Systems Approach in Acute Disease
#> 779 System Analysis of Ambulatory Care in Selected Countries
#> 780 Growth Curve Models and Applications
#> 781 Bayesian Cost-Effectiveness Analysis with the R package BCEA
#> 782 Biomedical Images and Computers
#> 783 mODa 10 – Advances in Model-Oriented Design and Analysis
#> 784 From Statistics to Mathematical Finance
#> 785 Longitudinal Categorical Data Analysis
#> 786 Primer to Analysis of Genomic Data Using R
#> 787 Tools for Statistical Inference
#> 788 Collaborative Mathematics and Statistics Research
#> 789 Network Science
#> 790 Fundamentals of Clinical Trials
#> 791 Rankings and Preferences
#> 792 Survival Analysis with Correlated Endpoints
#> 793 Inference for Diffusion Processes
#> 794 Advanced Data Analysis in Neuroscience
#> 795 Applied Bayesian Statistical Studies in Biology and Medicine
#> 796 The Fundamentals of Modern Statistical Genetics
#> 797 Brief Guidelines for Methods and Statistics in Medical Research
#> 798 Foundations of Applied Statistical Methods
#> 799 Bayesian Nonparametric Data Analysis
#> 800 Linear Mixed Models in Practice
#> 801 Recent Studies on Risk Analysis and Statistical Modeling
#> 802 Model Averaging
#> 803 Dose-Finding Designs for Early-Phase Cancer Clinical Trials
#> 804 Magnetic Resonance Brain Imaging
#> 805 Bayesian Survival Analysis
#> 806 Introductory Statistical Inference with the Likelihood Function
#> 807 Modelling Population Dynamics
#> 808 Regression with Linear Predictors
#> 809 Applied Compositional Data Analysis
#> 810 Biopharmaceutical Applied Statistics Symposium
#> 811 Manual for the Planning and Implementation of Therapeutic Studies
#> 812 Nonparametric Statistics
#> 813 The Computer and Blood Banking
#> 814 Disease Prevention and Health Promotion in Developing Countries
#> 815 Statistical Analysis of Next Generation Sequencing Data
#> 816 Statistical Methods in Bioinformatics
#> 817 Theoretical and Applied Statistics
#> 818 Logistic Regression
#> 819 Epidemics
#> 820 Sample Size Determination in Clinical Trials with Multiple Endpoints
#> 821 Regression Methods in Biostatistics
#> 822 Handbook of Epidemiology
#> 823 Time Series Analysis and Its Applications
#> 824 Multi-indicator Systems and Modelling in Partial Order
#> 825 Applied Statistics for Agriculture, Veterinary, Fishery, Dairy and Allied Fields
#> 826 Model Choice in Nonnested Families
#> 827 Design of Experiments in Nonlinear Models
#> 828 Epidemiologic Studies in Cancer Prevention and Screening
#> 829 Excel 2016 for Biological and Life Sciences Statistics
#> 830 Handbook of Scan Statistics
#> 831 The World's Worst Problems
#> 832 Model Selection and Multimodel Inference
#> 833 The Analysis of Gene Expression Data
#> 834 Modeling Binary Correlated Responses using SAS, SPSS and R
#> 835 Proceedings of the Second Seattle Symposium in Biostatistics
#> 836 Statistical Inference on Residual Life
#> 837 Lectures on Categorical Data Analysis
#> 838 Ordered Data Analysis, Modeling and Health Research Methods
#> 839 Statistical Monitoring of Clinical Trials
#> 840 Principles and Practice of Clinical Trials
#> 841 The Measurement of Association
#> 842 Rank and Pseudo-Rank Procedures for Independent Observations in Factorial Designs
#> 843 Capture-Recapture: Parameter Estimation for Open Animal Populations
#> 844 Applied Statistics in the Pharmaceutical Industry
#> 845 Multivariate Analysis in Vegetation Research
#> 846 Cancer Mortality and Morbidity Patterns in the U.S. Population
#> 847 Biostatistics with R
#> 848 Modeling Discrete Time-to-Event Data
#> 849 Frontiers in Statistical Quality Control 12
#> 850 Applied Predictive Modeling
#> 851 Permutation Statistical Methods
#> 852 Monte-Carlo Simulation-Based Statistical Modeling
#> 853 Reliability and Survival Analysis
#> 854 Growth Curve and Structural Equation Modeling
#> 855 Continuous Time Modeling in the Behavioral and Related Sciences
#> 856 Statistical Methods and Applications in Forestry and Environmental Sciences
#> 857 Present Status of Computer Support in Ambulatory Care
#> 858 Singular Spectrum Analysis with R
#> 859 Analysis of Survival Data with Dependent Censoring
#> 860 Mathematical and Statistical Methods for Actuarial Sciences and Finance
#> 861 Algorithms from and for Nature and Life
#> 862 Long-Memory Processes
#> 863 Classification, (Big) Data Analysis and Statistical Learning
#> 864 Statistical Models for Data Analysis
#> 865 Testing and Inspection Using Acceptance Sampling Plans
#> 866 Micro-Econometrics
#> 867 Matrix-Based Introduction to Multivariate Data Analysis
#> 868 Nonparametric Statistics
#> 869 Decision Support Using Nonparametric Statistics
#> 870 Convolution Copula Econometrics
#> 871 Comecon Data 1989
#> 872 Foundations of Biostatistics
#> 873 Inference on the Hurst Parameter and the Variance of Diffusions Driven by Fractional Brownian Motion
#> 874 Perspectives on Spatial Data Analysis
#> 875 Introduction to Time Series and Forecasting
#> 876 State-Space Models
#> 877 New Statistical Developments in Data Science
#> 878 Multivariate Time Series With Linear State Space Structure
#> 879 Restricted Kalman Filtering
#> 880 Business Statistics for Competitive Advantage with Excel 2019 and JMP
#> 881 Indexation and Causation of Financial Markets
#> 882 Empirical Likelihood and Quantile Methods for Time Series
#> 883 Six Sigma with R
#> 884 Compilation of Input-Output Tables
#> 885 Recent Advances in Robust Statistics: Theory and Applications
#> 886 Estimation in Conditionally Heteroscedastic Time Series Models
#> 887 Monte Carlo Strategies in Scientific Computing
#> 888 Applied Multivariate Statistical Analysis
#> 889 Biased Sampling, Over-identified Parameter Problems and Beyond
#> 890 Exploratory Data Analysis in Business and Economics
#> 891 Cohort Analysis in Social Research
#> 892 Excel 2010 for Business Statistics
#> 893 Basics of Modern Mathematical Statistics
#> 894 ARCH Models and Financial Applications
#> 895 Statistical Estimation for Truncated Exponential Families
#> 896 Bayesian Statistics and New Generations
#> 897 New Developments in Classification and Data Analysis
#> 898 Multiple Decrement Models in Insurance
#> 899 Theory of Nonparametric Tests
#> 900 Excel 2016 for Business Statistics
#> 901 Statistics and Data Analysis for Financial Engineering
#> 902 Semiparametric and Nonparametric Methods in Econometrics
#> 903 Economic and Financial Modelling with EViews
#> 904 Quantitative Analysis and IBM® SPSS® Statistics
#> 905 R for Business Analytics
#> 906 Multivariate Total Quality Control
#> 907 Contributions on Theory of Mathematical Statistics
#> 908 Meta-Analytic Structural Equation Modelling
#> 909 Modelling Operational Risk Using Bayesian Inference
#> 910 R for Marketing Research and Analytics
#> 911 Characterizing Interdependencies of Multiple Time Series
#> 912 Intelligence, Genes, and Success
#> 913 Statistics of Financial Markets
#> 914 The Supply Chain Differentiation Guide
#> 915 Time Series Analysis and Forecasting
#> 916 Co-patenting: An Analytic Tool for Cooperative Research and Development
#> 917 Business Analytics for Managers
#> 918 Complex Surveys
#> 919 Majorization and the Lorenz Order with Applications in Applied Mathematics and Economics
#> 920 Permutation Tests
#> 921 Time Series Analysis and Forecasting
#> 922 Binomial Models in Finance
#> 923 Statistics for Business and Financial Economics
#> 924 Business Statistics for Competitive Advantage with Excel 2013
#> 925 Copulas and Dependence Models with Applications
#> 926 Multivariate Analysis with LISREL
#> 927 Robustness in Statistical Forecasting
#> 928 The Gini Methodology
#> 929 Observational Studies
#> 930 Advanced Statistical Methods for the Analysis of Large Data-Sets
#> 931 Advanced Sampling Theory with Applications
#> 932 Statistical Tools for Finance and Insurance
#> 933 Advances in Latent Variables
#> 934 Applied Statistics for Social and Management Sciences
#> 935 Statistical Analysis of Management Data
#> 936 Applied Multivariate Statistical Analysis
#> 937 Advances in Time Series Analysis and Forecasting
#> 938 Optimal Covariate Designs
#> 939 Synthetic Datasets for Statistical Disclosure Control
#> 940 Elements of Copula Modeling with R
#> 941 Inference for Functional Data with Applications
#> 942 COMPSTAT
#> 943 Essentials of Stochastic Processes
#> 944 Study Guide for Statistics for Business and Financial Economics
#> 945 Accurate Case Outcome Modeling
#> 946 Model-Free Prediction and Regression
#> 947 Optimal Mixture Experiments
#> 948 Statistical Analysis of Financial Data in R
#> 949 Topics in Applied Statistics
#> 950 R for Cloud Computing
#> 951 Trends and Perspectives in Linear Statistical Inference
#> 952 Classification, Data Analysis, and Knowledge Organization
#> 953 Statistics of Financial Markets
#> 954 Interpreting Economic and Social Data
#> 955 Analysis of Repeated Measures Data
#> 956 Bayesian Statistics from Methods to Models and Applications
#> 957 Introduction to Statistics
#> 958 Seasonal Adjustment Methods and Real Time Trend-Cycle Estimation
#> 959 Quantile-Based Reliability Analysis
#> 960 Six Sigma for Organizational Excellence
#> 961 Semiparametric Regression with R
#> 962 Targeting Uplift
#> 963 Stochastic Models in Reliability Theory
#> 964 German-Japanese Interchange of Data Analysis Results
#> 965 XploRe® — Application Guide
#> 966 Regression
#> 967 The Manual of Strategic Economic Decision Making
#> 968 Applied Multivariate Analysis
#> 969 Capture the Mindshare and the Market Share Will Follow
#> 970 Forecasting Models for National Economic Planning
#> 971 Advances in Social Science Research Using R
#> 972 Statistics for Mathematicians
#> 973 Analysis of Large and Complex Data
#> 974 Generalized Hyperbolic Secant Distributions
#> 975 Business Statistics for Competitive Advantage with Excel 2010
#> 976 Statistical Disclosure Control for Microdata
#> 977 Stochastic Ageing and Dependence for Reliability
#> 978 Theory and Applications of Time Series Analysis
#> 979 Statistical Consulting
#> 980 Data Analysis Using the Method of Least Squares
#> 981 Advances in Theoretical and Applied Statistics
#> 982 Analytical Methods in Statistics
#> 983 Business Statistics for Competitive Advantage with Excel 2016
#> 984 Time Series: Theory and Methods
#> 985 Advances in Growth Curve and Structural Equation Modeling
#> 986 Theory and Practice of Risk Assessment
#> 987 Statistics for Non-Statisticians
#> 988 Statistics and Finance
#> 989 Partial Least Squares Path Modeling
#> 990 Exploring Research Frontiers in Contemporary Statistics and Econometrics
#> 991 Multivariate Methods and Forecasting with IBM® SPSS® Statistics
#> 992 Excel 2016 for Advertising Statistics
#> 993 Production and Efficiency Analysis with R
#> 994 Students' Experiences and Perspectives on Secondary Education
#> 995 Statistics for Non-Statisticians
#> 996 Excel 2013 for Business Statistics
#> 997 Experimental Design and Model Choice
#> 998 Permutation, Parametric and Bootstrap Tests of Hypotheses
#> 999 Conceptual and Numerical Analysis of Data
#> 1000 Excel 2010 for Human Resource Management Statistics
#> 1001 Statistics in Scientific Investigation
#> 1002 A Course in Mathematical Statistics and Large Sample Theory
#> 1003 An Introduction to Bartlett Correction and Bias Reduction
#> 1004 MODA4 — Advances in Model-Oriented Data Analysis
#> 1005 How SAS Works
#> 1006 Systemic Aspects of Innovation and Design
#> 1007 Statistical Analysis of Management Data
#> 1008 Introduction to Interrater Agreement for Nominal Data
#> 1009 Big Data Analytics
#> 1010 Data Science
#> 1011 Financial Econometrics, Mathematics and Statistics
#> 1012 An Introduction to Order Statistics
#> 1013 Elements of Nonlinear Time Series Analysis and Forecasting
#> 1014 COMECON Data 1990
#> 1015 Statistical Tools for Finance and Insurance
#> 1016 Mathematics for Econometrics
#> 1017 Topics in Theoretical and Applied Statistics
#> 1018 Applied Statistics for Economics and Business
#> 1019 Heavy-Tailed Distributions and Robustness in Economics and Finance
#> 1020 Applied Statistics for Business and Management using Microsoft Excel
#> 1021 Fundamentals of Modern Statistical Methods
#> 1022 The Statistical Analysis of Categorical Data
#> 1023 Statistical Methods in Social Science Research
#> 1024 Financial and Insurance Formulas
#> 1025 Adaptive Regression
#> 1026 Benefit-Cost Analysis of Data Used to Allocate Funds
#> 1027 Theory and Applications of Recent Robust Methods
#> 1028 Studies in Theoretical and Applied Statistics
#> 1029 Advances in Time Series Methods and Applications
#> 1030 Analyzing Dependent Data with Vine Copulas
#> 1031 Applied Data-Centric Social Sciences
#> 1032 Estimation of Disequilibrium Models
#> 1033 Statistical Quality Technologies
#> 1034 Essentials of Excel, Excel VBA, SAS and Minitab for Statistical and Financial Analyses
#> 1035 Bayesian Claims Reserving Methods in Non-life Insurance with Stan
#> 1036 Computational Aspects of Model Choice
#> 1037 Six Sigma Green Belt Certification Project
#> 1038 Handbook of Financial Time Series
#> 1039 The Statistical Analysis of Discrete Data
#> 1040 Parametric Statistical Change Point Analysis
#> 1041 Introduction to Modern Portfolio optimization with NUOPT and S-PLUS
#> 1042 Elements of Statistical Disclosure Control
#> 1043 Data Analysis in Management with SPSS Software
#> 1044 Comecon Data 1988
#> 1045 Applied Quantitative Finance
#> 1046 Growth Curve Models and Applications
#> 1047 Bayesian Cost-Effectiveness Analysis with the R package BCEA
#> 1048 Modeling Financial Time Series with S-PLUS®
#> 1049 Euclidean Design Theory
#> 1050 From Statistics to Mathematical Finance
#> 1051 A Mathematical Theory of Arguments for Statistical Evidence
#> 1052 Allocation Models and their Use in Economic Planning
#> 1053 Bayesian Statistics in Action
#> 1054 Partial Identification of Probability Distributions
#> 1055 Asymmetric Kernel Smoothing
#> 1056 Introduction to Statistics and Data Analysis
#> 1057 Information Structures in Economics
#> 1058 Advanced Statistical Methods in Data Science
#> 1059 The Statistical Analysis of Categorical Data
#> 1060 Inference for Diffusion Processes
#> 1061 Basic Elements of Computational Statistics
#> 1062 Copulae in Mathematical and Quantitative Finance
#> 1063 Marshall ̶ Olkin Distributions - Advances in Theory and Applications
#> 1064 Measuring Business Cycles in Economic Time Series
#> 1065 Unbiased Estimators and Their Applications
#> 1066 Bayesian Analysis of Demand Under Block Rate Pricing
#> 1067 Recent Studies on Risk Analysis and Statistical Modeling
#> 1068 Model Averaging
#> 1069 Records via Probability Theory
#> 1070 Stable and Efficient Cubature-based Filtering in Dynamical Systems
#> 1071 Applied Multivariate Statistical Analysis
#> 1072 Advances in Growth Curve and Structural Equation Modeling
#> 1073 Nonparametric Statistics
#> 1074 Separating Information Maximum Likelihood Method for High-Frequency Financial Data
#> 1075 Applications of Regression Techniques
#> 1076 International Encyclopedia of Statistical Science
#> 1077 R For Marketing Research and Analytics
#> 1078 Theoretical and Applied Statistics
#> 1079 Model Choice in Nonnested Families
#> 1080 Handbook of Computational Finance
#> 1081 Advances in Statistical Models for Data Analysis
#> 1082 Economic and Financial Modeling with Mathematica®
#> 1083 Excel 2010 for Educational and Psychological Statistics
#> 1084 Linear Time Series with MATLAB and OCTAVE
#> 1085 Excel 2007 for Business Statistics
#> 1086 Statistical Modeling for Degradation Data
#> 1087 Decision Processes by Using Bivariate Normal Quantile Pairs
#> 1088 The Statistical Analysis of Categorical Data
#> 1089 Fundamentals of Queuing Systems
#> 1090 Signal Extraction
#> 1091 Using SPSS for Windows
#> 1092 Input-Output Modeling
#> 1093 Sampling Methods
#> 1094 Frontiers in Statistical Quality Control 12
#> 1095 Statistics of Financial Markets
#> 1096 Introductory Statistics for Business and Economics
#> 1097 Mathematical Statistics and Limit Theorems
#> 1098 Statistics of Financial Markets
#> 1099 Analysing Inequalities in Germany
#> 1100 Reliability and Survival Analysis
#> 1101 Elliptically Contoured Models in Statistics and Portfolio Theory
#> 1102 Statistical Inference for Financial Engineering
#> 1103 Formulas Useful for Linear Regression Analysis and Related Matrix Theory
#> 1104 Statistical Methods and Applications in Forestry and Environmental Sciences
#> 1105 Data Analysis, Classification, and Related Methods
#> 1106 Statistical Data Analysis and Entropy
#> 1107 Statistics and Data Analysis for Financial Engineering
#> 1108 Singular Spectrum Analysis with R
#> Publication.Title
#> 1 Lecture Notes in Statistics
#> 2 SpringerBriefs in Statistics
#> 3 Use R!
#> 4 Springer Series in Statistics
#> 5
#> 6 Lecture Notes in Statistics
#> 7 Studies in Classification, Data Analysis, and Knowledge Organization
#> 8 Lecture Notes in Statistics
#> 9 Statistics for Biology and Health
#> 10
#> 11 Studies in Classification, Data Analysis, and Knowledge Organization
#> 12 Springer Texts in Statistics
#> 13
#> 14 Lecture Notes in Statistics
#> 15 Springer Texts in Statistics
#> 16
#> 17
#> 18 Springer Series in Statistics
#> 19
#> 20 Springer Texts in Statistics
#> 21 SpringerBriefs in Statistics
#> 22 Use R!
#> 23 Lecture Notes in Statistics
#> 24 Springer Proceedings in Mathematics & Statistics
#> 25 Statistics for Social Science and Public Policy
#> 26
#> 27 Selected Works in Probability and Statistics
#> 28 SpringerBriefs in Statistics
#> 29
#> 30 SpringerBriefs in Statistics
#> 31 Springer Series in Statistics
#> 32 SpringerBriefs in Statistics
#> 33 Springer Proceedings in Mathematics & Statistics
#> 34 SpringerBriefs in Statistics
#> 35 NATO Advanced study Institutes Series
#> 36 Studies in Classification, Data Analysis, and Knowledge Organization
#> 37 ICSA Book Series in Statistics
#> 38 Studies in Classification, Data Analysis, and Knowledge Organization
#> 39 Springer Series in Statistics
#> 40 Lecture Notes in Statistics
#> 41 Studies in Theoretical and Applied Statistics
#> 42
#> 43 Trends in Mathematics
#> 44 Springer Texts in Statistics
#> 45 Lecture Notes in Statistics
#> 46 Lecture Notes in Statistics
#> 47 Studies in Theoretical and Applied Statistics
#> 48
#> 49 Use R!
#> 50 Springer Proceedings in Mathematics & Statistics
#> 51
#> 52 Fundamental Theories of Physics
#> 53 Selected Works in Probability and Statistics
#> 54 Springer Proceedings in Mathematics & Statistics
#> 55 Springer Texts in Statistics
#> 56 Statistics and Econometrics for Finance
#> 57
#> 58 Lecture Notes in Statistics
#> 59 Springer Texts in Statistics
#> 60 Springer Texts in Statistics
#> 61 SpringerBriefs in Statistics
#> 62 Springer Series in Statistics
#> 63 Springer Series in Statistics
#> 64 SpringerBriefs in Statistics
#> 65 Lecture Notes in Statistics
#> 66
#> 67 Qualitative and Quantitative Analysis of Scientific and Scholarly Communication
#> 68 SpringerBriefs in Statistics
#> 69
#> 70 Springer Proceedings in Mathematics & Statistics
#> 71 Springer Series in Statistics
#> 72
#> 73
#> 74 Lecture Notes in Statistics
#> 75
#> 76 SpringerBriefs in Statistics
#> 77 SpringerBriefs in Statistics
#> 78 Springer Texts in Statistics
#> 79
#> 80 Statistics for Social and Behavioral Sciences
#> 81 Statistics for Engineering and Information Science
#> 82 Springer Proceedings in Mathematics & Statistics
#> 83
#> 84 Statistics for Biology and Health
#> 85
#> 86
#> 87
#> 88 SpringerBriefs in Statistics
#> 89 Springer Texts in Statistics
#> 90
#> 91 Selected Works in Probability and Statistics
#> 92 SpringerBriefs in Statistics
#> 93 Springer Series in Statistics
#> 94 Frontiers in Probability and the Statistical Sciences
#> 95
#> 96 Progress in Probability
#> 97 Statistics for Industry and Technology
#> 98 Springer Series in Statistics
#> 99 Springer Proceedings in Mathematics & Statistics
#> 100 Probability and Its Applications
#> 101 Springer Series in Statistics
#> 102 Lecture Notes in Statistics
#> 103 Studies in Classification, Data Analysis, and Knowledge Organization
#> 104
#> 105 Lecture Notes in Statistics
#> 106
#> 107 Contributions to Statistics
#> 108 Lecture Notes in Statistics
#> 109 Lecture Notes in Statistics
#> 110 Work Out
#> 111 Springer Series in Statistics
#> 112
#> 113 SpringerBriefs in Statistics
#> 114 Oberwolfach Seminars
#> 115 Excel for Statistics
#> 116 Lecture Notes in Statistics
#> 117 Springer Texts in Statistics
#> 118 Contributions to Statistics
#> 119 Springer Proceedings in Mathematics & Statistics
#> 120
#> 121 Springer Proceedings in Mathematics & Statistics
#> 122
#> 123 Springer Texts in Statistics
#> 124 Lecture Notes in Statistics
#> 125 Lecture Notes in Statistics
#> 126 Springer Proceedings in Mathematics & Statistics
#> 127 SpringerBriefs in Statistics
#> 128
#> 129 Springer Proceedings in Mathematics & Statistics
#> 130 Springer Proceedings in Mathematics & Statistics
#> 131 Statistics for Biology and Health
#> 132 Springer Proceedings in Mathematics & Statistics
#> 133 Springer Proceedings in Mathematics & Statistics
#> 134
#> 135
#> 136 Statistics for Industry and Technology
#> 137 Springer Texts in Statistics
#> 138 Springer Series in Statistics
#> 139 NATO Advanced Study Institutes Series
#> 140 Springer Series in Statistics
#> 141 Statistics and Econometrics for Finance
#> 142 Springer Proceedings in Mathematics & Statistics
#> 143 SpringerBriefs in Statistics
#> 144 Springer Texts in Statistics
#> 145 Springer Texts in Statistics
#> 146
#> 147 SpringerBriefs in Research Synthesis and Meta-Analysis
#> 148 SpringerBriefs in Statistics
#> 149
#> 150 Lecture Notes in Statistics
#> 151 Springer Series in Statistics
#> 152 Springer Texts in Statistics
#> 153 Springer Series in Statistics
#> 154 SpringerBriefs in Statistics
#> 155 SpringerBriefs in Statistics
#> 156 Springer Proceedings in Mathematics & Statistics
#> 157
#> 158 Statistics for Social and Behavioral Sciences
#> 159 Springer Texts in Statistics
#> 160
#> 161 Selected Works in Probability and Statistics
#> 162 Statistics for Social and Behavioral Sciences
#> 163 Springer Series in Statistics
#> 164 Springer Series in Statistics
#> 165
#> 166 Springer Series in Statistics
#> 167
#> 168 Springer Series in Statistics
#> 169
#> 170 Use R
#> 171 Springer Series in Statistics
#> 172
#> 173
#> 174 Springer Series in Statistics
#> 175 Springer Series in Statistics
#> 176
#> 177 Springer Series in Statistics
#> 178 Springer Series in Statistics
#> 179 Lecture Notes in Statistics
#> 180 Studies in Theoretical and Applied Statistics
#> 181 SpringerBriefs in Statistics
#> 182
#> 183 Springer Series in Statistics
#> 184 Springer Proceedings in Mathematics & Statistics
#> 185 Springer Texts in Statistics
#> 186 Statistics for Industry and Technology
#> 187 Studies in Theoretical and Applied Statistics
#> 188
#> 189 Lecture Notes in Statistics
#> 190
#> 191 Springer Texts in Statistics
#> 192 Spinger Series in Statistics
#> 193 UNITEXT
#> 194
#> 195 Macmillan Work Out Series
#> 196 Springer Series in Statistics
#> 197 Springer Texts in Statistics
#> 198 Springer Series in Statistics
#> 199 Springer Texts in Statistics
#> 200 Springer Texts in Statistics
#> 201 Indian Statistical Institute Series
#> 202 Selected Works in Probability and Statistics
#> 203
#> 204 Springer Series in Statistics
#> 205 Studies in Theoretical and Applied Statistics
#> 206 Springer Series in Statistics
#> 207 Springer Proceedings in Mathematics & Statistics
#> 208 Frontiers in Probability and the Statistical Sciences
#> 209
#> 210 Lecture Notes in Statistics
#> 211 Contributions to Statistics
#> 212 Springer Series in Astrostatistics
#> 213 Springer Texts in Statistics
#> 214 Use R!
#> 215
#> 216 Springer Texts in Statistics
#> 217 Springer Series in Statistics
#> 218 Contributions to Statistics
#> 219 SpringerBriefs in Statistics
#> 220 Springer Texts in Statistics
#> 221
#> 222 Springer Texts in Statistics
#> 223
#> 224
#> 225
#> 226
#> 227 Springer Texts in Statistics
#> 228 Springer Series in Statistics
#> 229 Springer Proceedings in Mathematics & Statistics
#> 230 Springer Series in Statistics
#> 231 Statistics for Social and Behavioral Sciences
#> 232 Use R!
#> 233 Use R!
#> 234 Statistics for Industry and Technology
#> 235
#> 236 ICSA Book Series in Statistics
#> 237
#> 238
#> 239 SpringerBriefs in Philosophy
#> 240 Use R!
#> 241 Springer Texts in Statistics
#> 242
#> 243 Use R!
#> 244
#> 245
#> 246 Springer Texts in Statistics
#> 247 Contributions to Statistics
#> 248 ICSA Book Series in Statistics
#> 249
#> 250
#> 251
#> 252 The IMA Volumes in Mathematics and its Applications
#> 253 Springer Proceedings in Mathematics & Statistics
#> 254 Statistics for Industry and Technology
#> 255 Springer Series in Statistics
#> 256 Lecture Notes in Statistics
#> 257
#> 258 Springer Series in Statistics
#> 259 Compact Textbooks in Mathematics
#> 260 SpringerBriefs in Statistics
#> 261 SpringerBriefs in Statistics
#> 262
#> 263 Springer Texts in Statistics
#> 264 Springer Texts in Statistics
#> 265 Springer Series in Statistics
#> 266
#> 267 Springer Proceedings in Mathematics & Statistics
#> 268 Springer Texts in Statistics
#> 269 ICSA Book Series in Statistics
#> 270 Springer Proceedings in Mathematics & Statistics
#> 271
#> 272 Statistics for Social and Behavioral Sciences
#> 273 Springer Proceedings in Mathematics & Statistics
#> 274 Contributions to Statistics
#> 275 Studies in Theoretical and Applied Statistics
#> 276 Use R!
#> 277 Springer Proceedings in Mathematics & Statistics
#> 278 ICSA Book Series in Statistics
#> 279 Springer Series in Statistics
#> 280 Springer Series in Statistics
#> 281 Springer Texts in Statistics
#> 282
#> 283
#> 284 Springer Texts in Statistics
#> 285
#> 286
#> 287 Springer Series in Statistics
#> 288 Springer Series in Astrostatistics
#> 289 Statistics for Biology and Health
#> 290 Springer Series in Statistics
#> 291
#> 292
#> 293 Statistics and Econometrics for Finance
#> 294 Lecture Notes in Statistics
#> 295 Springer Series in Statistics
#> 296 Lecture Notes in Statistics
#> 297 Mathematics and Its Applications
#> 298
#> 299 Lecture Notes in Statistics
#> 300
#> 301 Statistics for Industry and Technology
#> 302 Springer Series in Statistics
#> 303 Springer Proceedings in Mathematics & Statistics
#> 304 Springer Series in Statistics
#> 305 Mathématiques et Applications
#> 306 Lecture Notes in Statistics
#> 307
#> 308 Springer Texts in Statistics
#> 309 Textbooks in Mathematical Sciences
#> 310 SpringerBriefs in Statistics
#> 311 SpringerBriefs in Statistics
#> 312 Atlantis Studies in Probability and Statistics
#> 313 Springer Texts in Statistics
#> 314 Ergebnisse der Mathematik und ihrer Grenzgebiete. 3. Folge / A Series of Modern Surveys in Mathematics
#> 315
#> 316
#> 317 Studies in Classification, Data Analysis, and Knowledge Organization
#> 318 Springer Proceedings in Mathematics & Statistics
#> 319
#> 320 SpringerBriefs in Statistics
#> 321
#> 322 Springer Series in Statistics
#> 323
#> 324 SpringerBriefs in Statistics
#> 325 Studies in Classification, Data Analysis, and Knowledge Organization
#> 326 Atlantis Studies in Probability and Statistics
#> 327
#> 328 Lecture Notes in Statistics
#> 329 Frontiers in Statistical Quality Control
#> 330 Statistics for Industry and Technology
#> 331 Springer Series in Statistics
#> 332 Use R!
#> 333 Studies in Theoretical and Applied Statistics
#> 334 Springer Texts in Statistics
#> 335 Springer Handbooks of Computational Statistics
#> 336 Springer Series in Statistics
#> 337 Springer Series in Statistics
#> 338 Springer Series in Statistics
#> 339 Lecture Notes in Statistics
#> 340 Statistics for Biology and Health
#> 341 Lecture Notes in Statistics
#> 342 Contributions to Statistics
#> 343 SpringerBriefs in Statistics
#> 344
#> 345 ICSA Book Series in Statistics
#> 346 Lecture Notes in Statistics
#> 347 Statistics for Social and Behavioral Sciences
#> 348 Springer Series in Statistics
#> 349 Lecture Notes in Statistics
#> 350 Lecture Notes in Statistics
#> 351 Statistics and Computing
#> 352 Springer Texts in Statistics
#> 353 Use R!
#> 354
#> 355
#> 356 Mathematics and Its Applications
#> 357 SpringerBriefs in Statistics
#> 358 Springer Proceedings in Mathematics & Statistics
#> 359 Use R
#> 360 Springer Series in Statistics
#> 361 Statistics for Industry and Technology
#> 362 Springer Proceedings in Mathematics & Statistics
#> 363 Springer Series in Statistics
#> 364 Lecture Notes in Statistics
#> 365 Springer Texts in Statistics
#> 366 Springer Handbooks of Computational Statistics
#> 367 Springer Series in Statistics
#> 368 Studies in Theoretical and Applied Statistics
#> 369 SpringerBriefs in Statistics
#> 370 Lecture Notes in Statistics
#> 371 Statistics for Biology and Health
#> 372 Contributions to Statistics
#> 373 Springer Series in Statistics
#> 374
#> 375 Springer Proceedings in Mathematics & Statistics
#> 376
#> 377 Springer Texts in Statistics
#> 378
#> 379 Springer Series in Statistics
#> 380 Springer Series in Statistics
#> 381 Springer Series in Statistics
#> 382 Springer Series in Statistics
#> 383 Lecture Notes in Statistics
#> 384 Statistics for Biology and Health
#> 385 Springer Texts in Statistics
#> 386 SpringerBriefs in Statistics
#> 387 Selected Works in Probability and Statistics
#> 388 Springer Proceedings in Mathematics & Statistics
#> 389
#> 390
#> 391
#> 392
#> 393 Probability and its Applications
#> 394 SpringerBriefs in Statistics
#> 395 Lecture Notes in Statistics
#> 396 Springer Series in Statistics
#> 397 SpringerBriefs in Statistics
#> 398
#> 399 Use R
#> 400 Springer Proceedings in Mathematics & Statistics
#> 401 Lecture Notes in Statistics
#> 402 Springer Series in Statistics
#> 403 Springer Series in Statistics
#> 404 Springer Proceedings in Mathematics & Statistics
#> 405 Springer Proceedings in Mathematics & Statistics
#> 406 Lecture Notes in Statistics
#> 407
#> 408 Springer Texts in Statistics
#> 409
#> 410 Springer Series in Statistics
#> 411 International Studies in Economics and Econometrics
#> 412 Contributions to Statistics
#> 413 SpringerBriefs in Statistics
#> 414 Contributions to Statistics
#> 415
#> 416 Springer Texts in Statistics
#> 417 Springer Series in Statistics
#> 418
#> 419 Springer Series in Statistics
#> 420
#> 421 Springer Proceedings in Mathematics & Statistics
#> 422 Springer Series in Statistics
#> 423 Springer Series in Statistics
#> 424 SpringerBriefs in Statistics
#> 425 Lecture Notes in Statistics
#> 426
#> 427 Studies in Classification, Data Analysis, and Knowledge Organization
#> 428
#> 429 Use R!
#> 430 Springer Series in Statistics
#> 431 ICSA Book Series in Statistics
#> 432 SpringerBriefs in Statistics
#> 433
#> 434 SpringerBriefs in Statistics
#> 435
#> 436
#> 437
#> 438 Springer Texts in Statistics
#> 439 Statistics and Computing
#> 440 Bernstein Series in Computational Neuroscience
#> 441 SpringerBriefs in Statistics
#> 442
#> 443
#> 444 Springer Proceedings in Mathematics & Statistics
#> 445 Springer Proceedings in Mathematics & Statistics
#> 446 Springer Series in Statistics
#> 447 Atlantis Studies in Probability and Statistics
#> 448 SpringerBriefs in Statistics
#> 449
#> 450 SpringerBriefs in Statistics
#> 451 SpringerBriefs in Statistics
#> 452 Contributions to Statistics
#> 453 SpringerBriefs in Statistics
#> 454
#> 455 Atlantis Studies in Probability and Statistics
#> 456 SpringerBriefs in Statistics
#> 457 Springer Series in Statistics
#> 458 Springer Series in Statistics
#> 459
#> 460 Springer Texts in Statistics
#> 461
#> 462 Mathematics and Its Applications
#> 463 Springer Series in Statistics
#> 464 SpringerBriefs in Statistics
#> 465 Mathematics and its Applications (Soviet Series)
#> 466 Lecture Notes in Statistics
#> 467 Lecture Notes in Statistics
#> 468 Springer Texts in Statistics
#> 469 Statistics for Biology and Health
#> 470 Lecture Notes in Statistics
#> 471
#> 472
#> 473 Springer Series in Statistics
#> 474 Springer Proceedings in Mathematics & Statistics
#> 475 SpringerBriefs in Statistics
#> 476
#> 477
#> 478 SpringerBriefs in Statistics
#> 479
#> 480 Springer Proceedings in Mathematics & Statistics
#> 481 SpringerBriefs in Statistics
#> 482
#> 483 Springer Texts in Statistics
#> 484 SpringerBriefs in Statistics
#> 485
#> 486 Lecture Notes in Statistics
#> 487 Texts and Readings in Mathematics
#> 488 SpringerBriefs in Statistics
#> 489 Lecture Notes in Statistics
#> 490 Theory and Decision Library
#> 491 Atlantis Studies in Probability and Statistics
#> 492 Statistics for Industry and Technology
#> 493 SpringerBriefs in Statistics
#> 494
#> 495 Lecture Notes in Statistics
#> 496 ICSA Book Series in Statistics
#> 497 Springer Series in Statistics
#> 498 Studies in Classification, Data Analysis, and Knowledge Organization
#> 499 Springer Proceedings in Mathematics & Statistics
#> 500 Selected Works in Probability and Statistics
#> 501 Studies in Classification, Data Analysis, and Knowledge Organization
#> 502 Lecture Notes in Statistics
#> 503
#> 504 Springer Series in Statistics
#> 505 Statistics for Biology and Health
#> 506 ICSA Book Series in Statistics
#> 507 Springer Series in Statistics
#> 508
#> 509
#> 510 Frontiers in Probability and the Statistical Sciences
#> 511 Springer Series in Statistics
#> 512
#> 513 Information Science and Statistics
#> 514 Lecture Notes in Statistics
#> 515 Selected Works in Probability and Statistics
#> 516
#> 517 Lecture Notes in Statistics
#> 518 Lecture Notes in Statistics
#> 519 SpringerBriefs in Statistics
#> 520 SpringerBriefs in Statistics
#> 521 Springer Series in Statistics
#> 522 Springer Texts in Statistics
#> 523
#> 524 Selected Works in Probability and Statistics
#> 525 Springer Series in Statistics
#> 526 Springer Texts in Statistics
#> 527
#> 528
#> 529 Studies in Classification, Data Analysis, and Knowledge Organization
#> 530 Statistics and Computing
#> 531 Springer Series in Statistics
#> 532 Springer Texts in Statistics
#> 533
#> 534 SpringerBriefs in Statistics
#> 535
#> 536 Springer Texts in Statistics
#> 537 SpringerBriefs in Statistics
#> 538 Selected Works in Probability and Statistics
#> 539 Springer Series in Statistics
#> 540 Springer Series in Statistics
#> 541
#> 542 Springer Proceedings in Mathematics & Statistics
#> 543 SpringerBriefs in Statistics
#> 544
#> 545 Behaviormetrics: Quantitative Approaches to Human Behavior
#> 546 Use R!
#> 547 Springer Texts in Statistics
#> 548 Use R!
#> 549
#> 550 SpringerBriefs in Statistics
#> 551 Use R!
#> 552 Lecture Notes in Statistics
#> 553 SpringerBriefs in Statistics
#> 554
#> 555
#> 556 Contributions to Statistics
#> 557 Lecture Notes in Statistics
#> 558 Statistics for Biology and Health
#> 559
#> 560 SpringerBriefs in Statistics
#> 561 Springer Proceedings in Mathematics & Statistics
#> 562
#> 563 Springer Series on Epidemiology and Public Health
#> 564 Springer Series in Statistics
#> 565 Excel for Statistics
#> 566 Springer Proceedings in Mathematics & Statistics
#> 567 Statistics for Biology and Health
#> 568 ICSA Book Series in Statistics
#> 569
#> 570
#> 571 Lecture Notes in Statistics
#> 572 ICSA Book Series in Statistics
#> 573 ICSA Book Series in Statistics
#> 574 Lecture Notes in Medical Informatics
#> 575 Lecture Notes in Medical Informatics
#> 576
#> 577
#> 578 Statistics for Biology and Health
#> 579 Use R!
#> 580 Springer Proceedings in Mathematics & Statistics
#> 581 ICSA Book Series in Statistics
#> 582 Statistics for Biology and Health
#> 583 Statistics for Biology and Health
#> 584 ICSA Book Series in Statistics
#> 585 Lecture Notes in Statistics
#> 586
#> 587
#> 588
#> 589 Methods in Statistical Ecology
#> 590 Use R!
#> 591 SpringerBriefs in Statistics
#> 592 SpringerBriefs in Statistics
#> 593 SpringerBriefs in Statistics
#> 594 Trends in Mathematics
#> 595 Springer Series in Statistics
#> 596 Frontiers in Probability and the Statistical Sciences
#> 597 Medizinische Informatik und Statistik
#> 598 Statistics for Industry and Technology
#> 599 Contributions to Statistics
#> 600 Statistics for Biology and Health
#> 601 Lecture Notes in Statistics
#> 602
#> 603 Statistics and Computing
#> 604 International Archives of Occupational and Environmental Health Supplement
#> 605 Use R!
#> 606 Lecture Notes in Statistics
#> 607
#> 608
#> 609 Use R!
#> 610 Lecture Notes in Medical Informatics
#> 611 Springer Proceedings in Mathematics & Statistics
#> 612 Environmental and Ecological Statistics
#> 613 Studies in Classification, Data Analysis, and Knowledge Organization
#> 614 Statistics for Biology and Health
#> 615 Springer Proceedings in Mathematics & Statistics
#> 616
#> 617 Statistics for Biology and Health
#> 618 Springer Series in Statistics
#> 619 Statistics for Biology and Health
#> 620 Springer Proceedings in Mathematics & Statistics
#> 621 Springer Texts in Statistics
#> 622 SpringerBriefs in Statistics
#> 623 Lecture Notes in Statistics
#> 624
#> 625 SpringerBriefs in Statistics
#> 626 Statistics for Social and Behavioral Sciences
#> 627 Springer Series on Epidemiology and Public Health
#> 628 Biomathematics
#> 629
#> 630 Springer Series in Statistics
#> 631 Springer Series in Statistics
#> 632
#> 633 Springer Series in Statistics
#> 634 Excel for Statistics
#> 635 Statistics for Biology and Health
#> 636
#> 637
#> 638
#> 639 Springer Series in Statistics
#> 640 Springer Series in Statistics
#> 641
#> 642
#> 643 Springer Proceedings in Mathematics & Statistics
#> 644 Statistics for Industry and Technology
#> 645 Studies in Theoretical and Applied Statistics
#> 646
#> 647 Lecture Notes in Statistics
#> 648 ICSA Book Series in Statistics
#> 649 Springer Texts in Statistics
#> 650 Lecture Notes in Medical Informatics
#> 651
#> 652 Springer Series in Statistics
#> 653 SpringerBriefs in Statistics
#> 654 Studies in Theoretical and Applied Statistics
#> 655 Springer Series in Statistics
#> 656
#> 657 Use R
#> 658 Statistics for Biology and Health
#> 659
#> 660 Contributions to Statistics
#> 661 SpringerBriefs in Statistics
#> 662 Springer Proceedings in Mathematics & Statistics
#> 663 Use R!
#> 664
#> 665 Contributions to Statistics
#> 666 SpringerBriefs in Statistics
#> 667 Lecture Notes in Medical Informatics
#> 668
#> 669
#> 670
#> 671 Statistics for Biology and Health
#> 672 Springer Series in Statistics
#> 673
#> 674
#> 675 Statistics for Industry and Technology
#> 676 ICSA Book Series in Statistics
#> 677
#> 678 Use R!
#> 679 Lecture Notes in Medical Informatics
#> 680
#> 681
#> 682 Contributions to Statistics
#> 683 Studies in Classification, Data Analysis, and Knowledge Organization
#> 684 ICSA Book Series in Statistics
#> 685 Statistics in the Health Sciences
#> 686 ICSA Book Series in Statistics
#> 687
#> 688 Springer Proceedings in Mathematics & Statistics
#> 689 Statistics for Industry and Technology
#> 690 Springer Series in Statistics
#> 691 Environmental and Ecological Statistics
#> 692
#> 693 Studies in Classification, Data Analysis, and Knowledge Organization
#> 694 Statistics for Biology and Health
#> 695 Frontiers in Probability and the Statistical Sciences
#> 696 Statistics for Biology and Health
#> 697
#> 698 Theory and Decision Library
#> 699 ICSA Book Series in Statistics
#> 700 Springer Proceedings in Mathematics & Statistics
#> 701
#> 702 Statistics for Social and Behavioral Sciences
#> 703 Use R
#> 704 Studies in Theoretical and Applied Statistics
#> 705 ICSA Book Series in Statistics
#> 706 Springer Proceedings in Mathematics & Statistics
#> 707 Computers and Medicine
#> 708 SpringerBriefs in Statistics
#> 709 Use R!
#> 710 Lecture Notes in Medical Informatics
#> 711 Industrial and Applied Mathematics
#> 712 Springer Series in Pharmaceutical Statistics
#> 713 Statistics for Biology and Health
#> 714 Excel for Statistics
#> 715 Springer Series in Statistics
#> 716
#> 717
#> 718 Springer Proceedings in Mathematics & Statistics
#> 719 Springer Series in Statistics
#> 720 Lecture Notes in Statistics
#> 721 Springer Texts in Statistics
#> 722
#> 723 Lecture Notes in Statistics
#> 724 Excel for Statistics
#> 725 Springer Series in Pharmaceutical Statistics
#> 726 SpringerBriefs in Statistics
#> 727 Lecture Notes in Medical Informatics
#> 728
#> 729
#> 730 Springer Proceedings in Mathematics & Statistics
#> 731 Environmental and Ecological Statistics
#> 732
#> 733 Statistics for Biology and Health
#> 734
#> 735 Lecture Notes in Statistics
#> 736 Statistics for Biology and Health
#> 737 Statistics in the Health sciences
#> 738
#> 739 SpringerBriefs in Statistics
#> 740
#> 741
#> 742 Statistics for Biology and Health
#> 743 Statistics for Biology and Health
#> 744 Springer Series in Statistics
#> 745 Statistics for Biology and Health
#> 746 Contributions to Statistics
#> 747 Statistics for Social and Behavioral Sciences
#> 748 Statistics for Social and Behavioral Sciences
#> 749 ICSA Book Series in Statistics
#> 750 Statistics for Biology and Health
#> 751
#> 752 Health Systems Research
#> 753 Lecture Notes in Medical Informatics
#> 754 Statistics for Biology and Health
#> 755 Springer Proceedings in Mathematics & Statistics
#> 756
#> 757
#> 758 Environmental and Ecological Statistics
#> 759 Lecture Notes in Statistics
#> 760
#> 761 Statistics for Biology and Health
#> 762 Springer Series in Statistics
#> 763 ICSA Book Series in Statistics
#> 764 Studies in Theoretical and Applied Statistics
#> 765 Springer Proceedings in Mathematics & Statistics
#> 766 Statistics for Biology and Health
#> 767 Contributions to Statistics
#> 768
#> 769 Springer Series in Pharmaceutical Statistics
#> 770 Springer Series in Statistics
#> 771 Use R
#> 772 Lecture Notes in Statistics
#> 773 Statistics for Biology and Health
#> 774 SpringerBriefs in Statistics
#> 775
#> 776
#> 777
#> 778 Lecture Notes in Medical Informatics
#> 779 Lecture Notes in Medical Informatics
#> 780 Springer Proceedings in Mathematics & Statistics
#> 781 Use R!
#> 782 Lecture Notes in Medical Informatics
#> 783 Contributions to Statistics
#> 784
#> 785 Springer Series in Statistics
#> 786 Use R!
#> 787 Lecture Notes in Statistics
#> 788 Springer Proceedings in Mathematics & Statistics
#> 789
#> 790
#> 791 SpringerBriefs in Statistics
#> 792 SpringerBriefs in Statistics
#> 793
#> 794 Bernstein Series in Computational Neuroscience
#> 795
#> 796 Statistics for Biology and Health
#> 797 SpringerBriefs in Statistics
#> 798
#> 799 Springer Series in Statistics
#> 800 Lecture Notes in Statistics
#> 801 Contributions to Statistics
#> 802 SpringerBriefs in Statistics
#> 803 SpringerBriefs in Statistics
#> 804 Use R!
#> 805 Springer Series in Statistics
#> 806
#> 807 Methods in Statistical Ecology
#> 808 Statistics for Biology and Health
#> 809 Springer Series in Statistics
#> 810 ICSA Book Series in Statistics
#> 811 Lecture Notes in Medical Informatics
#> 812 Springer Proceedings in Mathematics & Statistics
#> 813 Lecture Notes in Medical Informatics
#> 814
#> 815 Frontiers in Probability and the Statistical Sciences
#> 816 Statistics for Biology and Health
#> 817 Springer Proceedings in Mathematics & Statistics
#> 818 Statistics for Biology and Health
#> 819 Use R!
#> 820 SpringerBriefs in Statistics
#> 821 Statistics for Biology and Health
#> 822
#> 823 Springer Texts in Statistics
#> 824
#> 825
#> 826 SpringerBriefs in Statistics
#> 827 Lecture Notes in Statistics
#> 828 Statistics for Biology and Health
#> 829 Excel for Statistics
#> 830
#> 831
#> 832
#> 833 Statistics for Biology and Health
#> 834 ICSA Book Series in Statistics
#> 835 Lecture Notes in Statistics
#> 836 Statistics for Biology and Health
#> 837 Springer Texts in Statistics
#> 838 Springer Proceedings in Mathematics & Statistics
#> 839
#> 840
#> 841
#> 842 Springer Series in Statistics
#> 843 Statistics for Biology and Health
#> 844
#> 845
#> 846 Statistics for Biology and Health
#> 847 Use R!
#> 848 Springer Series in Statistics
#> 849 Frontiers in Statistical Quality Control
#> 850
#> 851
#> 852 ICSA Book Series in Statistics
#> 853
#> 854 Springer Proceedings in Mathematics & Statistics
#> 855
#> 856 Forum for Interdisciplinary Mathematics
#> 857 Lecture Notes in Medical Informatics
#> 858 Use R!
#> 859 SpringerBriefs in Statistics
#> 860
#> 861 Studies in Classification, Data Analysis, and Knowledge Organization
#> 862
#> 863 Studies in Classification, Data Analysis, and Knowledge Organization
#> 864 Studies in Classification, Data Analysis, and Knowledge Organization
#> 865
#> 866
#> 867
#> 868 Springer Proceedings in Mathematics & Statistics
#> 869 SpringerBriefs in Statistics
#> 870 SpringerBriefs in Statistics
#> 871 Vienna Institute for Comparative Economic Studies
#> 872
#> 873 Lecture Notes in Statistics
#> 874 Advances in Spatial Science
#> 875 Springer Texts in Statistics
#> 876 Statistics and Econometrics for Finance
#> 877 Springer Proceedings in Mathematics & Statistics
#> 878
#> 879 SpringerBriefs in Statistics
#> 880
#> 881 SpringerBriefs in Statistics
#> 882 SpringerBriefs in Statistics
#> 883 Use R!
#> 884 Lecture Notes in Economics and Mathematical Systems
#> 885
#> 886 Lecture Notes in Statistics
#> 887 Springer Series in Statistics
#> 888
#> 889 ICSA Book Series in Statistics
#> 890
#> 891
#> 892
#> 893 Springer Texts in Statistics
#> 894 Springer Series in Statistics
#> 895 SpringerBriefs in Statistics
#> 896 Springer Proceedings in Mathematics & Statistics
#> 897 Studies in Classification, Data Analysis, and Knowledge Organization
#> 898
#> 899
#> 900 Excel for Statistics
#> 901 Springer Texts in Statistics
#> 902 Springer Series in Statistics
#> 903 Statistics and Econometrics for Finance
#> 904 Statistics and Econometrics for Finance
#> 905
#> 906 Contributions to Statistics
#> 907
#> 908 SpringerBriefs in Research Synthesis and Meta-Analysis
#> 909
#> 910 Use R!
#> 911 SpringerBriefs in Statistics
#> 912
#> 913 Universitext
#> 914
#> 915 Contributions to Statistics
#> 916 Evolutionary Economics and Social Complexity Science
#> 917 Use R
#> 918
#> 919 Statistics for Social and Behavioral Sciences
#> 920 Springer Series in Statistics
#> 921 Contributions to Statistics
#> 922 Springer Finance
#> 923
#> 924
#> 925
#> 926 Springer Series in Statistics
#> 927
#> 928 Springer Series in Statistics
#> 929 Springer Series in Statistics
#> 930 Studies in Theoretical and Applied Statistics
#> 931
#> 932
#> 933 Studies in Theoretical and Applied Statistics
#> 934
#> 935
#> 936
#> 937 Contributions to Statistics
#> 938
#> 939 Lecture Notes in Statistics
#> 940 Use R!
#> 941 Springer Series in Statistics
#> 942
#> 943 Springer Texts in Statistics
#> 944
#> 945
#> 946 Frontiers in Probability and the Statistical Sciences
#> 947 Lecture Notes in Statistics
#> 948 Springer Texts in Statistics
#> 949 Springer Proceedings in Mathematics & Statistics
#> 950
#> 951 Contributions to Statistics
#> 952 Studies in Classification, Data Analysis, and Knowledge Organization
#> 953 Universitext
#> 954
#> 955
#> 956 Springer Proceedings in Mathematics & Statistics
#> 957
#> 958 Statistics for Social and Behavioral Sciences
#> 959 Statistics for Industry and Technology
#> 960
#> 961 Use R!
#> 962
#> 963 Lecture Notes in Economics and Mathematical Systems
#> 964 Studies in Classification, Data Analysis, and Knowledge Organization
#> 965
#> 966
#> 967
#> 968
#> 969
#> 970 International Studies in Economics and Econometrics
#> 971 Lecture Notes in Statistics
#> 972 Compact Textbooks in Mathematics
#> 973 Studies in Classification, Data Analysis, and Knowledge Organization
#> 974 SpringerBriefs in Statistics
#> 975
#> 976
#> 977
#> 978 Contributions to Statistics
#> 979
#> 980
#> 981 Studies in Theoretical and Applied Statistics
#> 982 Springer Proceedings in Mathematics & Statistics
#> 983
#> 984 Springer Series in Statistics
#> 985
#> 986 Springer Proceedings in Mathematics & Statistics
#> 987
#> 988 Springer Texts in Statistics
#> 989
#> 990
#> 991 Statistics and Econometrics for Finance
#> 992 Excel for Statistics
#> 993
#> 994
#> 995
#> 996 Excel for Statistics
#> 997
#> 998 Springer Series in Statistics
#> 999
#> 1000 Excel for Statistics
#> 1001 Springer Texts in Statistics
#> 1002 Springer Texts in Statistics
#> 1003 SpringerBriefs in Statistics
#> 1004 Contributions to Statistics
#> 1005
#> 1006 SpringerBriefs in Applied Sciences and Technology
#> 1007
#> 1008
#> 1009
#> 1010 Studies in Classification, Data Analysis, and Knowledge Organization
#> 1011
#> 1012 Atlantis Studies in Probability and Statistics
#> 1013 Springer Series in Statistics
#> 1014 Vienna Institute for Comparative Economic Studies
#> 1015
#> 1016
#> 1017 Studies in Theoretical and Applied Statistics
#> 1018
#> 1019 Lecture Notes in Statistics
#> 1020
#> 1021
#> 1022
#> 1023
#> 1024
#> 1025
#> 1026 Lecture Notes in Statistics
#> 1027 Statistics for Industry and Technology
#> 1028 Springer Proceedings in Mathematics & Statistics
#> 1029 Fields Institute Communications
#> 1030 Lecture Notes in Statistics
#> 1031
#> 1032 Lecture Notes in Economics and Mathematical Systems
#> 1033 ICSA Book Series in Statistics
#> 1034
#> 1035
#> 1036 Contributions to Statistics
#> 1037 Management for Professionals
#> 1038
#> 1039 Springer Texts in Statistics
#> 1040
#> 1041
#> 1042 Lecture Notes in Statistics
#> 1043
#> 1044 Vienna Institute for Comparative Economic Studies
#> 1045 Statistics and Computing
#> 1046 Springer Proceedings in Mathematics & Statistics
#> 1047 Use R!
#> 1048
#> 1049 SpringerBriefs in Statistics
#> 1050
#> 1051 Contributions to Statistics
#> 1052 International Studies in Economics and Econometrics
#> 1053 Springer Proceedings in Mathematics & Statistics
#> 1054 Springer Series in Statistics
#> 1055 SpringerBriefs in Statistics
#> 1056
#> 1057 Lecture Notes in Economics and Mathematical Systems
#> 1058 ICSA Book Series in Statistics
#> 1059
#> 1060
#> 1061 Statistics and Computing
#> 1062 Lecture Notes in Statistics
#> 1063 Springer Proceedings in Mathematics & Statistics
#> 1064 Lecture Notes in Statistics
#> 1065 Mathematics and Its Applications
#> 1066 SpringerBriefs in Statistics
#> 1067 Contributions to Statistics
#> 1068 SpringerBriefs in Statistics
#> 1069 Atlantis Studies in Probability and Statistics
#> 1070
#> 1071
#> 1072
#> 1073 Springer Proceedings in Mathematics & Statistics
#> 1074 SpringerBriefs in Statistics
#> 1075
#> 1076
#> 1077 Use R!
#> 1078 Springer Proceedings in Mathematics & Statistics
#> 1079 SpringerBriefs in Statistics
#> 1080 Springer Handbooks of Computational Statistics
#> 1081 Studies in Classification, Data Analysis, and Knowledge Organization
#> 1082
#> 1083
#> 1084 Statistics and Computing
#> 1085
#> 1086 ICSA Book Series in Statistics
#> 1087
#> 1088
#> 1089
#> 1090 Lecture Notes in Economics and Mathematical Systems
#> 1091
#> 1092 Lecture Notes in Economics and Mathematical Systems
#> 1093
#> 1094 Frontiers in Statistical Quality Control
#> 1095 Universitext
#> 1096 Springer Texts in Business and Economics
#> 1097
#> 1098 Universitext
#> 1099 SpringerBriefs in Statistics
#> 1100
#> 1101
#> 1102 SpringerBriefs in Statistics
#> 1103 SpringerBriefs in Statistics
#> 1104 Forum for Interdisciplinary Mathematics
#> 1105 Studies in Classification, Data Analysis, and Knowledge Organization
#> 1106 Behaviormetrics: Quantitative Approaches to Human Behavior
#> 1107 Springer Texts in Statistics
#> 1108 Use R!
#> Book.Series.Title Journal.Volume Journal.Issue Item.DOI
#> 1 NA NA NA 10.1007/978-1-4614-6892-9
#> 2 NA NA NA 10.1007/978-4-431-55570-4
#> 3 NA NA NA 10.1007/978-3-642-36809-7
#> 4 NA NA NA 10.1007/978-1-4757-4286-2
#> 5 NA NA NA 10.1007/978-3-642-35512-7
#> 6 NA NA NA 10.1007/978-1-4612-5925-1
#> 7 NA NA NA 10.1007/978-3-319-55708-3
#> 8 NA NA NA 10.1007/978-1-4614-6871-4
#> 9 NA NA NA 10.1007/978-1-4939-1100-4
#> 10 NA NA NA 10.1007/978-3-319-45578-5
#> 11 NA NA NA 10.1007/978-3-319-00032-9
#> 12 NA NA NA 10.1007/978-1-4614-4818-1
#> 13 NA NA NA 10.1007/978-981-13-9306-8
#> 14 NA NA NA 10.1007/978-0-387-21811-3
#> 15 NA NA NA 10.1007/978-1-4419-9816-3
#> 16 NA NA NA 10.1007/978-981-10-2341-5
#> 17 NA NA NA 10.1007/978-3-0348-6336-0
#> 18 NA NA NA 10.1007/978-1-4419-0925-1
#> 19 NA NA NA 10.1007/978-1-4613-0181-3
#> 20 NA NA NA 10.1007/978-0-387-75965-4
#> 21 NA NA NA 10.1007/978-3-662-49332-8
#> 22 NA NA NA 10.1007/978-1-4614-6446-4
#> 23 NA NA NA 10.1007/978-1-4612-1106-8
#> 24 NA NA NA 10.1007/978-3-319-96941-1
#> 25 NA NA NA 10.1007/1-84628-195-4
#> 26 NA NA NA 10.1007/978-3-319-05801-6
#> 27 NA NA NA 10.1007/978-1-4614-1412-4
#> 28 NA NA NA 10.1007/978-3-319-68264-8
#> 29 NA NA NA 10.1007/978-3-319-07028-5
#> 30 NA NA NA 10.1007/978-981-10-0077-5
#> 31 NA NA NA 10.1007/978-3-319-65304-4
#> 32 NA NA NA 10.1007/978-3-642-18044-6
#> 33 NA NA NA 10.1007/978-3-319-13881-7
#> 34 NA NA NA 10.1007/978-3-319-48015-2
#> 35 NA NA NA 10.1007/978-94-009-8552-0
#> 36 NA NA NA 10.1007/978-3-030-21140-0
#> 37 NA NA NA 10.1007/978-3-030-15310-6
#> 38 NA NA NA 10.1007/978-3-642-13312-1
#> 39 NA NA NA 10.1007/978-1-4757-3464-5
#> 40 NA NA NA 10.1007/978-1-4613-0055-7
#> 41 NA NA NA 10.1007/978-3-319-05323-3
#> 42 NA NA NA 10.1007/978-3-319-05555-8
#> 43 NA NA NA 10.1007/978-1-4612-0167-0
#> 44 NA NA NA 10.1007/978-0-387-21544-0
#> 45 NA NA NA 10.1007/978-3-319-78784-8
#> 46 NA NA NA 10.1007/978-3-319-07875-5
#> 47 NA NA NA 10.1007/978-3-642-34904-1
#> 48 NA NA NA 10.1007/978-981-10-0889-4
#> 49 NA NA NA 10.1007/978-1-4614-6868-4
#> 50 NA NA NA 10.1007/978-1-4939-0569-0
#> 51 NA NA NA 10.1007/978-1-4757-2431-8
#> 52 NA NA NA 10.1007/978-94-009-3961-5
#> 53 NA NA NA 10.1007/978-1-4419-5823-5
#> 54 NA NA NA 10.1007/978-3-319-40643-5
#> 55 NA NA NA 10.1007/978-3-319-29854-2
#> 56 NA NA NA 10.1007/978-1-4614-7789-1
#> 57 NA NA NA 10.1007/978-3-7908-2628-9
#> 58 NA NA NA 10.1007/978-1-4612-2094-7
#> 59 NA NA NA 10.1007/b98855
#> 60 NA NA NA 10.1007/978-3-319-52401-6
#> 61 NA NA NA 10.1007/978-3-319-52246-3
#> 62 NA NA NA 10.1007/978-3-030-02185-6
#> 63 NA NA NA 10.1007/978-1-4757-7107-7
#> 64 NA NA NA 10.1007/978-81-322-0763-4
#> 65 NA NA NA 10.1007/978-0-387-21664-5
#> 66 NA NA NA 10.1007/978-3-319-28599-3
#> 67 NA NA NA 10.1007/978-3-319-41631-1
#> 68 NA NA NA 10.1007/978-1-4614-4738-2
#> 69 NA NA NA 10.1007/978-81-322-2514-0
#> 70 NA NA NA 10.1007/978-3-030-01310-3
#> 71 NA NA NA 10.1007/b97679
#> 72 NA NA NA 10.1007/0-387-28393-5
#> 73 NA NA NA 10.1007/978-1-4614-6134-0
#> 74 NA NA NA 10.1007/0-387-36062-X
#> 75 NA NA NA 10.1007/978-3-319-55252-1
#> 76 NA NA NA 10.1007/978-4-431-55276-5
#> 77 NA NA NA 10.1007/978-981-10-0152-9
#> 78 NA NA NA 10.1007/978-1-4419-0118-7
#> 79 NA NA NA 10.1007/978-981-10-3302-5
#> 80 NA NA NA 10.1007/978-3-319-54205-8
#> 81 NA NA NA 10.1007/978-1-4757-3437-9
#> 82 NA NA NA 10.1007/978-3-319-67386-8
#> 83 NA NA NA 10.1007/978-3-319-74380-6
#> 84 NA NA NA 10.1007/978-1-4614-8715-9
#> 85 NA NA NA 10.1007/978-0-8176-8101-2
#> 86 NA NA NA 10.1007/978-1-4614-6022-0
#> 87 NA NA NA 10.1007/0-387-28014-6
#> 88 NA NA NA 10.1007/978-3-319-98029-4
#> 89 NA NA NA 10.1007/b98966
#> 90 NA NA NA 10.1007/978-3-319-65112-5
#> 91 NA NA NA 10.1007/978-1-4614-5544-8
#> 92 NA NA NA 10.1007/978-1-4939-0876-9
#> 93 NA NA NA 10.1007/978-1-4419-9782-1
#> 94 NA NA NA 10.1007/978-3-319-19518-6
#> 95 NA NA NA 10.1007/978-981-13-3429-0
#> 96 NA NA NA 10.1007/978-1-4612-0063-5
#> 97 NA NA NA 10.1007/978-0-8176-4807-7
#> 98 NA NA NA 10.1007/b98888
#> 99 NA NA NA 10.1007/978-3-319-77249-3
#> 100 NA NA NA 10.1007/0-387-28861-9
#> 101 NA NA NA 10.1007/978-0-387-76371-2
#> 102 NA NA NA 10.1007/978-0-387-85956-9
#> 103 NA NA NA 10.1007/978-3-540-73560-1
#> 104 NA NA NA 10.1007/978-3-662-45171-7
#> 105 NA NA NA 10.1007/978-1-4614-0499-6
#> 106 NA NA NA 10.1007/978-1-4757-2917-7
#> 107 NA NA NA 10.1007/978-3-319-22476-3
#> 108 NA NA NA 10.1007/978-0-387-21549-5
#> 109 NA NA NA 10.1007/978-981-13-2041-5
#> 110 NA NA NA 10.1007/978-1-349-13850-0
#> 111 NA NA NA 10.1007/978-3-642-31084-3
#> 112 NA NA NA 10.1007/b105081
#> 113 NA NA NA 10.1007/978-4-431-55888-0
#> 114 NA NA NA 10.1007/978-3-7643-8905-5
#> 115 NA NA NA 10.1007/978-3-319-43376-9
#> 116 NA NA NA 10.1007/978-1-4613-0053-3
#> 117 NA NA NA 10.1007/b98961
#> 118 NA NA NA 10.1007/978-88-470-2871-5
#> 119 NA NA NA 10.1007/978-1-4939-0339-9
#> 120 NA NA NA 10.1007/978-4-431-54321-3
#> 121 NA NA NA 10.1007/978-1-4614-8283-3
#> 122 NA NA NA 10.1007/978-3-642-25532-8
#> 123 NA NA NA 10.1007/978-3-642-36850-9
#> 124 NA NA NA 10.1007/978-3-642-17086-7
#> 125 NA NA NA 10.1007/978-1-4612-2078-7
#> 126 NA NA NA 10.1007/978-1-4939-2104-1
#> 127 NA NA NA 10.1007/978-981-10-5296-5
#> 128 NA NA NA 10.1007/978-3-642-55345-5
#> 129 NA NA NA 10.1007/978-3-030-28665-1
#> 130 NA NA NA 10.1007/978-3-030-30611-3
#> 131 NA NA NA 10.1007/978-3-319-33946-7
#> 132 NA NA NA 10.1007/978-3-319-39065-9
#> 133 NA NA NA 10.1007/978-3-319-91143-4
#> 134 NA NA NA 10.1007/978-81-322-0659-0
#> 135 NA NA NA 10.1007/978-3-319-76315-6
#> 136 NA NA NA 10.1007/978-1-4612-0103-8
#> 137 NA NA NA 10.1007/978-1-4939-2614-5
#> 138 NA NA NA 10.1007/978-1-4614-9602-1
#> 139 NA NA NA 10.1007/978-94-010-1842-5
#> 140 NA NA NA 10.1007/978-0-387-70782-2
#> 141 NA NA NA 10.1007/978-3-319-45528-0
#> 142 NA NA NA 10.1007/978-3-030-00039-4
#> 143 NA NA NA 10.1007/978-3-642-39041-8
#> 144 NA NA NA 10.1007/978-3-319-52452-8
#> 145 NA NA NA 10.1007/978-1-4757-4145-2
#> 146 NA NA NA 10.1007/978-4-431-55239-0
#> 147 NA NA NA 10.1007/978-3-319-27174-3
#> 148 NA NA NA 10.1007/978-4-431-55573-5
#> 149 NA NA NA 10.1007/978-3-642-15923-7
#> 150 NA NA NA 10.1007/0-387-31610-8
#> 151 NA NA NA 10.1007/978-1-4939-8847-1
#> 152 NA NA NA 10.1007/978-3-642-39909-1
#> 153 NA NA NA 10.1007/978-1-4419-0661-8
#> 154 NA NA NA 10.1007/978-4-431-55303-8
#> 155 NA NA NA 10.1007/978-981-10-6436-4
#> 156 NA NA NA 10.1007/978-1-4614-9332-7
#> 157 NA NA NA 10.1007/978-3-319-22404-6
#> 158 NA NA NA 10.1007/978-1-4614-6449-5
#> 159 NA NA NA 10.1007/978-3-319-64867-5
#> 160 NA NA NA 10.1007/978-981-10-0871-9
#> 161 NA NA NA 10.1007/978-1-4419-9675-6
#> 162 NA NA NA 10.1007/978-3-319-93773-1
#> 163 NA NA NA 10.1007/978-1-4757-3235-1
#> 164 NA NA NA 10.1007/978-3-319-19425-7
#> 165 NA NA NA 10.1007/978-3-642-35494-6
#> 166 NA NA NA 10.1007/978-1-4613-0125-7
#> 167 NA NA NA 10.1007/978-981-10-0126-0
#> 168 NA NA NA 10.1007/978-1-4939-6640-0
#> 169 NA NA NA 10.1007/978-3-319-64221-5
#> 170 NA NA NA 10.1007/b135794
#> 171 NA NA NA 10.1007/978-3-319-33153-9
#> 172 NA NA NA 10.1007/0-387-28276-9
#> 173 NA NA NA 10.1007/978-3-319-00840-0
#> 174 NA NA NA 10.1007/978-1-4614-4720-7
#> 175 NA NA NA 10.1007/978-1-4612-4628-2
#> 176 NA NA NA 10.1007/978-3-540-32691-5
#> 177 NA NA NA 10.1007/978-1-4757-3692-2
#> 178 NA NA NA 10.1007/b98886
#> 179 NA NA NA 10.1007/978-0-387-69952-3
#> 180 NA NA NA 10.1007/978-3-642-21037-2
#> 181 NA NA NA 10.1007/978-3-642-36300-9
#> 182 NA NA NA 10.1007/978-1-4614-9041-8
#> 183 NA NA NA 10.1007/978-0-387-71887-3
#> 184 NA NA NA 10.1007/978-3-319-76035-3
#> 185 NA NA NA 10.1007/978-1-4614-5838-8
#> 186 NA NA NA 10.1007/978-0-8176-4749-0
#> 187 NA NA NA 10.1007/978-3-319-02967-2
#> 188 NA NA NA 10.1007/978-981-10-0401-8
#> 189 NA NA NA 10.1007/978-0-387-21579-2
#> 190 NA NA NA 10.1007/978-1-4419-1270-1
#> 191 NA NA NA 10.1007/b98875
#> 192 NA NA NA 10.1007/b97592
#> 193 NA NA NA 10.1007/978-3-030-24624-2
#> 194 NA NA NA 10.1007/978-3-030-26006-4
#> 195 NA NA NA 10.1007/978-1-349-13842-5
#> 196 NA NA NA 10.1007/978-1-4614-3655-3
#> 197 NA NA NA 10.1007/0-387-30623-4
#> 198 NA NA NA 10.1007/978-3-319-21930-1
#> 199 NA NA NA 10.1007/0-387-36276-2
#> 200 NA NA NA 10.1007/978-3-319-45614-0
#> 201 NA NA NA 10.1007/978-981-10-8318-1
#> 202 NA NA NA 10.1007/978-1-4614-1314-1
#> 203 NA NA NA 10.1007/978-1-4614-5740-4
#> 204 NA NA NA 10.1007/978-1-4471-3675-0
#> 205 NA NA NA 10.1007/978-3-642-32419-2
#> 206 NA NA NA 10.1007/978-1-4612-1166-2
#> 207 NA NA NA 10.1007/978-3-319-16139-6
#> 208 NA NA NA 10.1007/978-3-319-21347-7
#> 209 NA NA NA 10.1007/978-1-4757-3131-6
#> 210 NA NA NA 10.1007/978-81-322-1786-2
#> 211 NA NA NA 10.1007/978-3-319-31266-8
#> 212 NA NA NA 10.1007/978-1-4614-3508-2
#> 213 NA NA NA 10.1007/978-1-4614-8788-3
#> 214 NA NA NA 10.1007/978-3-319-31245-3
#> 215 NA NA NA 10.1007/978-3-642-36276-7
#> 216 NA NA NA 10.1007/978-3-319-52250-0
#> 217 NA NA NA 10.1007/978-1-4614-3719-2
#> 218 NA NA NA 10.1007/978-3-319-73241-1
#> 219 NA NA NA 10.1007/978-1-4614-8163-8
#> 220 NA NA NA 10.1007/978-0-387-35433-0
#> 221 NA NA NA 10.1007/978-3-319-04972-4
#> 222 NA NA NA 10.1007/978-0-387-93839-4
#> 223 NA NA NA 10.1007/978-3-319-28709-6
#> 224 NA NA NA 10.1007/978-3-319-97846-8
#> 225 NA NA NA 10.1007/978-0-387-33893-4
#> 226 NA NA NA 10.1007/978-981-10-3794-8
#> 227 NA NA NA 10.1007/978-3-319-69239-5
#> 228 NA NA NA 10.1007/978-1-4612-4380-9
#> 229 NA NA NA 10.1007/978-3-319-16238-6
#> 230 NA NA NA 10.1007/978-1-4757-2523-0
#> 231 NA NA NA 10.1007/978-3-319-31822-6
#> 232 NA NA NA 10.1007/978-3-319-69218-0
#> 233 NA NA NA 10.1007/978-0-387-71762-3
#> 234 NA NA NA 10.1007/978-0-8176-8361-0
#> 235 NA NA NA 10.1007/978-94-009-7840-9
#> 236 NA NA NA 10.1007/978-3-319-12694-4
#> 237 NA NA NA 10.1007/978-81-322-2325-2
#> 238 NA NA NA 10.1007/978-1-4614-8708-1
#> 239 NA NA NA 10.1007/978-94-007-5140-8
#> 240 NA NA NA 10.1007/978-1-4939-8853-2
#> 241 NA NA NA 10.1007/978-3-319-56072-4
#> 242 NA NA NA 10.1007/978-0-8176-8168-5
#> 243 NA NA NA 10.1007/978-1-4614-2299-0
#> 244 NA NA NA 10.1007/978-3-319-30634-6
#> 245 NA NA NA 10.1007/978-3-030-22625-1
#> 246 NA NA NA 10.1007/b97553
#> 247 NA NA NA 10.1007/978-3-319-04579-5
#> 248 NA NA NA 10.1007/978-3-319-42571-9
#> 249 NA NA NA 10.1007/978-3-642-34333-9
#> 250 NA NA NA 10.1007/978-1-4614-8775-3
#> 251 NA NA NA 10.1007/978-3-319-48414-3
#> 252 NA NA NA 10.1007/978-1-4612-4444-8
#> 253 NA NA NA 10.1007/978-3-319-65313-6
#> 254 NA NA NA 10.1007/978-0-8176-4811-4
#> 255 NA NA NA 10.1007/b97288
#> 256 NA NA NA 10.1007/978-1-4612-2036-7
#> 257 NA NA NA 10.1007/978-3-642-10473-2
#> 258 NA NA NA 10.1007/978-0-387-21606-5
#> 259 NA NA NA 10.1007/978-3-319-28341-8
#> 260 NA NA NA 10.1007/978-3-642-34913-3
#> 261 NA NA NA 10.1007/978-3-642-45138-6
#> 262 NA NA NA 10.1007/978-3-319-76297-5
#> 263 NA NA NA 10.1007/978-1-4614-3615-7
#> 264 NA NA NA 10.1007/b98900
#> 265 NA NA NA 10.1007/978-0-387-78165-5
#> 266 NA NA NA 10.1007/978-3-319-50272-4
#> 267 NA NA NA 10.1007/978-3-319-38759-8
#> 268 NA NA NA 10.1007/978-1-4614-0391-3
#> 269 NA NA NA 10.1007/978-3-319-42568-9
#> 270 NA NA NA 10.1007/978-3-319-44811-4
#> 271 NA NA NA 10.1007/978-1-4757-3663-2
#> 272 NA NA NA 10.1007/978-3-319-93632-1
#> 273 NA NA NA 10.1007/978-3-319-56294-0
#> 274 NA NA NA 10.1007/978-3-319-41573-4
#> 275 NA NA NA 10.1007/978-3-642-35588-2
#> 276 NA NA NA 10.1007/978-1-4614-1365-3
#> 277 NA NA NA 10.1007/978-3-319-51313-3
#> 278 NA NA NA 10.1007/978-3-319-69416-0
#> 279 NA NA NA 10.1007/978-0-387-34675-5
#> 280 NA NA NA 10.1007/978-1-4419-0320-4
#> 281 NA NA NA 10.1007/978-1-4614-7138-7
#> 282 NA NA NA 10.1007/978-981-13-0980-9
#> 283 NA NA NA 10.1007/978-3-642-17656-2
#> 284 NA NA NA 10.1007/978-1-4419-6876-0
#> 285 NA NA NA 10.1007/978-3-319-64069-3
#> 286 NA NA NA 10.1007/978-0-387-77645-3
#> 287 NA NA NA 10.1007/978-1-4757-3449-2
#> 288 NA NA NA 10.1007/978-1-4939-1507-1
#> 289 NA NA NA 10.1007/978-1-4757-2739-5
#> 290 NA NA NA 10.1007/0-387-37344-6
#> 291 NA NA NA 10.1007/978-1-349-08303-9
#> 292 NA NA NA 10.1007/978-3-7908-2349-3
#> 293 NA NA NA 10.1007/978-3-319-56481-4
#> 294 NA NA NA 10.1007/0-387-29053-2
#> 295 NA NA NA 10.1007/978-1-4757-3460-7
#> 296 NA NA NA 10.1007/978-1-4613-0051-9
#> 297 NA NA NA 10.1007/1-4020-3419-9
#> 298 NA NA NA 10.1007/978-3-662-49349-6
#> 299 NA NA NA 10.1007/978-0-387-21540-2
#> 300 NA NA NA 10.1007/978-1-4757-3425-6
#> 301 NA NA NA 10.1007/978-1-4612-2234-7
#> 302 NA NA NA 10.1007/0-387-34240-0
#> 303 NA NA NA 10.1007/978-3-319-35132-2
#> 304 NA NA NA 10.1007/b138696
#> 305 NA NA NA 10.1007/978-3-319-76938-7
#> 306 NA NA NA 10.1007/978-3-319-31641-3
#> 307 NA NA NA 10.1007/978-1-4684-0538-5
#> 308 NA NA NA 10.1007/978-1-4939-4032-5
#> 309 NA NA NA 10.1007/978-1-4612-2512-6
#> 310 NA NA NA 10.1007/978-3-642-55255-7
#> 311 NA NA NA 10.1007/978-3-642-39899-5
#> 312 NA NA NA 10.2991/978-94-6239-079-9
#> 313 NA NA NA 10.1007/978-3-319-52207-4
#> 314 NA NA NA 10.1007/978-3-319-56478-4
#> 315 NA NA NA 10.1007/978-1-4419-9500-1
#> 316 NA NA NA 10.1007/978-1-4614-5743-5
#> 317 NA NA NA 10.1007/978-3-642-28894-4
#> 318 NA NA NA 10.1007/978-3-319-12454-4
#> 319 NA NA NA 10.1007/978-1-4899-7260-6
#> 320 NA NA NA 10.1007/978-3-319-45772-7
#> 321 NA NA NA 10.1007/978-3-319-93549-2
#> 322 NA NA NA 10.1007/978-1-4612-0825-9
#> 323 NA NA NA 10.1007/978-3-030-20933-9
#> 324 NA NA NA 10.1007/978-981-13-6241-5
#> 325 NA NA NA 10.1007/978-3-319-55723-6
#> 326 NA NA NA 10.2991/978-94-91216-83-1
#> 327 NA NA NA 10.1007/978-981-13-5998-9
#> 328 NA NA NA 10.1007/978-1-4613-0147-9
#> 329 NA NA NA 10.1007/978-3-7908-2846-7
#> 330 NA NA NA 10.1007/978-0-8176-8206-4
#> 331 NA NA NA 10.1007/978-3-319-43252-6
#> 332 NA NA NA 10.1007/978-1-4614-2035-4
#> 333 NA NA NA 10.1007/978-3-319-27274-0
#> 334 NA NA NA 10.1007/978-1-4757-2526-1
#> 335 NA NA NA 10.1007/978-3-642-21551-3
#> 336 NA NA NA 10.1007/978-1-4757-1904-8
#> 337 NA NA NA 10.1007/978-1-4612-4348-9
#> 338 NA NA NA 10.1007/978-0-387-68276-1
#> 339 NA NA NA 10.1007/978-3-319-16877-7
#> 340 NA NA NA 10.1007/978-981-10-6557-6
#> 341 NA NA NA 10.1007/978-0-387-21580-8
#> 342 NA NA NA 10.1007/978-3-319-55846-2
#> 343 NA NA NA 10.1007/978-4-431-55336-6
#> 344 NA NA NA 10.1007/978-1-4614-0562-7
#> 345 NA NA NA 10.1007/978-3-319-99389-8
#> 346 NA NA NA 10.1007/0-387-32227-2
#> 347 NA NA NA 10.1007/978-0-387-35099-8
#> 348 NA NA NA 10.1007/978-1-4939-7190-9
#> 349 NA NA NA 10.1007/978-1-4612-1244-7
#> 350 NA NA NA 10.1007/978-1-4613-0035-9
#> 351 NA NA NA 10.1007/978-0-387-77907-2
#> 352 NA NA NA 10.1007/978-1-4612-2854-7
#> 353 NA NA NA 10.1007/978-1-4614-4475-6
#> 354 NA NA NA 10.1007/978-1-4419-8766-2
#> 355 NA NA NA 10.1007/b98818
#> 356 NA NA NA 10.1007/978-94-015-8163-9
#> 357 NA NA NA 10.1007/978-1-4614-2134-4
#> 358 NA NA NA 10.1007/978-1-4614-6862-2
#> 359 NA NA NA 10.1007/978-0-387-68765-0
#> 360 NA NA NA 10.1007/b97848
#> 361 NA NA NA 10.1007/978-3-0348-7958-3
#> 362 NA NA NA 10.1007/978-3-319-73906-9
#> 363 NA NA NA 10.1007/978-1-4757-1862-1
#> 364 NA NA NA 10.1007/978-3-030-13785-4
#> 365 NA NA NA 10.1007/978-1-4614-8687-9
#> 366 NA NA NA 10.1007/978-3-319-18284-1
#> 367 NA NA NA 10.1007/978-1-4614-6114-2
#> 368 NA NA NA 10.1007/978-3-319-44093-4
#> 369 NA NA NA 10.1007/978-3-319-91740-5
#> 370 NA NA NA 10.1007/0-387-29115-6
#> 371 NA NA NA 10.1007/978-1-4614-9443-0
#> 372 NA NA NA 10.1007/978-3-030-17519-1
#> 373 NA NA NA 10.1007/978-1-4612-1554-7
#> 374 NA NA NA 10.1007/0-387-35209-0
#> 375 NA NA NA 10.1007/978-3-319-20585-4
#> 376 NA NA NA 10.1007/978-1-4614-5562-2
#> 377 NA NA NA 10.1007/978-1-4612-4950-4
#> 378 NA NA NA 10.1007/978-1-349-03566-3
#> 379 NA NA NA 10.1007/b98889
#> 380 NA NA NA 10.1007/978-3-642-20192-9
#> 381 NA NA NA 10.1007/978-3-319-32789-1
#> 382 NA NA NA 10.1007/978-1-4614-5369-7
#> 383 NA NA NA 10.1007/978-0-387-48809-7
#> 384 NA NA NA 10.1007/978-1-4614-4072-7
#> 385 NA NA NA 10.1007/978-1-4939-9761-9
#> 386 NA NA NA 10.1007/978-4-431-55900-9
#> 387 NA NA NA 10.1007/978-1-4614-1344-8
#> 388 NA NA NA 10.1007/978-1-4939-0603-1
#> 389 NA NA NA 10.1007/978-3-642-37887-4
#> 390 NA NA NA 10.1007/978-1-4899-3184-9
#> 391 NA NA NA 10.1007/978-981-10-2164-0
#> 392 NA NA NA 10.1007/978-0-8176-4801-5
#> 393 NA NA NA 10.1007/b97277
#> 394 NA NA NA 10.1007/978-3-319-03149-1
#> 395 NA NA NA 10.1007/978-1-4757-3076-0
#> 396 NA NA NA 10.1007/978-1-4939-2818-7
#> 397 NA NA NA 10.1007/978-3-662-47383-2
#> 398 NA NA NA 10.1007/978-0-387-72825-4
#> 399 NA NA NA 10.1007/978-1-4419-9650-3
#> 400 NA NA NA 10.1007/978-3-319-02084-6
#> 401 NA NA NA 10.1007/978-1-4419-9246-8
#> 402 NA NA NA 10.1007/978-1-4612-9995-0
#> 403 NA NA NA 10.1007/978-0-387-70898-0
#> 404 NA NA NA 10.1007/978-981-13-1223-6
#> 405 NA NA NA 10.1007/978-3-319-63886-7
#> 406 NA NA NA 10.1007/978-3-642-29396-2
#> 407 NA NA NA 10.1007/978-981-13-1736-1
#> 408 NA NA NA 10.1007/b98854
#> 409 NA NA NA 10.1007/978-4-431-68544-9
#> 410 NA NA NA 10.1007/b98835
#> 411 NA NA NA 10.1007/978-94-009-3679-9
#> 412 NA NA NA 10.1007/978-3-319-00218-7
#> 413 NA NA NA 10.1007/978-981-13-8075-4
#> 414 NA NA NA 10.1007/978-3-319-11149-0
#> 415 NA NA NA 10.1007/978-3-319-11785-0
#> 416 NA NA NA 10.1007/978-3-662-25092-1
#> 417 NA NA NA 10.1007/b13794
#> 418 NA NA NA 10.1007/978-3-319-50986-0
#> 419 NA NA NA 10.1007/978-1-4939-2137-9
#> 420 NA NA NA 10.1007/978-3-642-32084-2
#> 421 NA NA NA 10.1007/978-3-319-54084-9
#> 422 NA NA NA 10.1007/978-1-4612-0919-5
#> 423 NA NA NA 10.1007/b97478
#> 424 NA NA NA 10.1007/978-981-10-5466-2
#> 425 NA NA NA 10.1007/978-1-4612-1306-2
#> 426 NA NA NA 10.1007/978-3-319-46162-5
#> 427 NA NA NA 10.1007/3-540-28397-8
#> 428 NA NA NA 10.1007/978-3-030-26814-5
#> 429 NA NA NA 10.1007/978-3-319-45599-0
#> 430 NA NA NA 10.1007/978-1-4612-1162-4
#> 431 NA NA NA 10.1007/978-981-10-2594-5
#> 432 NA NA NA 10.1007/978-3-662-48344-2
#> 433 NA NA NA 10.1007/978-1-4614-8573-5
#> 434 NA NA NA 10.1007/978-981-13-3516-7
#> 435 NA NA NA 10.1007/978-3-319-76042-1
#> 436 NA NA NA 10.1007/978-3-642-25969-2
#> 437 NA NA NA 10.1007/978-3-319-64583-4
#> 438 NA NA NA 10.1007/0-387-27605-X
#> 439 NA NA NA 10.1007/978-3-319-55336-8
#> 440 NA NA NA 10.1007/978-3-319-59976-2
#> 441 NA NA NA 10.1007/978-981-287-925-7
#> 442 NA NA NA 10.1007/978-1-349-06711-4
#> 443 NA NA NA 10.1007/978-3-319-02402-8
#> 444 NA NA NA 10.1007/978-3-319-02651-0
#> 445 NA NA NA 10.1007/978-3-319-19039-6
#> 446 NA NA NA 10.1007/978-3-319-18968-0
#> 447 NA NA NA 10.2991/978-94-6239-139-0
#> 448 NA NA NA 10.1007/978-4-431-55339-7
#> 449 NA NA NA 10.1007/978-3-319-95068-6
#> 450 NA NA NA 10.1007/978-1-4614-6443-3
#> 451 NA NA NA 10.1007/978-981-15-1857-7
#> 452 NA NA NA 10.1007/978-3-319-76605-8
#> 453 NA NA NA 10.1007/978-3-662-58541-2
#> 454 NA NA NA 10.1007/978-3-642-36005-3
#> 455 NA NA NA 10.2991/978-94-6239-136-9
#> 456 NA NA NA 10.1007/978-4-431-55585-8
#> 457 NA NA NA 10.1007/0-387-37345-4
#> 458 NA NA NA 10.1007/978-1-4757-3447-8
#> 459 NA NA NA 10.1007/978-3-319-10461-4
#> 460 NA NA NA 10.1007/978-1-4419-9634-3
#> 461 NA NA NA 10.1007/978-3-642-17229-8
#> 462 NA NA NA 10.1007/978-94-017-3515-5
#> 463 NA NA NA 10.1007/0-387-32792-4
#> 464 NA NA NA 10.1007/978-3-319-26311-3
#> 465 NA NA NA 10.1007/978-94-009-2583-0
#> 466 NA NA NA 10.1007/978-3-030-28790-0
#> 467 NA NA NA 10.1007/0-387-31144-0
#> 468 NA NA NA 10.1007/978-1-4757-3071-5
#> 469 NA NA NA 10.1007/978-1-4419-7170-8
#> 470 NA NA NA 10.1007/978-0-387-40054-9
#> 471 NA NA NA 10.1007/978-3-030-01584-8
#> 472 NA NA NA 10.1007/978-3-319-11734-8
#> 473 NA NA NA 10.1007/978-3-319-96422-5
#> 474 NA NA NA 10.1007/978-3-319-41582-6
#> 475 NA NA NA 10.1007/978-4-431-55930-6
#> 476 NA NA NA 10.1007/978-3-319-39756-6
#> 477 NA NA NA 10.1007/978-981-13-9314-3
#> 478 NA NA NA 10.1007/978-981-10-0159-8
#> 479 NA NA NA 10.1007/978-3-642-04898-2
#> 480 NA NA NA 10.1007/978-3-030-05420-5
#> 481 NA NA NA 10.1007/978-3-319-22005-5
#> 482 NA NA NA 10.1007/b101765
#> 483 NA NA NA 10.1007/978-1-4757-3261-0
#> 484 NA NA NA 10.1007/978-3-662-53736-7
#> 485 NA NA NA 10.1007/978-0-387-77956-0
#> 486 NA NA NA 10.1007/978-1-4613-0049-6
#> 487 NA NA NA 10.1007/978-981-13-2248-8
#> 488 NA NA NA 10.1007/978-3-662-44046-9
#> 489 NA NA NA 10.1007/978-3-642-01689-9
#> 490 NA NA NA 10.1007/978-94-015-8567-5
#> 491 NA NA NA 10.2991/978-94-91216-14-5
#> 492 NA NA NA 10.1007/978-0-8176-8421-1
#> 493 NA NA NA 10.1007/978-1-4614-6040-4
#> 494 NA NA NA 10.1007/b97636
#> 495 NA NA NA 10.1007/978-1-4612-2088-6
#> 496 NA NA NA 10.1007/978-3-319-23805-0
#> 497 NA NA NA 10.1007/978-1-4757-3803-2
#> 498 NA NA NA 10.1007/978-3-319-17377-1
#> 499 NA NA NA 10.1007/978-3-319-25433-3
#> 500 NA NA NA 10.1007/978-1-4614-1347-9
#> 501 NA NA NA 10.1007/978-3-319-06692-9
#> 502 NA NA NA 10.1007/978-3-319-31260-6
#> 503 NA NA NA 10.1007/978-3-319-98926-6
#> 504 NA NA NA 10.1007/978-3-030-02914-2
#> 505 NA NA NA 10.1007/978-3-030-18187-1
#> 506 NA NA NA 10.1007/978-981-10-5194-4
#> 507 NA NA NA 10.1007/978-1-4939-4020-2
#> 508 NA NA NA 10.1007/978-3-319-32768-6
#> 509 NA NA NA 10.1007/978-81-322-2364-1
#> 510 NA NA NA 10.1007/978-1-4939-1471-5
#> 511 NA NA NA 10.1007/978-1-4419-8342-8
#> 512 NA NA NA 10.1007/978-1-4471-0657-9
#> 513 NA NA NA 10.1007/0-387-27656-4
#> 514 NA NA NA 10.1007/978-1-4612-2644-4
#> 515 NA NA NA 10.1007/978-1-4419-7245-3
#> 516 NA NA NA 10.1007/978-4-431-54574-3
#> 517 NA NA NA 10.1007/978-1-4612-2876-9
#> 518 NA NA NA 10.1007/978-1-4612-1192-1
#> 519 NA NA NA 10.1007/978-981-15-0066-4
#> 520 NA NA NA 10.1007/978-3-319-05536-7
#> 521 NA NA NA 10.1007/978-3-319-28158-2
#> 522 NA NA NA 10.1007/978-3-319-44048-4
#> 523 NA NA NA 10.1007/0-387-31075-4
#> 524 NA NA NA 10.1007/978-1-4419-5825-9
#> 525 NA NA NA 10.1007/b98955
#> 526 NA NA NA 10.1007/978-1-4939-2122-5
#> 527 NA NA NA 10.1007/978-3-319-12442-1
#> 528 NA NA NA 10.1007/978-88-470-0815-1
#> 529 NA NA NA 10.1007/978-3-642-11363-5
#> 530 NA NA NA 10.1007/978-3-319-72634-2
#> 531 NA NA NA 10.1007/978-1-4757-2412-7
#> 532 NA NA NA 10.1007/978-1-4614-5696-4
#> 533 NA NA NA 10.1007/978-1-4614-8414-1
#> 534 NA NA NA 10.1007/978-81-322-0677-4
#> 535 NA NA NA 10.1007/978-3-319-28770-6
#> 536 NA NA NA 10.1007/978-1-4614-3900-4
#> 537 NA NA NA 10.1007/978-3-319-65331-0
#> 538 NA NA NA 10.1007/978-1-4419-8339-8
#> 539 NA NA NA 10.1007/978-0-387-73194-0
#> 540 NA NA NA 10.1007/b97842
#> 541 NA NA NA 10.1007/978-1-4614-8154-6
#> 542 NA NA NA 10.1007/978-3-319-17329-0
#> 543 NA NA NA 10.1007/978-3-642-32931-9
#> 544 NA NA NA 10.1007/978-1-4899-6858-6
#> 545 NA NA NA 10.1007/978-981-15-2552-0
#> 546 NA NA NA 10.1007/978-3-662-57380-8
#> 547 NA NA NA 10.1007/978-1-4419-7165-4
#> 548 NA NA NA 10.1007/978-1-4939-0983-4
#> 549 NA NA NA 10.1007/978-981-13-1550-3
#> 550 NA NA NA 10.1007/978-981-10-7164-5
#> 551 NA NA NA 10.1007/978-3-319-21416-0
#> 552 NA NA NA 10.1007/978-1-4614-6892-9
#> 553 NA NA NA 10.1007/978-4-431-55570-4
#> 554 NA NA NA 10.1007/978-1-4939-8844-0
#> 555 NA NA NA 10.1007/978-3-642-35512-7
#> 556 NA NA NA 10.1007/978-88-470-5379-3
#> 557 NA NA NA 10.1007/978-1-4614-6871-4
#> 558 NA NA NA 10.1007/978-1-4939-1100-4
#> 559 NA NA NA 10.1007/978-1-4614-7792-1
#> 560 NA NA NA 10.1007/978-3-662-49332-8
#> 561 NA NA NA 10.1007/978-3-319-96941-1
#> 562 NA NA NA 10.1007/978-3-319-05801-6
#> 563 NA NA NA 10.1007/978-3-319-98857-3
#> 564 NA NA NA 10.1007/978-3-319-65304-4
#> 565 NA NA NA 10.1007/978-3-319-40066-2
#> 566 NA NA NA 10.1007/978-3-319-13881-7
#> 567 NA NA NA 10.1007/978-3-030-16399-0
#> 568 NA NA NA 10.1007/978-3-030-15310-6
#> 569 NA NA NA 10.1007/978-981-10-8627-4
#> 570 NA NA NA 10.1007/978-3-319-05555-8
#> 571 NA NA NA 10.1007/978-3-319-78784-8
#> 572 NA NA NA 10.1007/978-981-10-7829-3
#> 573 NA NA NA 10.1007/978-3-319-18536-1
#> 574 NA NA NA 10.1007/978-3-642-45674-9
#> 575 NA NA NA 10.1007/978-3-642-48736-1
#> 576 NA NA NA 10.1007/978-81-322-2514-0
#> 577 NA NA NA 10.1007/0-387-28393-5
#> 578 NA NA NA 10.1007/978-1-4614-7428-9
#> 579 NA NA NA 10.1007/978-1-4614-3652-2
#> 580 NA NA NA 10.1007/978-3-319-67386-8
#> 581 NA NA NA 10.1007/978-981-13-1534-3
#> 582 NA NA NA 10.1007/978-1-4419-1742-3
#> 583 NA NA NA 10.1007/978-1-4614-8715-9
#> 584 NA NA NA 10.1007/978-3-319-41259-7
#> 585 NA NA NA 10.1007/978-1-4614-5245-4
#> 586 NA NA NA 10.1007/978-81-322-3643-6
#> 587 NA NA NA 10.1007/978-1-4614-5779-4
#> 588 NA NA NA 10.1007/0-387-28014-6
#> 589 NA NA NA 10.1007/978-3-319-19219-2
#> 590 NA NA NA 10.1007/978-1-4614-7618-4
#> 591 NA NA NA 10.1007/978-3-319-98029-4
#> 592 NA NA NA 10.1007/978-3-642-33657-7
#> 593 NA NA NA 10.1007/978-1-4939-0876-9
#> 594 NA NA NA 10.1007/978-3-319-55639-0
#> 595 NA NA NA 10.1007/978-1-4419-9782-1
#> 596 NA NA NA 10.1007/978-3-319-19518-6
#> 597 NA NA NA 10.1007/978-3-642-52307-6
#> 598 NA NA NA 10.1007/978-0-8176-4807-7
#> 599 NA NA NA 10.1007/978-3-319-22476-3
#> 600 NA NA NA 10.1007/978-3-540-68651-4
#> 601 NA NA NA 10.1007/978-1-4684-6316-3
#> 602 NA NA NA 10.1007/978-3-319-79011-4
#> 603 NA NA NA 10.1007/978-3-319-28316-6
#> 604 NA NA NA 10.1007/978-3-642-73822-7
#> 605 NA NA NA 10.1007/978-3-319-65355-6
#> 606 NA NA NA 10.1007/978-3-642-17086-7
#> 607 NA NA NA 10.1007/978-1-4939-8850-1
#> 608 NA NA NA 10.1007/978-3-642-55345-5
#> 609 NA NA NA 10.1007/978-3-319-77647-7
#> 610 NA NA NA 10.1007/978-3-642-93235-9
#> 611 NA NA NA 10.1007/978-3-030-30611-3
#> 612 NA NA NA 10.1007/978-0-387-78151-8
#> 613 NA NA NA 10.1007/b138989
#> 614 NA NA NA 10.1007/978-3-319-33946-7
#> 615 NA NA NA 10.1007/978-3-319-39065-9
#> 616 NA NA NA 10.1007/978-3-319-76315-6
#> 617 NA NA NA 10.1007/b138566
#> 618 NA NA NA 10.1007/978-1-4614-9602-1
#> 619 NA NA NA 10.1007/978-0-387-44970-8
#> 620 NA NA NA 10.1007/978-3-030-00039-4
#> 621 NA NA NA 10.1007/978-3-319-52452-8
#> 622 NA NA NA 10.1007/978-4-431-55573-5
#> 623 NA NA NA 10.1007/0-387-31610-8
#> 624 NA NA NA 10.1007/978-1-4614-6003-9
#> 625 NA NA NA 10.1007/978-981-10-6436-4
#> 626 NA NA NA 10.1007/978-1-4614-6449-5
#> 627 NA NA NA 10.1007/978-3-319-61552-3
#> 628 NA NA NA 10.1007/978-3-642-83784-5
#> 629 NA NA NA 10.1007/978-981-10-0871-9
#> 630 NA NA NA 10.1007/978-1-4757-3235-1
#> 631 NA NA NA 10.1007/978-3-319-19425-7
#> 632 NA NA NA 10.1007/978-981-10-0126-0
#> 633 NA NA NA 10.1007/978-1-4939-6640-0
#> 634 NA NA NA 10.1007/978-3-319-12517-6
#> 635 NA NA NA 10.1007/978-1-4614-2245-7
#> 636 NA NA NA 10.1007/b136588
#> 637 NA NA NA 10.1007/978-3-319-18539-2
#> 638 NA NA NA 10.1007/978-3-540-32691-5
#> 639 NA NA NA 10.1007/978-1-4757-3692-2
#> 640 NA NA NA 10.1007/b98886
#> 641 NA NA NA 10.1007/978-94-007-0789-4
#> 642 NA NA NA 10.1007/978-1-4614-9041-8
#> 643 NA NA NA 10.1007/978-3-319-76035-3
#> 644 NA NA NA 10.1007/978-0-8176-4749-0
#> 645 NA NA NA 10.1007/978-3-319-02967-2
#> 646 NA NA NA 10.1007/978-81-322-2461-7
#> 647 NA NA NA 10.1007/978-1-4614-0326-5
#> 648 NA NA NA 10.1007/978-981-10-4194-5
#> 649 NA NA NA 10.1007/0-387-36276-2
#> 650 NA NA NA 10.1007/978-3-642-51659-7
#> 651 NA NA NA 10.1007/978-3-319-05260-1
#> 652 NA NA NA 10.1007/978-1-4471-3675-0
#> 653 NA NA NA 10.1007/978-3-319-02532-2
#> 654 NA NA NA 10.1007/978-3-642-32419-2
#> 655 NA NA NA 10.1007/978-1-4613-9305-4
#> 656 NA NA NA 10.1007/978-981-13-0827-7
#> 657 NA NA NA 10.1007/978-0-387-78167-9
#> 658 NA NA NA 10.1007/978-3-319-50186-4
#> 659 NA NA NA 10.1007/0-387-30107-0
#> 660 NA NA NA 10.1007/978-3-319-31266-8
#> 661 NA NA NA 10.1007/978-3-642-20584-2
#> 662 NA NA NA 10.1007/978-1-4614-7846-1
#> 663 NA NA NA 10.1007/978-3-319-31245-3
#> 664 NA NA NA 10.1007/978-3-642-36276-7
#> 665 NA NA NA 10.1007/978-3-319-73241-1
#> 666 NA NA NA 10.1007/978-1-4614-8163-8
#> 667 NA NA NA 10.1007/978-3-642-93220-5
#> 668 NA NA NA 10.1007/978-981-10-3794-8
#> 669 NA NA NA 10.1007/978-3-030-31503-0
#> 670 NA NA NA 10.1007/978-3-030-10442-9
#> 671 NA NA NA 10.1007/0-387-33960-4
#> 672 NA NA NA 10.1007/978-1-4757-2523-0
#> 673 NA NA NA 10.1007/978-3-319-12550-3
#> 674 NA NA NA 10.1007/978-3-319-17704-5
#> 675 NA NA NA 10.1007/978-0-8176-8361-0
#> 676 NA NA NA 10.1007/978-3-319-12694-4
#> 677 NA NA NA 10.1007/978-1-4614-8708-1
#> 678 NA NA NA 10.1007/978-1-4939-8853-2
#> 679 NA NA NA 10.1007/978-3-642-93308-0
#> 680 NA NA NA 10.1007/978-0-8176-8168-5
#> 681 NA NA NA 10.1007/978-3-319-30634-6
#> 682 NA NA NA 10.1007/978-3-319-04579-5
#> 683 NA NA NA 10.1007/978-3-319-01264-3
#> 684 NA NA NA 10.1007/978-3-319-42571-9
#> 685 NA NA NA 10.1007/978-1-4757-2555-1
#> 686 NA NA NA 10.1007/978-981-10-7820-0
#> 687 NA NA NA 10.1007/978-1-4614-8775-3
#> 688 NA NA NA 10.1007/978-3-319-65313-6
#> 689 NA NA NA 10.1007/978-0-8176-4811-4
#> 690 NA NA NA 10.1007/b97288
#> 691 NA NA NA 10.1007/978-1-4419-7628-4
#> 692 NA NA NA 10.1007/978-94-011-0615-3
#> 693 NA NA NA 10.1007/978-3-319-25226-1
#> 694 NA NA NA 10.1007/978-0-387-77244-8
#> 695 NA NA NA 10.1007/978-3-319-45809-0
#> 696 NA NA NA 10.1007/978-1-4757-2728-9
#> 697 NA NA NA 10.1007/978-3-319-50272-4
#> 698 NA NA NA 10.1007/978-94-015-9468-4
#> 699 NA NA NA 10.1007/978-3-319-42568-9
#> 700 NA NA NA 10.1007/978-3-319-44811-4
#> 701 NA NA NA 10.1007/978-1-4757-3663-2
#> 702 NA NA NA 10.1007/978-3-319-93632-1
#> 703 NA NA NA 10.1007/978-1-4419-7762-5
#> 704 NA NA NA 10.1007/978-3-642-35588-2
#> 705 NA NA NA 10.1007/978-3-319-69416-0
#> 706 NA NA NA 10.1007/978-3-319-18029-8
#> 707 NA NA NA 10.1007/978-1-4612-3070-0
#> 708 NA NA NA 10.1007/978-3-319-73471-2
#> 709 NA NA NA 10.1007/978-0-387-93837-0
#> 710 NA NA NA 10.1007/978-3-642-93503-9
#> 711 NA NA NA 10.1007/978-981-15-1181-3
#> 712 NA NA NA 10.1007/978-3-319-73770-6
#> 713 NA NA NA 10.1007/978-3-642-10748-1
#> 714 NA NA NA 10.1007/978-3-319-66221-3
#> 715 NA NA NA 10.1007/978-1-4757-3460-7
#> 716 NA NA NA 10.1007/978-0-387-72899-5
#> 717 NA NA NA 10.1007/978-3-642-52498-1
#> 718 NA NA NA 10.1007/978-3-319-35132-2
#> 719 NA NA NA 10.1007/b138696
#> 720 NA NA NA 10.1007/978-3-319-31641-3
#> 721 NA NA NA 10.1007/978-1-4757-4290-9
#> 722 NA NA NA 10.1007/978-94-015-9508-7
#> 723 NA NA NA 10.1007/978-1-4612-5138-5
#> 724 NA NA NA 10.1007/978-3-319-28985-4
#> 725 NA NA NA 10.1007/978-3-319-32562-0
#> 726 NA NA NA 10.1007/978-3-642-39899-5
#> 727 NA NA NA 10.1007/978-3-662-07891-4
#> 728 NA NA NA 10.1007/978-1-4020-4650-6
#> 729 NA NA NA 10.1007/978-1-4939-2134-8
#> 730 NA NA NA 10.1007/978-3-319-12454-4
#> 731 NA NA NA 10.1007/978-1-4419-8477-7
#> 732 NA NA NA 10.1007/978-3-030-11671-2
#> 733 NA NA NA 10.1007/978-3-030-16368-6
#> 734 NA NA NA 10.1007/978-81-322-3628-3
#> 735 NA NA NA 10.1007/978-1-4614-8981-8
#> 736 NA NA NA 10.1007/978-3-642-27225-7
#> 737 NA NA NA 10.1007/978-1-4757-4108-7
#> 738 NA NA NA 10.1007/978-1-4614-4854-9
#> 739 NA NA NA 10.1007/978-3-642-23502-3
#> 740 NA NA NA 10.1007/978-3-030-20933-9
#> 741 NA NA NA 10.1007/978-981-13-5998-9
#> 742 NA NA NA 10.1007/978-3-319-23558-5
#> 743 NA NA NA 10.1007/978-1-4419-6646-9
#> 744 NA NA NA 10.1007/978-3-319-43252-6
#> 745 NA NA NA 10.1007/978-981-10-6557-6
#> 746 NA NA NA 10.1007/978-3-319-55846-2
#> 747 NA NA NA 10.1007/978-1-4419-9887-3
#> 748 NA NA NA 10.1007/978-1-4614-4018-5
#> 749 NA NA NA 10.1007/978-3-319-99389-8
#> 750 NA NA NA 10.1007/978-3-319-14093-3
#> 751 NA NA NA 10.1007/978-1-4419-8766-2
#> 752 NA NA NA 10.1007/978-3-642-75593-4
#> 753 NA NA NA 10.1007/978-3-642-93167-3
#> 754 NA NA NA 10.1007/978-1-4419-9842-2
#> 755 NA NA NA 10.1007/978-1-4614-6862-2
#> 756 NA NA NA 10.1007/978-3-642-78740-9
#> 757 NA NA NA 10.1007/978-1-4614-5428-1
#> 758 NA NA NA 10.1007/978-1-4614-3122-0
#> 759 NA NA NA 10.1007/978-3-030-13785-4
#> 760 NA NA NA 10.1007/978-3-030-28626-2
#> 761 NA NA NA 10.1007/978-0-387-68639-4
#> 762 NA NA NA 10.1007/978-1-4614-6114-2
#> 763 NA NA NA 10.1007/978-3-030-20709-0
#> 764 NA NA NA 10.1007/978-3-319-44093-4
#> 765 NA NA NA 10.1007/978-3-319-66146-9
#> 766 NA NA NA 10.1007/978-1-4614-9443-0
#> 767 NA NA NA 10.1007/978-3-030-17519-1
#> 768 NA NA NA 10.1007/978-94-010-0337-7
#> 769 NA NA NA 10.1007/978-3-319-46076-5
#> 770 NA NA NA 10.1007/978-3-319-32789-1
#> 771 NA NA NA 10.1007/978-1-4419-7976-6
#> 772 NA NA NA 10.1007/978-1-4614-3520-4
#> 773 NA NA NA 10.1007/978-1-4614-4072-7
#> 774 NA NA NA 10.1007/978-4-431-55900-9
#> 775 NA NA NA 10.1007/978-3-642-37887-4
#> 776 NA NA NA 10.1007/978-981-10-2164-0
#> 777 NA NA NA 10.1007/978-0-8176-4801-5
#> 778 NA NA NA 10.1007/978-3-642-48334-9
#> 779 NA NA NA 10.1007/978-3-642-93341-7
#> 780 NA NA NA 10.1007/978-3-319-63886-7
#> 781 NA NA NA 10.1007/978-3-319-55718-2
#> 782 NA NA NA 10.1007/978-3-642-93218-2
#> 783 NA NA NA 10.1007/978-3-319-00218-7
#> 784 NA NA NA 10.1007/978-3-319-50986-0
#> 785 NA NA NA 10.1007/978-1-4939-2137-9
#> 786 NA NA NA 10.1007/978-3-319-14475-7
#> 787 NA NA NA 10.1007/978-1-4684-0510-1
#> 788 NA NA NA 10.1007/978-3-319-11125-4
#> 789 NA NA NA 10.1007/978-3-030-26814-5
#> 790 NA NA NA 10.1007/978-1-4419-1586-3
#> 791 NA NA NA 10.1007/978-3-662-48344-2
#> 792 NA NA NA 10.1007/978-981-13-3516-7
#> 793 NA NA NA 10.1007/978-3-642-25969-2
#> 794 NA NA NA 10.1007/978-3-319-59976-2
#> 795 NA NA NA 10.1007/978-1-4613-0217-9
#> 796 NA NA NA 10.1007/978-1-4419-7338-2
#> 797 NA NA NA 10.1007/978-981-287-925-7
#> 798 NA NA NA 10.1007/978-3-319-02402-8
#> 799 NA NA NA 10.1007/978-3-319-18968-0
#> 800 NA NA NA 10.1007/978-1-4612-2294-1
#> 801 NA NA NA 10.1007/978-3-319-76605-8
#> 802 NA NA NA 10.1007/978-3-662-58541-2
#> 803 NA NA NA 10.1007/978-4-431-55585-8
#> 804 NA NA NA 10.1007/978-3-030-29184-6
#> 805 NA NA NA 10.1007/978-1-4757-3447-8
#> 806 NA NA NA 10.1007/978-3-319-10461-4
#> 807 NA NA NA 10.1007/978-1-4939-0977-3
#> 808 NA NA NA 10.1007/978-1-4419-7170-8
#> 809 NA NA NA 10.1007/978-3-319-96422-5
#> 810 NA NA NA 10.1007/978-981-10-7826-2
#> 811 NA NA NA 10.1007/978-3-642-93237-3
#> 812 NA NA NA 10.1007/978-3-319-41582-6
#> 813 NA NA NA 10.1007/978-3-642-93184-0
#> 814 NA NA NA 10.1007/978-3-030-34702-4
#> 815 NA NA NA 10.1007/978-3-319-07212-8
#> 816 NA NA NA 10.1007/978-1-4757-3247-4
#> 817 NA NA NA 10.1007/978-3-030-05420-5
#> 818 NA NA NA 10.1007/b97379
#> 819 NA NA NA 10.1007/978-3-319-97487-3
#> 820 NA NA NA 10.1007/978-3-319-22005-5
#> 821 NA NA NA 10.1007/978-1-4614-1353-0
#> 822 NA NA NA 10.1007/978-3-540-26577-1
#> 823 NA NA NA 10.1007/978-1-4757-3261-0
#> 824 NA NA NA 10.1007/978-1-4614-8223-9
#> 825 NA NA NA 10.1007/978-81-322-2831-8
#> 826 NA NA NA 10.1007/978-3-662-53736-7
#> 827 NA NA NA 10.1007/978-1-4614-6363-4
#> 828 NA NA NA 10.1007/978-1-4614-5586-8
#> 829 NA NA NA 10.1007/978-3-319-39489-3
#> 830 NA NA NA 10.1007/978-1-4614-8414-1
#> 831 NA NA NA 10.1007/978-3-030-30410-2
#> 832 NA NA NA 10.1007/b97636
#> 833 NA NA NA 10.1007/b97411
#> 834 NA NA NA 10.1007/978-3-319-23805-0
#> 835 NA NA NA 10.1007/978-1-4419-9076-1
#> 836 NA NA NA 10.1007/978-1-4939-0005-3
#> 837 NA NA NA 10.1007/978-1-4939-7693-5
#> 838 NA NA NA 10.1007/978-3-319-25433-3
#> 839 NA NA NA 10.1007/0-387-27782-X
#> 840 NA NA NA 10.1007/978-3-319-52677-5
#> 841 NA NA NA 10.1007/978-3-319-98926-6
#> 842 NA NA NA 10.1007/978-3-030-02914-2
#> 843 NA NA NA 10.1007/978-3-030-18187-1
#> 844 NA NA NA 10.1007/978-1-4757-3466-9
#> 845 NA NA NA 10.1007/978-94-017-5608-2
#> 846 NA NA NA 10.1007/978-0-387-78193-8
#> 847 NA NA NA 10.1007/978-1-4614-1302-8
#> 848 NA NA NA 10.1007/978-3-319-28158-2
#> 849 NA NA NA 10.1007/978-3-319-75295-2
#> 850 NA NA NA 10.1007/978-1-4614-6849-3
#> 851 NA NA NA 10.1007/978-3-319-28770-6
#> 852 NA NA NA 10.1007/978-981-10-3307-0
#> 853 NA NA NA 10.1007/978-981-13-9776-9
#> 854 NA NA NA 10.1007/978-3-319-17329-0
#> 855 NA NA NA 10.1007/978-3-319-77219-6
#> 856 NA NA NA 10.1007/978-981-15-1476-0
#> 857 NA NA NA 10.1007/978-3-642-93355-4
#> 858 NA NA NA 10.1007/978-3-662-57380-8
#> 859 NA NA NA 10.1007/978-981-10-7164-5
#> 860 NA NA NA 10.1007/978-3-319-89824-7
#> 861 NA NA NA 10.1007/978-3-319-00035-0
#> 862 NA NA NA 10.1007/978-3-642-35512-7
#> 863 NA NA NA 10.1007/978-3-319-55708-3
#> 864 NA NA NA 10.1007/978-3-319-00032-9
#> 865 NA NA NA 10.1007/978-981-13-9306-8
#> 866 NA NA NA 10.1007/b60971
#> 867 NA NA NA 10.1007/978-981-10-2341-5
#> 868 NA NA NA 10.1007/978-3-319-96941-1
#> 869 NA NA NA 10.1007/978-3-319-68264-8
#> 870 NA NA NA 10.1007/978-3-319-48015-2
#> 871 NA NA NA 10.1007/978-1-349-09952-8
#> 872 NA NA NA 10.1007/978-981-10-8627-4
#> 873 NA NA NA 10.1007/978-3-319-07875-5
#> 874 NA NA NA 10.1007/978-3-642-01976-0
#> 875 NA NA NA 10.1007/978-3-319-29854-2
#> 876 NA NA NA 10.1007/978-1-4614-7789-1
#> 877 NA NA NA 10.1007/978-3-030-21158-5
#> 878 NA NA NA 10.1007/978-3-319-28599-3
#> 879 NA NA NA 10.1007/978-1-4614-4738-2
#> 880 NA NA NA 10.1007/978-3-030-20374-0
#> 881 NA NA NA 10.1007/978-4-431-55276-5
#> 882 NA NA NA 10.1007/978-981-10-0152-9
#> 883 NA NA NA 10.1007/978-1-4614-3652-2
#> 884 NA NA NA 10.1007/978-3-642-46462-1
#> 885 NA NA NA 10.1007/978-81-322-3643-6
#> 886 NA NA NA 10.1007/b138400
#> 887 NA NA NA 10.1007/978-0-387-76371-2
#> 888 NA NA NA 10.1007/978-3-662-45171-7
#> 889 NA NA NA 10.1007/978-981-10-4856-2
#> 890 NA NA NA 10.1007/978-3-319-01517-0
#> 891 NA NA NA 10.1007/978-1-4613-8536-3
#> 892 NA NA NA 10.1007/978-1-4419-9934-4
#> 893 NA NA NA 10.1007/978-3-642-36850-9
#> 894 NA NA NA 10.1007/978-1-4612-1860-9
#> 895 NA NA NA 10.1007/978-981-10-5296-5
#> 896 NA NA NA 10.1007/978-3-030-30611-3
#> 897 NA NA NA 10.1007/b138989
#> 898 NA NA NA 10.1007/978-81-322-0659-0
#> 899 NA NA NA 10.1007/978-3-319-76315-6
#> 900 NA NA NA 10.1007/978-3-319-38959-2
#> 901 NA NA NA 10.1007/978-1-4939-2614-5
#> 902 NA NA NA 10.1007/978-0-387-92870-8
#> 903 NA NA NA 10.1007/978-3-319-92985-9
#> 904 NA NA NA 10.1007/978-3-319-45528-0
#> 905 NA NA NA 10.1007/978-1-4614-4343-8
#> 906 NA NA NA 10.1007/978-3-642-48710-1
#> 907 NA NA NA 10.1007/978-4-431-55239-0
#> 908 NA NA NA 10.1007/978-3-319-27174-3
#> 909 NA NA NA 10.1007/978-3-642-15923-7
#> 910 NA NA NA 10.1007/978-3-319-14436-8
#> 911 NA NA NA 10.1007/978-981-10-6436-4
#> 912 NA NA NA 10.1007/978-1-4612-0669-9
#> 913 NA NA NA 10.1007/978-3-642-16521-4
#> 914 NA NA NA 10.1007/978-3-642-31936-5
#> 915 NA NA NA 10.1007/978-3-319-96944-2
#> 916 NA NA NA 10.1007/978-4-431-54807-2
#> 917 NA NA NA 10.1007/978-1-4614-0406-4
#> 918 NA NA NA 10.1007/978-981-10-0871-9
#> 919 NA NA NA 10.1007/978-3-319-93773-1
#> 920 NA NA NA 10.1007/978-1-4757-3235-1
#> 921 NA NA NA 10.1007/978-3-319-28725-6
#> 922 NA NA NA 10.1007/0-387-31607-8
#> 923 NA NA NA 10.1007/978-1-4614-5897-5
#> 924 NA NA NA 10.1007/978-1-4614-7381-7
#> 925 NA NA NA 10.1007/978-3-319-64221-5
#> 926 NA NA NA 10.1007/978-3-319-33153-9
#> 927 NA NA NA 10.1007/978-3-319-00840-0
#> 928 NA NA NA 10.1007/978-1-4614-4720-7
#> 929 NA NA NA 10.1007/978-1-4757-3692-2
#> 930 NA NA NA 10.1007/978-3-642-21037-2
#> 931 NA NA NA 10.1007/978-94-007-0789-4
#> 932 NA NA NA 10.1007/b139025
#> 933 NA NA NA 10.1007/978-3-319-02967-2
#> 934 NA NA NA 10.1007/978-981-10-0401-8
#> 935 NA NA NA 10.1007/978-1-4419-1270-1
#> 936 NA NA NA 10.1007/978-3-030-26006-4
#> 937 NA NA NA 10.1007/978-3-319-55789-2
#> 938 NA NA NA 10.1007/978-81-322-2461-7
#> 939 NA NA NA 10.1007/978-1-4614-0326-5
#> 940 NA NA NA 10.1007/978-3-319-89635-9
#> 941 NA NA NA 10.1007/978-1-4614-3655-3
#> 942 NA NA NA 10.1007/978-3-642-46890-2
#> 943 NA NA NA 10.1007/978-3-319-45614-0
#> 944 NA NA NA 10.1007/978-3-319-11997-7
#> 945 NA NA NA 10.1007/978-3-030-26818-3
#> 946 NA NA NA 10.1007/978-3-319-21347-7
#> 947 NA NA NA 10.1007/978-81-322-1786-2
#> 948 NA NA NA 10.1007/978-1-4614-8788-3
#> 949 NA NA NA 10.1007/978-1-4614-7846-1
#> 950 NA NA NA 10.1007/978-1-4939-1702-0
#> 951 NA NA NA 10.1007/978-3-319-73241-1
#> 952 NA NA NA 10.1007/978-3-642-76307-6
#> 953 NA NA NA 10.1007/978-3-642-54539-9
#> 954 NA NA NA 10.1007/978-3-540-68721-4
#> 955 NA NA NA 10.1007/978-981-10-3794-8
#> 956 NA NA NA 10.1007/978-3-319-16238-6
#> 957 NA NA NA 10.1007/978-3-319-17704-5
#> 958 NA NA NA 10.1007/978-3-319-31822-6
#> 959 NA NA NA 10.1007/978-0-8176-8361-0
#> 960 NA NA NA 10.1007/978-81-322-2325-2
#> 961 NA NA NA 10.1007/978-1-4939-8853-2
#> 962 NA NA NA 10.1007/978-3-030-22625-1
#> 963 NA NA NA 10.1007/978-3-642-45587-2
#> 964 NA NA NA 10.1007/978-3-319-01264-3
#> 965 NA NA NA 10.1007/978-3-642-57292-0
#> 966 NA NA NA 10.1007/978-3-642-34333-9
#> 967 NA NA NA 10.1007/978-3-319-48414-3
#> 968 NA NA NA 10.1007/978-1-4613-8740-4
#> 969 NA NA NA 10.1007/978-1-137-51045-7
#> 970 NA NA NA 10.1007/978-94-010-3139-4
#> 971 NA NA NA 10.1007/978-1-4419-1764-5
#> 972 NA NA NA 10.1007/978-3-319-28341-8
#> 973 NA NA NA 10.1007/978-3-319-25226-1
#> 974 NA NA NA 10.1007/978-3-642-45138-6
#> 975 NA NA NA 10.1007/978-1-4419-9857-6
#> 976 NA NA NA 10.1007/978-3-319-50272-4
#> 977 NA NA NA 10.1007/0-387-34232-X
#> 978 NA NA NA 10.1007/978-3-030-26036-1
#> 979 NA NA NA 10.1007/978-1-4757-3663-2
#> 980 NA NA NA 10.1007/3-540-31720-1
#> 981 NA NA NA 10.1007/978-3-642-35588-2
#> 982 NA NA NA 10.1007/978-3-319-51313-3
#> 983 NA NA NA 10.1007/978-3-319-32185-1
#> 984 NA NA NA 10.1007/978-1-4419-0320-4
#> 985 NA NA NA 10.1007/978-981-13-0980-9
#> 986 NA NA NA 10.1007/978-3-319-18029-8
#> 987 NA NA NA 10.1007/978-3-642-17656-2
#> 988 NA NA NA 10.1007/978-1-4419-6876-0
#> 989 NA NA NA 10.1007/978-3-319-64069-3
#> 990 NA NA NA 10.1007/978-3-7908-2349-3
#> 991 NA NA NA 10.1007/978-3-319-56481-4
#> 992 NA NA NA 10.1007/978-3-319-72104-0
#> 993 NA NA NA 10.1007/978-3-319-20502-1
#> 994 NA NA NA 10.1057/978-1-137-49385-9
#> 995 NA NA NA 10.1007/978-3-662-49349-6
#> 996 NA NA NA 10.1007/978-3-319-11982-3
#> 997 NA NA NA 10.1007/978-3-642-52498-1
#> 998 NA NA NA 10.1007/b138696
#> 999 NA NA NA 10.1007/978-3-642-75040-3
#> 1000 NA NA NA 10.1007/978-3-319-10650-2
#> 1001 NA NA NA 10.1007/978-1-4757-4290-9
#> 1002 NA NA NA 10.1007/978-1-4939-4032-5
#> 1003 NA NA NA 10.1007/978-3-642-55255-7
#> 1004 NA NA NA 10.1007/978-3-662-12516-8
#> 1005 NA NA NA 10.1007/978-1-4615-9670-7
#> 1006 NA NA NA 10.1007/978-3-319-03242-9
#> 1007 NA NA NA 10.1007/978-1-4614-8594-0
#> 1008 NA NA NA 10.1007/978-3-030-11671-2
#> 1009 NA NA NA 10.1007/978-81-322-3628-3
#> 1010 NA NA NA 10.1007/978-3-319-55723-6
#> 1011 NA NA NA 10.1007/978-1-4939-9429-8
#> 1012 NA NA NA 10.2991/978-94-91216-83-1
#> 1013 NA NA NA 10.1007/978-3-319-43252-6
#> 1014 NA NA NA 10.1007/978-1-349-12809-9
#> 1015 NA NA NA 10.1007/978-3-642-18062-0
#> 1016 NA NA NA 10.1007/978-1-4614-8145-4
#> 1017 NA NA NA 10.1007/978-3-319-27274-0
#> 1018 NA NA NA 10.1007/978-3-319-26497-4
#> 1019 NA NA NA 10.1007/978-3-319-16877-7
#> 1020 NA NA NA 10.1007/978-1-4614-8423-3
#> 1021 NA NA NA 10.1007/978-1-4419-5525-8
#> 1022 NA NA NA 10.1007/978-3-642-78817-8
#> 1023 NA NA NA 10.1007/978-981-13-2146-7
#> 1024 NA NA NA 10.1007/978-3-7908-2593-0
#> 1025 NA NA NA 10.1007/978-1-4419-8766-2
#> 1026 NA NA NA 10.1007/978-1-4612-6099-8
#> 1027 NA NA NA 10.1007/978-3-0348-7958-3
#> 1028 NA NA NA 10.1007/978-3-319-73906-9
#> 1029 NA NA NA 10.1007/978-1-4939-6568-7
#> 1030 NA NA NA 10.1007/978-3-030-13785-4
#> 1031 NA NA NA 10.1007/978-4-431-54974-1
#> 1032 NA NA NA 10.1007/978-3-642-48340-0
#> 1033 NA NA NA 10.1007/978-3-030-20709-0
#> 1034 NA NA NA 10.1007/978-3-319-38867-0
#> 1035 NA NA NA 10.1007/978-981-13-3609-6
#> 1036 NA NA NA 10.1007/978-3-642-99766-2
#> 1037 NA NA NA 10.1007/978-3-030-31915-1
#> 1038 NA NA NA 10.1007/978-3-540-71297-8
#> 1039 NA NA NA 10.1007/978-1-4612-1017-7
#> 1040 NA NA NA 10.1007/978-0-8176-4801-5
#> 1041 NA NA NA 10.1007/978-0-387-27586-4
#> 1042 NA NA NA 10.1007/978-1-4613-0121-9
#> 1043 NA NA NA 10.1007/978-81-322-0786-3
#> 1044 NA NA NA 10.1007/978-1-349-11331-6
#> 1045 NA NA NA 10.1007/978-3-662-54486-0
#> 1046 NA NA NA 10.1007/978-3-319-63886-7
#> 1047 NA NA NA 10.1007/978-3-319-55718-2
#> 1048 NA NA NA 10.1007/978-0-387-32348-0
#> 1049 NA NA NA 10.1007/978-981-13-8075-4
#> 1050 NA NA NA 10.1007/978-3-319-50986-0
#> 1051 NA NA NA 10.1007/978-3-642-51746-4
#> 1052 NA NA NA 10.1007/978-94-010-3084-7
#> 1053 NA NA NA 10.1007/978-3-319-54084-9
#> 1054 NA NA NA 10.1007/b97478
#> 1055 NA NA NA 10.1007/978-981-10-5466-2
#> 1056 NA NA NA 10.1007/978-3-319-46162-5
#> 1057 NA NA NA 10.1007/978-3-642-46447-8
#> 1058 NA NA NA 10.1007/978-981-10-2594-5
#> 1059 NA NA NA 10.1007/978-3-642-97353-6
#> 1060 NA NA NA 10.1007/978-3-642-25969-2
#> 1061 NA NA NA 10.1007/978-3-319-55336-8
#> 1062 NA NA NA 10.1007/978-3-642-35407-6
#> 1063 NA NA NA 10.1007/978-3-319-19039-6
#> 1064 NA NA NA 10.1007/978-1-4613-0129-5
#> 1065 NA NA NA 10.1007/978-94-011-1970-2
#> 1066 NA NA NA 10.1007/978-981-15-1857-7
#> 1067 NA NA NA 10.1007/978-3-319-76605-8
#> 1068 NA NA NA 10.1007/978-3-662-58541-2
#> 1069 NA NA NA 10.2991/978-94-6239-136-9
#> 1070 NA NA NA 10.1007/978-3-319-62130-2
#> 1071 NA NA NA 10.1007/978-3-642-17229-8
#> 1072 NA NA NA 10.1007/978-981-13-1843-6
#> 1073 NA NA NA 10.1007/978-3-319-41582-6
#> 1074 NA NA NA 10.1007/978-4-431-55930-6
#> 1075 NA NA NA 10.1007/978-981-13-9314-3
#> 1076 NA NA NA 10.1007/978-3-642-04898-2
#> 1077 NA NA NA 10.1007/978-3-030-14316-9
#> 1078 NA NA NA 10.1007/978-3-030-05420-5
#> 1079 NA NA NA 10.1007/978-3-662-53736-7
#> 1080 NA NA NA 10.1007/978-3-642-17254-0
#> 1081 NA NA NA 10.1007/978-3-319-17377-1
#> 1082 NA NA NA 10.1007/978-1-4757-2281-9
#> 1083 NA NA NA 10.1007/978-1-4614-2071-2
#> 1084 NA NA NA 10.1007/978-3-030-20790-8
#> 1085 NA NA NA 10.1007/978-1-4614-3734-5
#> 1086 NA NA NA 10.1007/978-981-10-5194-4
#> 1087 NA NA NA 10.1007/978-81-322-2364-1
#> 1088 NA NA NA 10.1007/978-3-642-97225-6
#> 1089 NA NA NA 10.1007/978-1-4614-3713-0
#> 1090 NA NA NA 10.1007/b138291
#> 1091 NA NA NA 10.1007/978-1-4757-3090-6
#> 1092 NA NA NA 10.1007/978-3-662-22033-7
#> 1093 NA NA NA 10.1007/0-387-31075-4
#> 1094 NA NA NA 10.1007/978-3-319-75295-2
#> 1095 NA NA NA 10.1007/978-3-030-13751-9
#> 1096 NA NA NA 10.1007/978-3-319-70936-9
#> 1097 NA NA NA 10.1007/978-3-319-12442-1
#> 1098 NA NA NA 10.1007/978-3-642-33929-5
#> 1099 NA NA NA 10.1007/978-3-319-65331-0
#> 1100 NA NA NA 10.1007/978-981-13-9776-9
#> 1101 NA NA NA 10.1007/978-1-4614-8154-6
#> 1102 NA NA NA 10.1007/978-3-319-03497-3
#> 1103 NA NA NA 10.1007/978-3-642-32931-9
#> 1104 NA NA NA 10.1007/978-981-15-1476-0
#> 1105 NA NA NA 10.1007/978-3-642-59789-3
#> 1106 NA NA NA 10.1007/978-981-15-2552-0
#> 1107 NA NA NA 10.1007/978-1-4419-7787-8
#> 1108 NA NA NA 10.1007/978-3-662-57380-8
#> Authors
#> 1 Haijun LiXiaohu Li
#> 2 Osamu KomoriProf. Shinto Eguchi
#> 3 K. Gerald van den BoogaartRaimon Tolosana-Delgado
#> 4 James O. Berger
#> 5 Jan BeranYuanhua FengSucharita GhoshRafal Kulik
#> 6 Shanti S. GuptaDeng-Yuan Huang
#> 7 Prof. Francesco MolaProf. Claudio ConversanoProf. Maurizio Vichi
#> 8 Brajendra C. Sutradhar
#> 9 Weili HeJosé PinheiroOlga M. Kuznetsova
#> 10 Gogi Pantsulaia
#> 11 Paolo GiudiciSalvatore IngrassiaMaurizio Vichi
#> 12 Dennis D BoosL. A Stefanski
#> 13 Prof. Muhammad AslamProf. Mir Masoom Ali
#> 14 Jesper Møller
#> 15 Ronald Christensen
#> 16 Prof. Dr. Kohei Adachi
#> 17 Rolf-Dieter ReissMichael Thomas
#> 18 Jon Wakefield
#> 19 David A. Harville
#> 20 George Casella
#> 21 Mikhail NikulinHong-Dar Isaac Wu
#> 22 Radhakrishnan NagarajanMarco ScutariSophie Lèbre
#> 23 Douglas E. Critchlow
#> 24 Prof. Dr. Patrice BertailProf. Dr. Delphine BlankeDr. Pierre-André CornillonProf. Dr. Eric Matzner-Løber
#> 25 Nicholas T. Longford
#> 26 Marie DavidianXihong LinJeffrey S. MorrisLeonard A. Stefanski
#> 27 Javier Rojo
#> 28 Warren Beatty
#> 29 Kamil Feridun TurkmanManuel González ScottoPatrícia de Zea Bermudez
#> 30 Ikuko FunatogawaTakashi Funatogawa
#> 31 Dr. Mark J. van der LaanDr. Sherri Rose
#> 32 Armando Luis Vieira
#> 33 Ansgar StelandEwaryst RafajłowiczKrzysztof Szajowski
#> 34 Umberto CherubiniFabio GobbiSabrina Mulinacci
#> 35 Charles TaillieGanapati P. PatilBruno A. Baldessari
#> 36 Francesca GreselinLaura DeldossiLuca BagnatoProf. Maurizio Vichi
#> 37 Lanju ZhangDing-Geng (Din) ChenHongmei JiangDr. Gang LiHui Quan
#> 38 Bernard FichetDomenico PiccoloRosanna VerdeMaurizio Vichi
#> 39 Kung-Sik ChanHowell Tong
#> 40 Hira L. Koul
#> 41 António PachecoRui SantosMaria do Rosário OliveiraCarlos Daniel Paulino
#> 42 Bayo Lawal
#> 43 Takeyuki HidaRajeeva L. KarandikarHiroshi KunitaBalram S. RajputShinzo WatanabeJie Xiong
#> 44 Ronald Christensen
#> 45 Prof. Dietrich von Rosen
#> 46 Corinne BerzinAlain LatourJosé R. León
#> 47 João Lita da SilvaFrederico CaeiroIsabel NatárioCarlos A. Braumann
#> 48 Ulhas Jayram Dixit
#> 49 Dirk Eddelbuettel
#> 50 Michael G. AkritasS. N. LahiriDimitris N. Politis
#> 51 Allan Gut
#> 52 C. Ray SmithGary J. Erickson
#> 53 Ross MallerIshwar BasawaPeter HallEugene Seneta
#> 54 Hervé AbdiVincenzo Esposito VinziGiorgio RussolilloGilbert SaportaLaura Trinchera
#> 55 Peter J. BrockwellRichard A. Davis
#> 56 Yong ZengShu Wu
#> 57 Martin T. WellsAshis SenGupta
#> 58 Tomasz Rychlik
#> 59 E. L. Lehmann
#> 60 Matthew A. CarltonJay L. Devore
#> 61 Dr. Robert J MislevyDr. Geneva HaertelDr. Michelle RiconscenteDr. Daisy Wise RutsteinDr. Cindy Ziker
#> 62 Dominique FourdrinierWilliam E. StrawdermanMartin T. Wells
#> 63 J. O. RamsayB. W. Silverman
#> 64 M. B. Rajarshi
#> 65 Zehua ChenZhidong BaiBimal K. Sinha
#> 66 Víctor Gómez
#> 67 Nikolay K. Vitanov
#> 68 Adrian Pizzinga
#> 69 Pradip Kumar SahuSanti Ranjan PalAjit Kumar Das
#> 70 Prof. Dr. Marie WibergSteven CulpepperRianne JanssenJorge GonzálezDr. Dylan Molenaar
#> 71 Sam Efromovich
#> 72 Douglas B. ClarksonChris FraleyCharles C. GuJames O. Ramsey
#> 73 Alexander SmajglOlivier Barreteau
#> 74 Patrice BertailPhilippe SoulierPaul Doukhan
#> 75 David J. Olive
#> 76 Yoko TanokuraGenshiro Kitagawa
#> 77 Dr. Yan LiuDr. Fumiya AkashiProf. Masanobu Taniguchi
#> 78 Dr. Peter K. DunnGordon K. Smyth
#> 79 Margaret WuHak Ping TamTsung-Hau Jen
#> 80 Frank B. BakerSeock-Ho Kim
#> 81 Arnaud DoucetNando de FreitasNeil Gordon
#> 82 Ray LiuDr. Yi Tsong
#> 83 Prof. Dr. Jan Beran
#> 84 Jianguo SunXingqiu Zhao
#> 85 Wojbor A. Woyczynski
#> 86 Nick T. Thomopoulos
#> 87 Angela DeanSusan Lewis
#> 88 Prof. Dr. Víctor Hugo Lachos DávilaCelso Rômulo Barbosa CabralProf. Dr. Camila Borelli Zeller
#> 89 Helge Toutenburg
#> 90 Nick T. Thomopoulos
#> 91 Jianqing FanYa’acov RitovC. F. Jeff Wu
#> 92 Daniele ManfrediniRosa ArborettiLuca Guarda NardiniEleonora CarrozzoLuigi Salmaso
#> 93 Mark J. van der LaanSherri Rose
#> 94 Riten MitraPeter Müller
#> 95 Prof. J.P. Verma
#> 96 Vladas Sidoravicius
#> 97 N. BalakrishnanErhard Cramer
#> 98 J. O. RamsayB. W. Silverman
#> 99 Prof. Marie WibergSteven CulpepperRianne JanssenJorge GonzálezDylan Molenaar
#> 100 Olav Kallenberg
#> 101 Jun S. Liu
#> 102 Aldo SolariLuigi SalmasoFortunato PesarinDario Basso
#> 103 Professor Dr. Paula BritoProfessor Dr. Guy CucumelProfessor Dr. Patrice BertrandProfessor Dr. Francisco de Carvalho
#> 104 Wolfgang Karl HärdleLéopold Simar
#> 105 Andreas Ziegler
#> 106 Kenneth P. BurnhamDavid R. Anderson
#> 107 Elias Ould SaïdIdir OuassouMustapha Rachdi
#> 108 Sneh GulatiWilliam J. Padgett
#> 109 Kai-Tai FangProf. Min-Qian LiuProf. Hong QinYong-Dao Zhou
#> 110 Betty HainesRoger HainesAndrew May
#> 111 Prof. Dr. Johann Pfanzagl
#> 112 Robert Mee
#> 113 Prof. Shuhei Mano
#> 114 Mathias DrtonBernd SturmfelsSeth Sullivant
#> 115 Thomas J. QuirkEric Rhiney
#> 116 Susanne Rässler
#> 117 George R. Terrell
#> 118 Matteo GrigolettoFrancesco LisiSonia Petrone
#> 119 Alejandro F. RamírezGérard Ben ArousPablo A. FerrariCharles M. NewmanVladas SidoraviciusMaria Eulália Vares
#> 120 Kunio Takezawa
#> 121 Herve AbdiWynne W. ChinVincenzo Esposito VinziGiorgio RussolilloLaura Trinchera
#> 122 Paulo Eduardo Oliveira
#> 123 Wolfgang Karl HärdleVladimir SpokoinyVladimir PanovWeining Wang
#> 124 Emilio PorcuJosé–María MonteroMartin Schlather
#> 125 Constantine GatsonisRobert E. KassAlicia CarriquiryAndrew GelmanDavid HigdonDonna K. PaulerIsabella Verdinelli
#> 126 V.B. MelasStefania MignaniPaola MonariLuigi Salmaso
#> 127 Prof. Masafumi Akahira
#> 128 Kees van MontfortJohan OudWendimagegn Ghidey
#> 129 Prof. Dr. Ansgar StelandProf. Dr. Ewaryst RafajłowiczProf. Dr. Ostap Okhrin
#> 130 Assist. Prof. Raffaele ArgientoAssist. Prof. Daniele DuranteDr. Sara Wade
#> 131 George J. KnaflKai Ding
#> 132 Regina Y. LiuJoseph W. McKean
#> 133 Prof. Dr. Adriano PolpoProf. Dr. Julio SternProf. Dr. Francisco LouzadaRafael IzbickiHellinton Takada
#> 134 Shailaja Deshmukh
#> 135 Prof. Dr. Thorsten Dickhaus
#> 136 C. Huber-CarolN. BalakrishnanM. S. NikulinM. Mesbah
#> 137 David RuppertDavid S. Matteson
#> 138 Robert E. KassUri T. EdenEmery N. Brown
#> 139 G. P. PatilS. KotzJ. K. Ord
#> 140 Pierre Lavallée
#> 141 Abdulkader Aljandali
#> 142 Assist. Prof. Antonio CanaleAssist. Prof. Daniele DuranteAssist. Prof. Lucia PaciAssoc. Prof. Bruno Scarpa
#> 143 George A.F. Seber
#> 144 Robert H. ShumwayDavid S. Stoffer
#> 145 Christian P. RobertGeorge Casella
#> 146 Kei Takeuchi
#> 147 Suzanne Jak
#> 148 Akihiro HirakawaHiroyuki SatoTakashi DaimonShigeyuki Matsui
#> 149 Pavel V. Shevchenko
#> 150 Viatcheslav B. Melas
#> 151 Thomas J. SantnerBrian J. WilliamsWilliam I. Notz
#> 152 Vladimir SpokoinyThorsten Dickhaus
#> 153 Zhidong BaiJack W. Silverstein
#> 154 Kohei OhtsuHui PengGenshiro Kitagawa
#> 155 Prof. Yuzo HosoyaProf. Kosuke OyaProf. Taro TakimotoProf. Ryo Kinoshita
#> 156 Jan RychtářSat GuptaRatnasingham ShivajiMaya Chhetri
#> 157 Klaus NordhausenSara Taskinen
#> 158 Richard ValliantJill A. DeverFrauke Kreuter
#> 159 James E. Gentle
#> 160 Parimal Mukhopadhyay
#> 161 Itai BenjaminiOlle Häggström
#> 162 Prof. Barry C. ArnoldProf. José María Sarabia
#> 163 Phillip Good
#> 164 Frank E. Harrell , Jr.
#> 165 Claudia BeckerRoland FriedSonja Kuhnt
#> 166 Luc DevroyeGábor Lugosi
#> 167 Prof. Shigeyuki MatsuiJohn Crowley
#> 168 Grace Y. Yi
#> 169 Manuel Úbeda FloresEnrique de Amo ArteroFabrizio DuranteJuan Fernández Sánchez
#> 170 Patrizia CampagnoliSonia PetroneGiovanni Petris
#> 171 Karl G. JöreskogUlf H. OlssonFan Y. Wallentin
#> 172 Jun Shao
#> 173 Yuriy Kharin
#> 174 Shlomo YitzhakiEdna Schechtman
#> 175 A. M. Yaglom
#> 176 Professor Wolfgang HärdleProfessor Yuichi MoriProfessor Philippe Vieu
#> 177 Paul R. Rosenbaum
#> 178 James O. RamsayBernard W. Silverman
#> 179 Jérôme DedeckerPaul DoukhanGabriel LangLeón R. José RafaelSana LouhichiClémentine Prieur
#> 180 Agostino Di CiaccioMauro ColiJose Miguel Angulo Ibanez
#> 181 Richard William Farebrother
#> 182 Jared A. LinebachBrian P. TeschLea M. Kovacsiss
#> 183 Sadanori KonishiGenshiro Kitagawa
#> 184 Prof. Dr. Jürgen PilzProf. Dr. Dieter RaschProf. Viatcheslav B. MelasProf. Dr. Karl Moder
#> 185 Kenneth Lange
#> 186 Joseph GlazVladimir PozdnyakovSylvan Wallenstein
#> 187 Maurizio CarpitaEugenio BrentariEl Mostafa Qannari
#> 188 Abdul Quader Miah
#> 189 David D. DenisonMark H. HansenChristopher C. HolmesBani MallickBin Yu
#> 190 Hubert Gatignon
#> 191 Deborah NolanTerry Speed
#> 192 Barry C. ArnoldEnrique CastilloJosé María Sarabia
#> 193 Dr. Cristiano BocciProf. Luca Chiantini
#> 194 Wolfgang Karl HärdleLéopold Simar
#> 195 Tim Hannagan
#> 196 Lajos HorváthPiotr Kokoszka
#> 197 Larry Wasserman
#> 198 George Seber
#> 199 Robert H. ShumwayDavid S. Stoffer
#> 200 Richard Durrett
#> 201 Dr. Rajeeva L. KarandikarB. V. Rao
#> 202 Sara van de GeerMarten Wegkamp
#> 203 William Miller
#> 204 Stuart Coles
#> 205 Paulo Eduardo OliveiraMaria da Graça TemidoCarla HenriquesMaurizio Vichi
#> 206 Lucien Le CamGrace Lo Yang
#> 207 Ke ChenAnton Ravindran
#> 208 Dimitris N. Politis
#> 209 Jie ChenA. K. Gupta
#> 210 B.K. SinhaN.K. MandalManisha PalP. Das
#> 211 Joachim KunertChristine H. MüllerAnthony C. Atkinson
#> 212 Joseph M. Hilbe
#> 213 René Carmona
#> 214 Dirk F. Moore
#> 215 Arijit ChaudhuriTasos C. Christofides
#> 216 Angela DeanDaniel VossDanel Draguljić
#> 217 Satoshi AokiHisayuki HaraAkimichi Takemura
#> 218 Prof. Müjgan TezProf. Dietrich von Rosen
#> 219 LUIGI SALMASOChiara Brombin
#> 220 Jayanta K. GhoshMohan DelampadyTapas Samanta
#> 221 David J. Olive
#> 222 Robert W. Keener
#> 223 Tilo WendlerSören Gröttrup
#> 224 Abdo Y. Alfakih
#> 225 D. G. KabeA. K. Gupta
#> 226 M. Ataharul IslamRafiqul I Chowdhury
#> 227 Mervyn G. MarasingheKenneth J. Koehler
#> 228 Samuel KotzNorman L. Johnson
#> 229 Sylvia Frühwirth-SchnatterAngela BittoGregor KastnerAlexandra Posekany
#> 230 Sylvie HuetAnnie BouvierMarie-Anne GruetEmmanuel Jolivet
#> 231 Estela Bee DagumSilvia Bianconcini
#> 232 David MagisDr. Duanli YanAlina A. von Davier
#> 233 Dianne CookDeborah F. Swayne
#> 234 N. Unnikrishnan NairP.G. SankaranN. Balakrishnan
#> 235 Wilfried GrossmannGeorg Ch. PflugWolfgang Wertz
#> 236 Zhen ChenAiyi LiuYongming QuLarry TangNaitee TingYi Tsong
#> 237 K. Muralidharan
#> 238 Roy SaboEdward Boone
#> 239 William Eckhardt
#> 240 Jaroslaw HarezlakDr. David RuppertMatt P. Wand
#> 241 Douglas A. WolfeGrant Schneider
#> 242 Hardeo SahaiMario Miguel Ojeda
#> 243 Søren HøjsgaardDavid EdwardsSteffen Lauritzen
#> 244 Thomas W. MacFarlandJan M. Yates
#> 245 Dr. René MichelDr. Igor SchnakenburgDr. Tobias von Martens
#> 246 Jun Shao
#> 247 Gilbert MacKenzieDefen Peng
#> 248 Zhezhen JinMengling LiuXiaolong Luo
#> 249 Ludwig FahrmeirThomas KneibStefan LangBrian Marx
#> 250 Dirk P. KroeseJoshua C.C. Chan
#> 251 Jeff Grover
#> 252 Werner StahelSanford Weisberg
#> 253 Vladimir Panov
#> 254 Maria Kateri
#> 255 S. HuetA. BouvierM. -A. PoursatE. Jolivet
#> 256 Gauri Sankar DattaRahul Mukerjee
#> 257 Simo PuntanenGeorge P. H. StyanJarkko Isotalo
#> 258 Trevor HastieJerome FriedmanRobert Tibshirani
#> 259 Victor M. Panaretos
#> 260 Nina GolyandinaAnatoly Zhigljavsky
#> 261 Matthias J. Fischer
#> 262 Eduard Hofer
#> 263 Richard Durrett
#> 264 Jun Shao
#> 265 Christiane Lemieux
#> 266 Matthias Templ
#> 267 L. Andries van der ArkDaniel M. BoltWen-Chung WangJeffrey A. DouglasMarie Wiberg
#> 268 Jay L. DevoreKenneth N. Berk
#> 269 Jianchang LinBushi WangXiaowen HuKun ChenRay Liu
#> 270 Josep Antoni Martín-FernándezSantiago Thió-Henestrosa
#> 271 Javier CabreraAndrew McDougall
#> 272 Richard ValliantJill A. DeverFrauke Kreuter
#> 273 L. Andries van der ArkMarie WibergSteven A. CulpepperJeffrey A. DouglasWen-Chung Wang
#> 274 S. Ejaz Ahmed
#> 275 Nicola TorelliFortunato PesarinAvner Bar-Hen
#> 276 Jim AlbertMaria Rizzo
#> 277 Jaromír AntochJana JurečkováMatúš MaciakMichal Pešta
#> 278 Ding-Geng ChenZhezhen JinProf. Dr. Gang LiYi LiDr. Aiyi LiuProf. Yichuan Zhao
#> 279 Moshe ShakedJ. George Shanthikumar
#> 280 Peter J. BrockwellRichard A. Davis
#> 281 Gareth JamesDaniela WittenTrevor HastieRobert Tibshirani
#> 282 Prof. Ratan Dasgupta
#> 283 Birger Madsen
#> 284 David Ruppert
#> 285 Hengky LatanRichard Noonan
#> 286 Alan D. TaylorAllison M. Pacelli
#> 287 Paul W. Mielke Jr.Kenneth J. Berry
#> 288 Asis Kumar ChattopadhyayTanuka Chattopadhyay
#> 289 Kenneth Lange
#> 290 Rahul MukerjeeC. F. Jeff Wu
#> 291 Dr C Plumpton
#> 292 Ingrid Van KeilegomPaul W. Wilson
#> 293 Abdulkader Aljandali
#> 294 Lixing Zhu
#> 295 Joseph GlazJoseph NausSylvan Wallenstein
#> 296 Peter Goos
#> 297 M. Hazewinkel
#> 298 Birger Stjernholm Madsen
#> 299 Yasuko Chikuse
#> 300 Phillip I. Good
#> 301 Waltraud KahleElart von CollaniJürgen FranzUwe Jensen
#> 302 Yves Tillé
#> 303 Andrea MattaEvren SahinJingshan LiAlain GuinetNico J. Vandaele
#> 304 Phillip Good
#> 305 Prof. Paul Doukhan
#> 306 Inés M. del PuertoMiguel GonzálezCristina GutiérrezRodrigo MartínezCarmen MinuesaManuel MolinaManuel MotaAlfonso Ramos
#> 307 Dr. H. BüringerDr. H. MartinDr. K.-H. Schriever
#> 308 Rabi BhattacharyaLizhen LinVictor Patrangenaru
#> 309 Alan D. Taylor
#> 310 Gauss M. CordeiroFrancisco Cribari-Neto
#> 311 Carlos N. Bouza-Herrera
#> 312 Essam K. AL-HussainiMohammad Ahsanullah
#> 313 Dr. Galen R. Shorack
#> 314 Prof. Dr. Nihat AyProf. Dr. Jürgen JostDr. Hông Vân LêProf. Lorenz Schwachhöfer
#> 315 Erich L. Lehmann
#> 316 William Miller
#> 317 Antonio GiustiGunter RitterMaurizio Vichi
#> 318 Adriano PolpoFrancisco LouzadaLaura L. R. RifoJulio M. SternMarcelo Lauretto
#> 319 D. G. Rees
#> 320 Ezra Haber Glenn
#> 321 Jonathon D. Brown
#> 322 Samaradasa Weerahandi
#> 323 Kenneth J. BerryJanis E. JohnstonPaul W. Mielke, Jr.
#> 324 Prof. Achim DörreProf. Takeshi Emura
#> 325 Francesco PalumboAngela MontanariMaurizio Vichi
#> 326 Mohammad AhsanullahValery B NevzorovMohammad Shakil
#> 327 Prof. Shuichi Shinmura
#> 328 Marc Moore
#> 329 Hans-Joachim LenzWolfgang SchmidPeter-Theodor Wilrich
#> 330 N. BalakrishnanM. S. NikulinM. MesbahN. Limnios
#> 331 Jan G. De Gooijer
#> 332 Jan BeyersmannArthur AllignolMartin Schumacher
#> 333 Giorgio AllevaAndrea Giommi
#> 334 Peter J. BrockwellRichard A. Davis
#> 335 James E. GentleWolfgang Karl HärdleYuichi Mori
#> 336 I. T. Jolliffe
#> 337 Per Kragh AndersenØrnulf BorganRichard D. GillNiels Keiding
#> 338 Albert W. MarshallIngram OlkinBarry C. Arnold
#> 339 Marat IbragimovRustam IbragimovJohan Walden
#> 340 Il Do HaJong-Hyeon JeongYoungjo Lee
#> 341 Yu. I. IngsterIrina A. Suslina
#> 342 Germán AneirosEnea G. BongiornoRicardo CaoPhilippe Vieu
#> 343 Gareth William PetersTomoko Matsui
#> 344 Lawrence LinA. S. HedayatWenting Wu
#> 345 Prof. Yichuan ZhaoDing-Geng Chen
#> 346 John E. Kolassa
#> 347 Kirk M. Wolter
#> 348 James RamsayGiles Hooker
#> 349 James H. MatisThomas R. Kiffe
#> 350 Constantine GatsonisRobert E. KassBradley CarlinAlicia CarriquiryAndrew GelmanIsabella VerdinelliMike West
#> 351 Graham Wills
#> 352 Shelemyahu Zacks
#> 353 Kenneth KnoblauchLaurence T. Maloney
#> 354 Yadolah DodgeJana Jurečková
#> 355 David A. Harville
#> 356 B. E. BrodskyB. S. Darkhovsky
#> 357 Thomas W. MacFarland
#> 358 Ratan Dasgupta
#> 359 Eric A. SuessBruce E. Trumbo
#> 360 László GyörfiMichael KohlerAdam KrzyżakHarro Walk
#> 361 Mia HubertGreet PisonAnja StruyfStefan Van Aelst
#> 362 Prof. Cira PernaProf. Monica PratesiProf. Anne Ruiz-Gazen
#> 363 David Siegmund
#> 364 Claudia Czado
#> 365 Jean-Michel MarinChristian P. Robert
#> 366 Prof. Dr. Wolfgang Karl HärdleProf. Henry Horng-Shing LuProf. Xiaotong Shen
#> 367 Jay BartroffTze Leung LaiMei-Chiung Shih
#> 368 Tonio Di BattistaElías MorenoWalter Racugno
#> 369 Rosa ArborettiDr. Arne BathkeDr. Stefano BonniniPaolo BordignonEleonora CarrozzoLivio CorainLuigi Salmaso
#> 370 Michel BilodeauFernand MeyerMichel Schmitt
#> 371 Daniel O. Stram
#> 372 Prof. S. Ejaz AhmedDr. Francisco CarvalhoDr. Simo Puntanen
#> 373 Dimitris N. PolitisJoseph P. RomanoMichael Wolf
#> 374 Alyson G. WilsonGregory D. WilsonDavid H. Olwell
#> 375 Mark StemmlerAlexander von EyeWolfgang Wiedermann
#> 376 Marlos A. G. VianaVasudevan Lakshminarayanan
#> 377 S. H. C. du ToitA. G. W. SteynR. H. Stumpf
#> 378 C. W. CeliaA. T. F. NiceK. F. Elliott
#> 379 C. Radhakrishna RaoHelge Toutenburg
#> 380 Peter BühlmannSara van de Geer
#> 381 Eswar G. Phadia
#> 382 Chong Gu
#> 383 Constance van Eeden
#> 384 Niel HensZiv ShkedyMarc AertsChristel FaesPierre Van DammePhilippe Beutels
#> 385 Bing LiDr. G. Jogesh Babu
#> 386 Toshimitsu HamasakiKoko AsakuraScott R. EvansToshimitsu Ochiai
#> 387 Peter GuttorpDavid Brillinger
#> 388 Helen MacGillivrayBrian PhillipsMichael A. Martin
#> 389 Leonhard HeldDaniel Sabanés Bové
#> 390 Christopher ChatfieldAlexander J. Collins
#> 391 Shuichi Shinmura
#> 392 Jie ChenArjun K. Gupta
#> 393 D. J. DaleyD. Vere-Jones
#> 394 S. Ejaz Ahmed
#> 395 Roger B. Nelsen
#> 396 Thomas W. Yee
#> 397 Janusz L. Wywiał
#> 398 Stephen E. Fienberg
#> 399 Brian EverittTorsten Hothorn
#> 400 Ettore LanzaroneFrancesca Ieva
#> 401 Tadeusz CalińskiSanpei Kageyama
#> 402 Leo A. GoodmanWilliam H. Kruskal
#> 403 Marco A. R. FerreiraHerbert K. H. Lee
#> 404 Prof. Asis Kumar ChattopadhyayProf. Gaurangadeb Chattopadhyay
#> 405 Prof. Ratan Dasgupta
#> 406 Przemysław Śliwiński
#> 407 Prof. Dharmaraja SelvamuthuProf. Dipayan Das
#> 408 E. L. LehmannGeorge Casella
#> 409 Yasumasa BabaAnthony J. HayterKoji KanefujiSatoshi Kuriki
#> 410 I. T. Jolliffe
#> 411 A. M. Wesselman
#> 412 Dariusz UcinskiAnthony C. AtkinsonMaciej Patan
#> 413 Prof. Masanori SawaDr. Masatake HiraoProf. Sanpei Kageyama
#> 414 Anna Maria PaganoniPiercesare Secchi
#> 415 Andreas Quatember
#> 416 Ashish SenMuni Srivastava
#> 417 Alexandre B. Tsybakov
#> 418 Prof. Dr. Dietmar FergerProf. Wenceslao González ManteigaProf. Dr. Thorsten SchmidtProf. Jane-Ling Wang
#> 419 Brajendra C. Sutradhar
#> 420 Helmut Pruscha
#> 421 Raffaele ArgientoEttore LanzaroneIsadora Antoniano VillalobosAlessandra Mattei
#> 422 Samuel KotzNorman L. Johnson
#> 423 Charles F. Manski
#> 424 Prof. Masayuki Hirukawa
#> 425 David Ríos InsuaFabrizio Ruggeri
#> 426 Christian HeumannMichael SchomakerShalabh
#> 427 Prof. Dr. Daniel BaierProf. Dr. Reinhold DeckerProf. Dr. Dr. Lars Schmidt-Thieme
#> 428 Prof. Francesca BiaginiGöran KauermannThilo Meyer-Brandis
#> 429 Bradley C. Boehmke, Ph.D.
#> 430 Masanobu TaniguchiYoshihide Kakizawa
#> 431 Ding-Geng ChenJiahua ChenXuewen LuGrace Y. YiHao Yu
#> 432 Joaquim Pinto da Costa
#> 433 Scott M. Lynch
#> 434 Prof. Takeshi EmuraProf. Shigeyuki MatsuiProf. Virginie Rondeau
#> 435 Nick T. Thomopoulos
#> 436 Christiane Fuchs
#> 437 Paul D. BergerRobert E. MaurerGiovana B. Celli
#> 438 E. L. LehmannJoseph P. Romano
#> 439 Prof. Dr. Wolfgang Karl HärdleProf. Dr. Ostap OkhrinProf. Dr. Yarema Okhrin
#> 440 Prof. Dr. Daniel Durstewitz
#> 441 Jamalludin Bin Ab Rahman
#> 442 Dr C. Plumpton
#> 443 Hang Lee
#> 444 Soumendra LahiriAnton SchickAshis SenGuptaT.N. Sriram
#> 445 Umberto CherubiniFabrizio DuranteSabrina Mulinacci
#> 446 Peter MüllerFernando Andres QuintanaAlejandro JaraTim Hanson
#> 447 Mohammad Ahsanullah
#> 448 Gareth William PetersTomoko Matsui
#> 449 Inge S. Helland
#> 450 Tejas Desai
#> 451 Prof. Koji Miyawaki
#> 452 Dr. Teresa A. OliveiraChristos P. KitsosAmílcar OliveiraDr. Luís Grilo
#> 453 David Fletcher
#> 454 Wolfgang Karl HärdleZdeněk Hlávka
#> 455 Mohammad AhsanullahValery B. Nevzorov
#> 456 Takashi DaimonAkihiro HirakawaProf. Shigeyuki Matsui
#> 457 Anastasios A. Tsiatis
#> 458 Joseph G. IbrahimMing-Hui ChenDebajyoti Sinha
#> 459 Charles A. Rohde
#> 460 Anirban DasGupta
#> 461 Wolfgang Karl HärdleLéopold Simar
#> 462 V. S. KoroljukYu. V. Borovskich
#> 463 E. Seneta
#> 464 Chiara BrombinLuigi SalmasoLara FontanellaLuigi IppolitiCaterina Fusilli
#> 465 E. A. Nadaraya
#> 466 Prof. Carlos A. CoelhoProf. Barry C. Arnold
#> 467 Adrian BaddeleyPablo GregoriJorge MateuRadu StoicaDietrich Stoyan
#> 468 Christian P. RobertGeorge Casella
#> 469 Per Kragh AndersenLene Theil Skovgaard
#> 470 Bill Thompson
#> 471 Michela CamelettiFrancesco Finazzi
#> 472 Jonathon D. Brown
#> 473 Prof. Dr. Peter FilzmoserProf. Dr. Karel HronDr. Matthias Templ
#> 474 Ricardo CaoWenceslao González ManteigaJuan Romo
#> 475 Naoto KunitomoSeisho SatoDaisuke Kurisu
#> 476 William Briggs
#> 477 Prof. Manoranjan PalDr. Premananda Bharati
#> 478 Yuichi MoriMasahiro KurodaNaomichi Makino
#> 479 Miodrag Lovric
#> 480 Prof. Corrado Crocetta
#> 481 Takashi SozuTomoyuki SugimotoToshimitsu HamasakiScott R. Evans
#> 482 Chin Diew LaiN. Balakrishnan
#> 483 Robert H. ShumwayDavid S. Stoffer
#> 484 Basilio de Bragança PereiraCarlos Alberto de Bragança Pereira
#> 485 Stephen E. FienbergDavid C. HoaglinJudith M. Tanur
#> 486 Erkki P. LiskiNripes K. MandalKirti R. ShahBikas K. Sinha
#> 487 Prof. Arup BoseProf. Snigdhansu Chatterjee
#> 488 Bruno LecoutreJacques Poitevineau
#> 489 Alan GenzFrank Bretz
#> 490 Vyacheslav L. Girko
#> 491 Vladimir SavchukChris P. Tsokos
#> 492 U. Narayan Bhat
#> 493 Jeff Grover
#> 494 Kenneth P. BurnhamDavid R. Anderson
#> 495 Parimal Mukhopadhyay
#> 496 Jeffrey R. WilsonKent A. Lorenz
#> 497 S. N. Lahiri
#> 498 Isabella MorliniTommaso MinervaMaurizio Vichi
#> 499 Pankaj ChoudharyChaitra H. NagarajaHon Keung Tony Ng
#> 500 Sandrine Dudoit
#> 501 Donatella VicariAkinori OkadaGiancarlo RagoziniClaus Weihs
#> 502 Brajendra C. Sutradhar
#> 503 Kenneth J. BerryJanis E. JohnstonPaul W. Mielke, Jr.
#> 504 Prof. Dr. Edgar BrunnerDr. Arne C. BathkeFrank Konietschke
#> 505 Prof. George A. F. SeberDr. Matthew R. Schofield
#> 506 Prof. Ding-Geng (Din) ChenProf. Yuhlong LioProf. Hon Keung Tony NgProf. Tzong-Ru Tsai
#> 507 Anuj SrivastavaEric P. Klassen
#> 508 Scott A. Pardo
#> 509 N. C. Das
#> 510 Mayer AlvoPhilip L.H. Yu
#> 511 Brajendra C. Sutradhar
#> 512 Clive W. Anderson MA, MSc, PhDVic Barnett MSc, PhD, DSc, FISPhilip C. Chatwin MA, PhD, FSSAbdel H. El-Shaarawi PhD
#> 513 C.S. Wallace
#> 514 Sakutarō Yamada
#> 515 Burgess DavisRenming Song
#> 516 Takayuki Hibi
#> 517 Kōji Iida
#> 518 Tadeusz CalińskiSanpei Kageyama
#> 519 Prof. Taka-aki ShiraishiProf. Hiroshi SugiuraProf. Shin-ichi Matsuda
#> 520 Mark Stemmler
#> 521 Gerhard TutzMatthias Schmid
#> 522 Richard A. Berk
#> 523 Pascal ArdillyYves Tillé
#> 524 Anirban DasGupta
#> 525 D. A. Sprott
#> 526 Richard M. HeibergerBurt Holland
#> 527 Marc HallinDavid M. MasonDietmar PfeiferJosef G. Steinebach
#> 528 Pasquale Erto
#> 529 Salvatore IngrassiaRoberto RocciMaurizio Vichi
#> 530 Dr. Luca MartinoProf. David LuengoProf. Dr. Joaquín Míguez
#> 531 Michael J. KolenRobert L. Brennan
#> 532 Mary Kathryn Cowles
#> 533 Joseph GlazDr. Markos V. Koutras
#> 534 Tapas Kumar Chandra
#> 535 Kenneth J. BerryPaul W. Mielke, Jr.Janis E. Johnston
#> 536 Andrzej GałeckiTomasz Burzykowski
#> 537 Dr. Alexander Silbersdorff
#> 538 Richard A. DavisKeh-Shin LiiDimitris N. Politis
#> 539 Klaus-J. MiesckeF. Liese
#> 540 J. K. GhoshR. V. Ramamoorthi
#> 541 Arjun K. GuptaTamas VargaTaras Bodnar
#> 542 Ratan Dasgupta
#> 543 Simo PuntanenGeorge P. H. StyanJarkko Isotalo
#> 544 G. Barrie Wetherill
#> 545 Prof. Nobuoki Eshima
#> 546 Dr. Nina GolyandinaDr. Anton KorobeynikovProf. Anatoly Zhigljavsky
#> 547 Kenneth Lange
#> 548 Eric D. KolaczykGábor Csárdi
#> 549 Roger Bowden
#> 550 Prof. Takeshi EmuraYi-Hau Chen
#> 551 Guido SchwarzerJames R. CarpenterGerta Rücker
#> 552 Haijun LiXiaohu Li
#> 553 Osamu KomoriProf. Shinto Eguchi
#> 554 Dan E. Kelley
#> 555 Jan BeranYuanhua FengSucharita GhoshRafal Kulik
#> 556 Niccolò GriecoMaurizio MarzegalliAnna Maria Paganoni
#> 557 Brajendra C. Sutradhar
#> 558 Weili HeJosé PinheiroOlga M. Kuznetsova
#> 559 Alfred DeMarisSteven H. Selman
#> 560 Mikhail NikulinHong-Dar Isaac Wu
#> 561 Prof. Dr. Patrice BertailProf. Dr. Delphine BlankeDr. Pierre-André CornillonProf. Dr. Eric Matzner-Løber
#> 562 Marie DavidianXihong LinJeffrey S. MorrisLeonard A. Stefanski
#> 563 Dr. Karin BammannProf. Dr. Lauren LissnerProf. Dr. Iris PigeotProf. Dr. Wolfgang Ahrens
#> 564 Dr. Mark J. van der LaanDr. Sherri Rose
#> 565 Thomas J. QuirkSimone M. Cummings
#> 566 Ansgar StelandEwaryst RafajłowiczKrzysztof Szajowski
#> 567 Dr. Ewout W. Steyerberg
#> 568 Lanju ZhangDing-Geng (Din) ChenHongmei JiangDr. Gang LiHui Quan
#> 569 Dr. M. Ataharul IslamDr. Abdullah Al-Shiha
#> 570 Bayo Lawal
#> 571 Prof. Dietrich von Rosen
#> 572 Prof. Karl E. PeaceProf. Ding-Geng ChenDr. Sandeep Menon
#> 573 Ding-Geng (Din) ChenJeffrey Wilson
#> 574 John J. SalleyJohn L. ZimmermanMarion J. Ball
#> 575 Ludwig Hothorn
#> 576 Pradip Kumar SahuSanti Ranjan PalAjit Kumar Das
#> 577 Douglas B. ClarksonChris FraleyCharles C. GuJames O. Ramsey
#> 578 Bibhas ChakrabortyErica E.M. Moodie
#> 579 Emilio L. CanoJavier M. MoguerzaAndrés Redchuk
#> 580 Ray LiuDr. Yi Tsong
#> 581 Yinglin XiaJun SunDing-Geng Chen
#> 582 David G. KleinbaumMitchel Klein
#> 583 Jianguo SunXingqiu Zhao
#> 584 Hua HePan WuDing-Geng (Din) Chen
#> 585 Thomas R. FlemingBruce S. Weir
#> 586 Claudio AgostinelliAyanendranath BasuPeter FilzmoserDiganta Mukherjee
#> 587 Thomas J. QuirkMeghan QuirkHoward Horton
#> 588 Angela DeanSusan Lewis
#> 589 S. T. BucklandE. A. RexstadT. A. MarquesC. S. Oedekoven
#> 590 Roger S. BivandEdzer PebesmaVirgilio Gómez-Rubio
#> 591 Prof. Dr. Víctor Hugo Lachos DávilaCelso Rômulo Barbosa CabralProf. Dr. Camila Borelli Zeller
#> 592 George A.F. SeberMohammad M. Salehi
#> 593 Daniele ManfrediniRosa ArborettiLuca Guarda NardiniEleonora CarrozzoLuigi Salmaso
#> 594 Dr. Elizabeth A. AinsburyM.Luz CalleElisabeth CardisDr. Jochen EinbeckGuadalupe GómezPere Puig
#> 595 Mark J. van der LaanSherri Rose
#> 596 Riten MitraPeter Müller
#> 597 Prof. Dr. P. BauerProf. Dr. G. HommelProf. Dr. E. Sonnemann
#> 598 N. BalakrishnanErhard Cramer
#> 599 Elias Ould SaïdIdir OuassouMustapha Rachdi
#> 600 Peter Schlattmann
#> 601 D. Y. LinT. R. Fleming
#> 602 Prof. Seppo Laaksonen
#> 603 Thomas Haslwanter
#> 604 Peter N. Lee
#> 605 Constantino Antonio García MartínezAbraham Otero QuintanaXosé A. VilaMaría José Lado TouriñoLeandro Rodríguez-LiñaresJesús María Rodríguez PresedoArturo José Méndez Penín
#> 606 Emilio PorcuJosé–María MonteroMartin Schlather
#> 607 Jean ThioulouseStéphane DrayDr. Anne-Béatrice DufourAurélie SiberchicotDr. Thibaut JombartProf. Sandrine Pavoine
#> 608 Kees van MontfortJohan OudWendimagegn Ghidey
#> 609 Jérôme Sueur
#> 610 Robert L. Blum
#> 611 Assist. Prof. Raffaele ArgientoAssist. Prof. Daniele DuranteDr. Sara Wade
#> 612 David L ThomsonEvan G. CoochMichael J. Conroy
#> 613 H.-H. BockW. GaulM. VichiPh. ArabieD. BaierF. CritchleyR. DeckerE. DidayM. GreenacreC. LauroJ. MeulmanP. MonariS. NishisatoN. OhsumiO. OpitzG. RitterM. SchaderC. WeihsProfessor Maurizio VichiProfessor Paola MonariProfessor Stefania MignaniProfessor Angela Montanari
#> 614 George J. KnaflKai Ding
#> 615 Regina Y. LiuJoseph W. McKean
#> 616 Prof. Dr. Thorsten Dickhaus
#> 617 Tomasz BurzykowskiGeert MolenberghsMarc Buyse
#> 618 Robert E. KassUri T. EdenEmery N. Brown
#> 619 Michael A. ProschanK. K. Gordan LanJanet Turk Wittes
#> 620 Assist. Prof. Antonio CanaleAssist. Prof. Daniele DuranteAssist. Prof. Lucia PaciAssoc. Prof. Bruno Scarpa
#> 621 Robert H. ShumwayDavid S. Stoffer
#> 622 Akihiro HirakawaHiroyuki SatoTakashi DaimonShigeyuki Matsui
#> 623 Viatcheslav B. Melas
#> 624 Thomas J. QuirkMeghan QuirkHoward Horton
#> 625 Prof. Yuzo HosoyaProf. Kosuke OyaProf. Taro TakimotoProf. Ryo Kinoshita
#> 626 Richard ValliantJill A. DeverFrauke Kreuter
#> 627 Prof. Dr. Michael F. LeitzmannCarmen JochemDaniela Schmid
#> 628 Joel E. CohenFrédéric BriandCharles M. Newman
#> 629 Parimal Mukhopadhyay
#> 630 Phillip Good
#> 631 Frank E. Harrell , Jr.
#> 632 Prof. Shigeyuki MatsuiJohn Crowley
#> 633 Grace Y. Yi
#> 634 Thomas J QuirkMeghan QuirkHoward F Horton
#> 635 Gang ZhengYaning YangXiaofeng ZhuRobert C. Elston
#> 636 Mikhail NikulinDaniel CommengesCatherine Huber
#> 637 Lawrence M. FriedmanCurt D. FurbergDavid L. DeMetsDavid M. ReboussinChristopher B. Granger
#> 638 Professor Wolfgang HärdleProfessor Yuichi MoriProfessor Philippe Vieu
#> 639 Paul R. Rosenbaum
#> 640 James O. RamsayBernard W. Silverman
#> 641 Sarjinder Singh
#> 642 Jared A. LinebachBrian P. TeschLea M. Kovacsiss
#> 643 Prof. Dr. Jürgen PilzProf. Dr. Dieter RaschProf. Viatcheslav B. MelasProf. Dr. Karl Moder
#> 644 Joseph GlazVladimir PozdnyakovSylvan Wallenstein
#> 645 Maurizio CarpitaEugenio BrentariEl Mostafa Qannari
#> 646 Premadhis DasGanesh DuttaNripes Kumar MandalBikas Kumar Sinha
#> 647 Jörg Drechsler
#> 648 Naitee TingDing-Geng ChenShuyen HoJoseph C. Cappelleri
#> 649 Robert H. ShumwayDavid S. Stoffer
#> 650 Rory O’MooreStellan BengtssonJohn R. BryantJohn S. Bryden
#> 651 Thomas J. QuirkSimone Cummings
#> 652 Stuart Coles
#> 653 Thomas W. MacFarland
#> 654 Paulo Eduardo OliveiraMaria da Graça TemidoCarla HenriquesMaurizio Vichi
#> 655 Walter T. Federer
#> 656 Dr. Charan Singh Rayat
#> 657 Francesca DominiciRoger D. Peng
#> 658 Richard K. BurdickDavid J. LeBlondLori B. PfahlerJorge QuirozLeslie SidorKimberly VukovinskyLanju Zhang
#> 659 David L. DeMetsCurt D. FurbergLawrence M. Friedman
#> 660 Joachim KunertChristine H. MüllerAnthony C. Atkinson
#> 661 Luigi SalmasoRosa ArborettiLivio CorainDario Mazzaro
#> 662 Mingxiu HuYi LiuJianchang Lin
#> 663 Dirk F. Moore
#> 664 Arijit ChaudhuriTasos C. Christofides
#> 665 Prof. Müjgan TezProf. Dietrich von Rosen
#> 666 LUIGI SALMASOChiara Brombin
#> 667 D. P. Pretschner
#> 668 M. Ataharul IslamRafiqul I Chowdhury
#> 669 Liang FangCheng Su
#> 670 Elaine FehrmanDr. Vincent EganProf. Alexander N. GorbanProf. Jeremy LevesleyDr. Evgeny M. MirkesDr. Awaz K. Muhammad
#> 671 Torben MartinussenThomas H. Scheike
#> 672 Sylvie HuetAnnie BouvierMarie-Anne GruetEmmanuel Jolivet
#> 673 William H. HolmesWilliam C. Rinaman
#> 674 Wolfgang Karl HärdleSigbert KlinkeBernd Rönz
#> 675 N. Unnikrishnan NairP.G. SankaranN. Balakrishnan
#> 676 Zhen ChenAiyi LiuYongming QuLarry TangNaitee TingYi Tsong
#> 677 Roy SaboEdward Boone
#> 678 Jaroslaw HarezlakDr. David RuppertMatt P. Wand
#> 679 Dimitris D. Tsiftsis
#> 680 Hardeo SahaiMario Miguel Ojeda
#> 681 Thomas W. MacFarlandJan M. Yates
#> 682 Gilbert MacKenzieDefen Peng
#> 683 Wolfgang GaulAndreas Geyer-SchulzYasumasa BabaAkinori Okada
#> 684 Zhezhen JinMengling LiuXiaolong Luo
#> 685 David G. Kleinbaum
#> 686 Prof. Karl E. PeaceProf. Ding-Geng ChenDr. Sandeep Menon
#> 687 Dirk P. KroeseJoshua C.C. Chan
#> 688 Vladimir Panov
#> 689 Maria Kateri
#> 690 S. HuetA. BouvierM. -A. PoursatE. Jolivet
#> 691 Ganapati P. PatilSharad D. GoreCharles Taillie
#> 692 Dr J. E. H. Stafford
#> 693 Adalbert F.X. WilhelmHans A. Kestler
#> 694 Ewout W. Steyerberg
#> 695 Susmita DattaBart J. A. Mertens
#> 696 John P. KleinMelvin L. Moeschberger
#> 697 Matthias Templ
#> 698 V. Serdobolskii
#> 699 Jianchang LinBushi WangXiaowen HuKun ChenRay Liu
#> 700 Josep Antoni Martín-FernándezSantiago Thió-Henestrosa
#> 701 Javier CabreraAndrew McDougall
#> 702 Richard ValliantJill A. DeverFrauke Kreuter
#> 703 Andrew P. RobinsonJeff D. Hamann
#> 704 Nicola TorelliFortunato PesarinAvner Bar-Hen
#> 705 Ding-Geng ChenZhezhen JinProf. Dr. Gang LiYi LiDr. Aiyi LiuProf. Yichuan Zhao
#> 706 Christos P. KitsosTeresa A. OliveiraAlexandros RigasSneh Gulati
#> 707 Gilad J. Kuperman M.D.Reed M. Gardner Ph.DT. Allan Pryor
#> 708 Prof. Dr. Ingwer BorgProf. Patrick J.F. GroenenPatrick Mair
#> 709 Alain F. ZuurElena N. IenoErik H. W. G. Meesters
#> 710 Klaus-Peter AdlassnigGeorg GrabnerStellan BengtssonRolf Hansen
#> 711 Prof. David D. Hanagal
#> 712 Prof. Dr. Geraldine RauchSvenja SchülerMeinhard Kieser
#> 713 Adrian G. BarnettAnnette J. Dobson
#> 714 Thomas J. QuirkSimone Cummings
#> 715 Joseph GlazJoseph NausSylvan Wallenstein
#> 716 Bengt D. Furberg MD, PhDCurt D. Furberg MD, PhD
#> 717 Prof. Dr. Dr. Helge Toutenburg
#> 718 Andrea MattaEvren SahinJingshan LiAlain GuinetNico J. Vandaele
#> 719 Phillip Good
#> 720 Inés M. del PuertoMiguel GonzálezCristina GutiérrezRodrigo MartínezCarmen MinuesaManuel MolinaManuel MotaAlfonso Ramos
#> 721 Glen McPherson
#> 722 Ton J. CleophasAeilko H. ZwindermanToine F. Cleophas
#> 723 Byron J. T. MorganPhilip M. North
#> 724 Thomas J. QuirkSimone Cummings
#> 725 Gernot WassmerWerner Brannath
#> 726 Carlos N. Bouza-Herrera
#> 727 J. JohnD. SchwefelH. Zöllner
#> 728 Ton J. Cleophas MD, PhD, Associate-ProfessorAeilko H. Zwinderman Math D, PhD, ProfessorToine F. Cleophas D Techn
#> 729 Sylvia Wassertheil-SmollerJordan Smoller
#> 730 Adriano PolpoFrancisco LouzadaLaura L. R. RifoJulio M. SternMarcelo Lauretto
#> 731 Rainer BrüggemannGanapati P. Patil
#> 732 Dr. Roel Popping
#> 733 Klaus KrickebergPham Van TrongPham Thi My Hanh
#> 734 Saumyadipta PyneB.L.S. Prakasa RaoS.B. Rao
#> 735 Mei-Ling Ting LeeMitchell GailRuth PfeifferGlen SattenTianxi CaiAxel Gandy
#> 736 Thomas HamelryckKanti MardiaJesper Ferkinghoff-Borg
#> 737 David G. Kleinbaum
#> 738 Charles DiMaggio
#> 739 Hans-Michael Kaltenbach
#> 740 Kenneth J. BerryJanis E. JohnstonPaul W. Mielke, Jr.
#> 741 Prof. Shuichi Shinmura
#> 742 Lanju Zhang
#> 743 David G. KleinbaumMitchel Klein
#> 744 Jan G. De Gooijer
#> 745 Il Do HaJong-Hyeon JeongYoungjo Lee
#> 746 Germán AneirosEnea G. BongiornoRicardo CaoPhilippe Vieu
#> 747 Haruo YanaiKei TakeuchiYoshio Takane
#> 748 John W. Graham
#> 749 Prof. Yichuan ZhaoDing-Geng Chen
#> 750 Daniel Zelterman
#> 751 Yadolah DodgeJana Jurečková
#> 752 Dr. Reiner LeidlDr. Peter PotthoffProfessor Dr. Detlef Schwefel
#> 753 Brant E. Fries
#> 754 Mark Chang
#> 755 Ratan Dasgupta
#> 756
#> 757 David G. KleinbaumKevin M. SullivanNancy D. Barker
#> 758 Wayne L. MyersGanapati P. Patil
#> 759 Claudia Czado
#> 760 Jordi VallverdúAngel PuyolAnna Estany
#> 761 John O'Quigley
#> 762 Jay BartroffTze Leung LaiMei-Chiung Shih
#> 763 Yuhlong LioHon Keung Tony NgTzong-Ru TsaiDing-Geng Chen
#> 764 Tonio Di BattistaElías MorenoWalter Racugno
#> 765 Prof. Paola CappaneraProf. Jingshan LiProf. Andrea MattaProf. Evren SahinProf. Nico J. VandaeleDr. Filippo Visintin
#> 766 Daniel O. Stram
#> 767 Prof. S. Ejaz AhmedDr. Francisco CarvalhoDr. Simo Puntanen
#> 768 Ton J. Cleophas MD, PhDAeilko H. Zwinderman Math D, PhDToine F. Cleophas D Techn
#> 769 Christy Chuang-SteinSimon Kirby
#> 770 Eswar G. Phadia
#> 771 Daniel BorcardFrancois GilletPierre Legendre
#> 772 Eric D. FeigelsonG. Jogesh Babu
#> 773 Niel HensZiv ShkedyMarc AertsChristel FaesPierre Van DammePhilippe Beutels
#> 774 Toshimitsu HamasakiKoko AsakuraScott R. EvansToshimitsu Ochiai
#> 775 Leonhard HeldDaniel Sabanés Bové
#> 776 Shuichi Shinmura
#> 777 Jie ChenArjun K. Gupta
#> 778 Prof.dr.ir. J. E. W. BenekenProf.dr. S. M. Lavelle
#> 779 Peter L. ReichertzRolf EngelbrechtUrsula Piccolo
#> 780 Prof. Ratan Dasgupta
#> 781 Gianluca BaioAndrea BerardiAnna Heath
#> 782 Jack SklanskyJean-Claude Bisconte
#> 783 Dariusz UcinskiAnthony C. AtkinsonMaciej Patan
#> 784 Prof. Dr. Dietmar FergerProf. Wenceslao González ManteigaProf. Dr. Thorsten SchmidtProf. Jane-Ling Wang
#> 785 Brajendra C. Sutradhar
#> 786 Cedric Gondro
#> 787 Martin A. Tanner
#> 788 Jan RychtářMaya ChhetriSat GuptaRatnasingham Shivaji
#> 789 Prof. Francesca BiaginiGöran KauermannThilo Meyer-Brandis
#> 790 Lawrence M. FriedmanCurt D. FurbergDavid L. DeMets
#> 791 Joaquim Pinto da Costa
#> 792 Prof. Takeshi EmuraProf. Shigeyuki MatsuiProf. Virginie Rondeau
#> 793 Christiane Fuchs
#> 794 Prof. Dr. Daniel Durstewitz
#> 795 M. Di BaccoG. D’AmoreF. Scalfari
#> 796 Nan M. LairdChristoph Lange
#> 797 Jamalludin Bin Ab Rahman
#> 798 Hang Lee
#> 799 Peter MüllerFernando Andres QuintanaAlejandro JaraTim Hanson
#> 800 Geert VerbekeGeert Molenberghs
#> 801 Dr. Teresa A. OliveiraChristos P. KitsosAmílcar OliveiraDr. Luís Grilo
#> 802 David Fletcher
#> 803 Takashi DaimonAkihiro HirakawaProf. Shigeyuki Matsui
#> 804 Dr. Jörg PolzehlDr. Karsten Tabelow
#> 805 Joseph G. IbrahimMing-Hui ChenDebajyoti Sinha
#> 806 Charles A. Rohde
#> 807 K. B. NewmanS. T. BucklandB. J. T. MorganR. KingD. L. BorchersD. J. ColeP. BesbeasO. GimenezL. Thomas
#> 808 Per Kragh AndersenLene Theil Skovgaard
#> 809 Prof. Dr. Peter FilzmoserProf. Dr. Karel HronDr. Matthias Templ
#> 810 Prof. Karl E. PeaceProf. Ding-Geng ChenDr. Sandeep Menon
#> 811 Sibylle BiefangWolfgang KöpckeMartin A. Schreiber
#> 812 Ricardo CaoWenceslao González ManteigaJuan Romo
#> 813 J. R. MöhrA. Kluge
#> 814 Prof. Abdesslam Boutayeb
#> 815 Somnath DattaDan Nettleton
#> 816 Warren J. EwensGregory R. Grant
#> 817 Prof. Corrado Crocetta
#> 818 David G. KleinbaumMitchel Klein
#> 819 Ottar N. Bjørnstad
#> 820 Takashi SozuTomoyuki SugimotoToshimitsu HamasakiScott R. Evans
#> 821 Eric VittinghoffDavid V. GliddenStephen C. ShiboskiCharles E. McCulloch
#> 822 Prof. Dr. rer. nat. Wolfgang AhrensProf. Dr. rer. nat. Iris Pigeot
#> 823 Robert H. ShumwayDavid S. Stoffer
#> 824 Rainer BrüggemannLars CarlsenJochen Wittmann
#> 825 Pradip Kumar Sahu
#> 826 Basilio de Bragança PereiraCarlos Alberto de Bragança Pereira
#> 827 Luc PronzatoAndrej Pázman
#> 828 Anthony B. Miller
#> 829 Thomas J. QuirkMeghan H. QuirkHoward F. Horton
#> 830 Joseph GlazDr. Markos V. Koutras
#> 831 Walter Dodds
#> 832 Kenneth P. BurnhamDavid R. Anderson
#> 833 Giovanni ParmigianiElizabeth S. GarrettRafael A. IrizarryScott L. Zeger
#> 834 Jeffrey R. WilsonKent A. Lorenz
#> 835 D. Y. LinP. J. Heagerty
#> 836 Jong-Hyeon Jeong
#> 837 Tamás Rudas
#> 838 Pankaj ChoudharyChaitra H. NagarajaHon Keung Tony Ng
#> 839 Lemuel A. Moyé
#> 840 Steven PiantadosiCurtis L. Meinert
#> 841 Kenneth J. BerryJanis E. JohnstonPaul W. Mielke, Jr.
#> 842 Prof. Dr. Edgar BrunnerDr. Arne C. BathkeFrank Konietschke
#> 843 Prof. George A. F. SeberDr. Matthew R. Schofield
#> 844 Steven P. MillardAndreas Krause
#> 845 László Orlóci
#> 846 K.G. MantonIgor AkushevichJulia Kravchenko
#> 847 Babak Shahbaba
#> 848 Gerhard TutzMatthias Schmid
#> 849 Prof. Dr. Sven KnothProf. Dr. Wolfgang Schmid
#> 850 Max KuhnKjell Johnson
#> 851 Kenneth J. BerryPaul W. Mielke, Jr.Janis E. Johnston
#> 852 Ding-Geng (Din) ChenJohn Dean Chen
#> 853 Prof. Dr. Md. Rezaul KarimProf. M. Ataharul Islam
#> 854 Ratan Dasgupta
#> 855 Kees van MontfortJohan H. L. OudManuel C. Voelkle
#> 856 Dr. Girish ChandraDr. Raman NautiyalDr. Hukum Chandra
#> 857 Peter L. ReichertzRolf EngelbrechtUrsula Piccolo
#> 858 Dr. Nina GolyandinaDr. Anton KorobeynikovProf. Anatoly Zhigljavsky
#> 859 Prof. Takeshi EmuraYi-Hau Chen
#> 860 Prof. Marco CorazzaProf. María DurbánProf. Aurea GranéProf. Cira PernaProf. Marilena Sibillo
#> 861 Berthold LausenDirk Van den PoelAlfred Ultsch
#> 862 Jan BeranYuanhua FengSucharita GhoshRafal Kulik
#> 863 Prof. Francesco MolaProf. Claudio ConversanoProf. Maurizio Vichi
#> 864 Paolo GiudiciSalvatore IngrassiaMaurizio Vichi
#> 865 Prof. Muhammad AslamProf. Mir Masoom Ali
#> 866 Myoung-jae Lee
#> 867 Prof. Dr. Kohei Adachi
#> 868 Prof. Dr. Patrice BertailProf. Dr. Delphine BlankeDr. Pierre-André CornillonProf. Dr. Eric Matzner-Løber
#> 869 Warren Beatty
#> 870 Umberto CherubiniFabio GobbiSabrina Mulinacci
#> 871
#> 872 Dr. M. Ataharul IslamDr. Abdullah Al-Shiha
#> 873 Corinne BerzinAlain LatourJosé R. León
#> 874 Luc AnselinSergio J. Rey
#> 875 Peter J. BrockwellRichard A. Davis
#> 876 Yong ZengShu Wu
#> 877 Prof. Alessandra PetrucciProf. Filomena RacioppiProf. Rosanna Verde
#> 878 Víctor Gómez
#> 879 Adrian Pizzinga
#> 880 Cynthia Fraser
#> 881 Yoko TanokuraGenshiro Kitagawa
#> 882 Dr. Yan LiuDr. Fumiya AkashiProf. Masanobu Taniguchi
#> 883 Emilio L. CanoJavier M. MoguerzaAndrés Redchuk
#> 884 Dr. Jiří V. Skolka
#> 885 Claudio AgostinelliAyanendranath BasuPeter FilzmoserDiganta Mukherjee
#> 886 Daniel Straumann
#> 887 Jun S. Liu
#> 888 Wolfgang Karl HärdleLéopold Simar
#> 889 Jing Qin
#> 890 Thomas Cleff
#> 891 William M. MasonStephen E. Fienberg
#> 892 Thomas Quirk
#> 893 Wolfgang Karl HärdleVladimir SpokoinyVladimir PanovWeining Wang
#> 894 Christian Gouriéroux
#> 895 Prof. Masafumi Akahira
#> 896 Assist. Prof. Raffaele ArgientoAssist. Prof. Daniele DuranteDr. Sara Wade
#> 897 H.-H. BockW. GaulM. VichiPh. ArabieD. BaierF. CritchleyR. DeckerE. DidayM. GreenacreC. LauroJ. MeulmanP. MonariS. NishisatoN. OhsumiO. OpitzG. RitterM. SchaderC. WeihsProfessor Maurizio VichiProfessor Paola MonariProfessor Stefania MignaniProfessor Angela Montanari
#> 898 Shailaja Deshmukh
#> 899 Prof. Dr. Thorsten Dickhaus
#> 900 Thomas J. Quirk
#> 901 David RuppertDavid S. Matteson
#> 902 Joel L. Horowitz
#> 903 Abdulkader AljandaliDr. Motasam Tatahi
#> 904 Abdulkader Aljandali
#> 905 A Ohri
#> 906 Professor Carlo LauroProfessor Jaromir AntochDr. Vincenzo Esposito VinziProfessor Gilbert Saporta
#> 907 Kei Takeuchi
#> 908 Suzanne Jak
#> 909 Pavel V. Shevchenko
#> 910 Chris ChapmanElea McDonnell Feit
#> 911 Prof. Yuzo HosoyaProf. Kosuke OyaProf. Taro TakimotoProf. Ryo Kinoshita
#> 912 Bernie DevlinStephen E. FienbergDaniel P. ResnickKathryn Roeder
#> 913 Jürgen FrankeWolfgang Karl HärdleChristian Matthias Hafner
#> 914 Erik HofmannPatrick BeckErik Füger
#> 915 Prof. Ignacio RojasProf. Héctor PomaresProf. Olga Valenzuela
#> 916 Hiroyasu Inoue
#> 917 Wolfgang Jank
#> 918 Parimal Mukhopadhyay
#> 919 Prof. Barry C. ArnoldProf. José María Sarabia
#> 920 Phillip Good
#> 921 Ignacio RojasHéctor Pomares
#> 922 John van der HoekRobert J. Elliott
#> 923 Cheng-Few LeeJohn C. LeeAlice C. Lee
#> 924 Cynthia Fraser
#> 925 Manuel Úbeda FloresEnrique de Amo ArteroFabrizio DuranteJuan Fernández Sánchez
#> 926 Karl G. JöreskogUlf H. OlssonFan Y. Wallentin
#> 927 Yuriy Kharin
#> 928 Shlomo YitzhakiEdna Schechtman
#> 929 Paul R. Rosenbaum
#> 930 Agostino Di CiaccioMauro ColiJose Miguel Angulo Ibanez
#> 931 Sarjinder Singh
#> 932 Pavel ČížekRafał WeronWolfgang Härdle
#> 933 Maurizio CarpitaEugenio BrentariEl Mostafa Qannari
#> 934 Abdul Quader Miah
#> 935 Hubert Gatignon
#> 936 Wolfgang Karl HärdleLéopold Simar
#> 937 Prof. Ignacio RojasProf. Héctor PomaresProf. Olga Valenzuela
#> 938 Premadhis DasGanesh DuttaNripes Kumar MandalBikas Kumar Sinha
#> 939 Jörg Drechsler
#> 940 Marius HofertIvan KojadinovicMartin MächlerJun Yan
#> 941 Lajos HorváthPiotr Kokoszka
#> 942 Dr. F. De AntoniProfessor N. LauroProfessor A. Rizzi
#> 943 Richard Durrett
#> 944 Ronald L. MoyLi-Shya ChenLie Jane Kao
#> 945 Prof. Dr. Arch G. Woodside
#> 946 Dimitris N. Politis
#> 947 B.K. SinhaN.K. MandalManisha PalP. Das
#> 948 René Carmona
#> 949 Mingxiu HuYi LiuJianchang Lin
#> 950 A Ohri
#> 951 Prof. Müjgan TezProf. Dietrich von Rosen
#> 952 Professor Dr. Hans-Hermann BockProfessor Dr. Peter Ihm
#> 953 Jürgen FrankeWolfgang Karl HärdleChristian Matthias Hafner
#> 954 Othmar W. Winkler
#> 955 M. Ataharul IslamRafiqul I Chowdhury
#> 956 Sylvia Frühwirth-SchnatterAngela BittoGregor KastnerAlexandra Posekany
#> 957 Wolfgang Karl HärdleSigbert KlinkeBernd Rönz
#> 958 Estela Bee DagumSilvia Bianconcini
#> 959 N. Unnikrishnan NairP.G. SankaranN. Balakrishnan
#> 960 K. Muralidharan
#> 961 Jaroslaw HarezlakDr. David RuppertMatt P. Wand
#> 962 Dr. René MichelDr. Igor SchnakenburgDr. Tobias von Martens
#> 963 Prof. Shunji OsakiProf. Yukio Hatoyama
#> 964 Wolfgang GaulAndreas Geyer-SchulzYasumasa BabaAkinori Okada
#> 965 Wolfgang HärdleZděnk HlávkaSigbert Klinke
#> 966 Ludwig FahrmeirThomas KneibStefan LangBrian Marx
#> 967 Jeff Grover
#> 968 Ira H. BernsteinCalvin P. GarbinGary K. Teng
#> 969 Libby Gill
#> 970 A. R. G. Heesterman
#> 971 Hrishikesh D. Vinod
#> 972 Victor M. Panaretos
#> 973 Adalbert F.X. WilhelmHans A. Kestler
#> 974 Matthias J. Fischer
#> 975 Cynthia Fraser
#> 976 Matthias Templ
#> 977 Chin-Diew LaiMin Xie
#> 978 Prof. Olga ValenzuelaProf. Fernando RojasProf. Héctor PomaresProf. Ignacio Rojas
#> 979 Javier CabreraAndrew McDougall
#> 980 John Wolberg
#> 981 Nicola TorelliFortunato PesarinAvner Bar-Hen
#> 982 Jaromír AntochJana JurečkováMatúš MaciakMichal Pešta
#> 983 Cynthia Fraser
#> 984 Peter J. BrockwellRichard A. Davis
#> 985 Prof. Ratan Dasgupta
#> 986 Christos P. KitsosTeresa A. OliveiraAlexandros RigasSneh Gulati
#> 987 Birger Madsen
#> 988 David Ruppert
#> 989 Hengky LatanRichard Noonan
#> 990 Ingrid Van KeilegomPaul W. Wilson
#> 991 Abdulkader Aljandali
#> 992 Thomas J. QuirkDr. Eric Rhiney
#> 993 Prof. Dr. Andreas Behr
#> 994 Emer Smyth
#> 995 Birger Stjernholm Madsen
#> 996 Thomas J. Quirk
#> 997 Prof. Dr. Dr. Helge Toutenburg
#> 998 Phillip Good
#> 999 Prof. Dr. Otto Optiz
#> 1000 Thomas J QuirkJulie Palmer-Schuyler
#> 1001 Glen McPherson
#> 1002 Rabi BhattacharyaLizhen LinVictor Patrangenaru
#> 1003 Gauss M. CordeiroFrancisco Cribari-Neto
#> 1004 Dr. Christos P. KitsosDr. Werner G. Müller
#> 1005 Paul A. Herzberg
#> 1006 Marzia Mortati
#> 1007 Hubert Gatignon
#> 1008 Dr. Roel Popping
#> 1009 Saumyadipta PyneB.L.S. Prakasa RaoS.B. Rao
#> 1010 Francesco PalumboAngela MontanariMaurizio Vichi
#> 1011 Cheng-Few LeeHong-Yi ChenDr. John Lee
#> 1012 Mohammad AhsanullahValery B NevzorovMohammad Shakil
#> 1013 Jan G. De Gooijer
#> 1014
#> 1015 Pavel CizekWolfgang Karl HärdleRafał Weron
#> 1016 Phoebus J. Dhrymes
#> 1017 Giorgio AllevaAndrea Giommi
#> 1018 Durmuş Özdemir
#> 1019 Marat IbragimovRustam IbragimovJohan Walden
#> 1020 Linda HerkenhoffJohn Fogli
#> 1021 Rand R. Wilcox
#> 1022 Professor Dr. Erling B. Andersen
#> 1023 Prof. S P MukherjeeProf. Bikas K SinhaProf. Asis Kumar Chattopadhyay
#> 1024 Tomas Cipra
#> 1025 Yadolah DodgeJana Jurečková
#> 1026 Professor Bruce D. Spencer
#> 1027 Mia HubertGreet PisonAnja StruyfStefan Van Aelst
#> 1028 Prof. Cira PernaProf. Monica PratesiProf. Anne Ruiz-Gazen
#> 1029 Wai Keung LiDavid A. StanfordHao Yu
#> 1030 Claudia Czado
#> 1031 Aki-Hiro Sato
#> 1032 PD Dr. Hans-Jürg BüttlerDr. Gertrud FreiProf. Dr. Bernd Schips
#> 1033 Yuhlong LioHon Keung Tony NgTzong-Ru TsaiDing-Geng Chen
#> 1034 Cheng-Few LeeJohn LeeJow-Ran ChangTzu Tai
#> 1035 Guangyuan Gao
#> 1036 Prof. Dr. Jaromír Antoch
#> 1037 Dr. Reiner Hutwelker
#> 1038 Thomas MikoschJens-Peter KreißRichard A. DavisTorben Gustav Andersen
#> 1039 Thomas J. SantnerDiane E. Duffy
#> 1040 Jie ChenArjun K. Gupta
#> 1041 Bernd SchererR. Douglas Martin
#> 1042 Leon WillenborgTon de Waal
#> 1043 J.P. Verma
#> 1044
#> 1045 Prof. Dr. Wolfgang Karl HärdleProf. Cathy Yi-Hsuan ChenProf. Dr. Ludger Overbeck
#> 1046 Prof. Ratan Dasgupta
#> 1047 Gianluca BaioAndrea BerardiAnna Heath
#> 1048 Eric ZivotJiahui Wang
#> 1049 Prof. Masanori SawaDr. Masatake HiraoProf. Sanpei Kageyama
#> 1050 Prof. Dr. Dietmar FergerProf. Wenceslao González ManteigaProf. Dr. Thorsten SchmidtProf. Jane-Ling Wang
#> 1051 Paul-André Monney
#> 1052 A. R. G. Heesterman
#> 1053 Raffaele ArgientoEttore LanzaroneIsadora Antoniano VillalobosAlessandra Mattei
#> 1054 Charles F. Manski
#> 1055 Prof. Masayuki Hirukawa
#> 1056 Christian HeumannMichael SchomakerShalabh
#> 1057 Univ.-Doz. Dr. Manfred Nermuth
#> 1058 Ding-Geng ChenJiahua ChenXuewen LuGrace Y. YiHao Yu
#> 1059 Professor Dr. Erling B. Andersen
#> 1060 Christiane Fuchs
#> 1061 Prof. Dr. Wolfgang Karl HärdleProf. Dr. Ostap OkhrinProf. Dr. Yarema Okhrin
#> 1062 Piotr JaworskiFabrizio DuranteWolfgang Karl Härdle
#> 1063 Umberto CherubiniFabrizio DuranteSabrina Mulinacci
#> 1064 Regina KaiserAgustín Maravall
#> 1065 V. G. VoinovM. S. Nikulin
#> 1066 Prof. Koji Miyawaki
#> 1067 Dr. Teresa A. OliveiraChristos P. KitsosAmílcar OliveiraDr. Luís Grilo
#> 1068 David Fletcher
#> 1069 Mohammad AhsanullahValery B. Nevzorov
#> 1070 Dominik Ballreich
#> 1071 Wolfgang Karl HärdleLéopold Simar
#> 1072 Prof. Ratan Dasgupta
#> 1073 Ricardo CaoWenceslao González ManteigaJuan Romo
#> 1074 Naoto KunitomoSeisho SatoDaisuke Kurisu
#> 1075 Prof. Manoranjan PalDr. Premananda Bharati
#> 1076 Miodrag Lovric
#> 1077 Chris ChapmanElea McDonnell Feit
#> 1078 Prof. Corrado Crocetta
#> 1079 Basilio de Bragança PereiraCarlos Alberto de Bragança Pereira
#> 1080 Jin-Chuan DuanWolfgang Karl HärdleJames E. Gentle
#> 1081 Isabella MorliniTommaso MinervaMaurizio Vichi
#> 1082 Hal R. Varian
#> 1083 Thomas Quirk
#> 1084 Víctor Gómez
#> 1085 Thomas J. Quirk
#> 1086 Prof. Ding-Geng (Din) ChenProf. Yuhlong LioProf. Hon Keung Tony NgProf. Tzong-Ru Tsai
#> 1087 N. C. Das
#> 1088 Professor Dr. Erling B. Andersen
#> 1089 Nick T. Thomopoulos
#> 1090 PD Dr. Marc Wildi
#> 1091 Kristin E. VoelklSusan B. Gerber
#> 1092 Prof. Dr. Iouri TchijovDr. Lucja Tomaszewicz
#> 1093 Pascal ArdillyYves Tillé
#> 1094 Prof. Dr. Sven KnothProf. Dr. Wolfgang Schmid
#> 1095 Jürgen FrankeWolfgang Karl HärdleChristian Matthias Hafner
#> 1096 Jan Ubøe
#> 1097 Marc HallinDavid M. MasonDietmar PfeiferJosef G. Steinebach
#> 1098 Szymon BorakWolfgang Karl HärdleBrenda López-Cabrera
#> 1099 Dr. Alexander Silbersdorff
#> 1100 Prof. Dr. Md. Rezaul KarimProf. M. Ataharul Islam
#> 1101 Arjun K. GuptaTamas VargaTaras Bodnar
#> 1102 Masanobu TaniguchiTomoyuki AmanoHiroaki OgataHiroyuki Taniai
#> 1103 Simo PuntanenGeorge P. H. StyanJarkko Isotalo
#> 1104 Dr. Girish ChandraDr. Raman NautiyalDr. Hukum Chandra
#> 1105 Professor Dr. Henk A. L. KiersProfessor Dr. Jean-Paul RassonDr. Patrick J. F. GroenenProfessor Dr. Martin Schader
#> 1106 Prof. Nobuoki Eshima
#> 1107 David Ruppert
#> 1108 Dr. Nina GolyandinaDr. Anton KorobeynikovProf. Anatoly Zhigljavsky
#> Publication.Year
#> 1 2013
#> 2 2019
#> 3 2013
#> 4 1985
#> 5 2013
#> 6 1981
#> 7 2018
#> 8 2013
#> 9 2014
#> 10 2016
#> 11 2013
#> 12 2013
#> 13 2019
#> 14 2003
#> 15 2011
#> 16 2016
#> 17 1997
#> 18 2013
#> 19 2001
#> 20 2008
#> 21 2016
#> 22 2013
#> 23 1985
#> 24 2018
#> 25 2005
#> 26 2014
#> 27 2012
#> 28 2018
#> 29 2014
#> 30 2018
#> 31 2018
#> 32 2011
#> 33 2015
#> 34 2016
#> 35 1981
#> 36 2019
#> 37 2019
#> 38 2011
#> 39 2001
#> 40 2002
#> 41 2014
#> 42 2014
#> 43 2001
#> 44 2002
#> 45 2018
#> 46 2014
#> 47 2013
#> 48 2016
#> 49 2013
#> 50 2014
#> 51 1995
#> 52 1987
#> 53 2010
#> 54 2016
#> 55 2016
#> 56 2013
#> 57 2011
#> 58 2001
#> 59 1999
#> 60 2017
#> 61 2017
#> 62 2018
#> 63 1997
#> 64 2013
#> 65 2004
#> 66 2016
#> 67 2016
#> 68 2012
#> 69 2015
#> 70 2019
#> 71 1999
#> 72 2005
#> 73 2014
#> 74 2006
#> 75 2017
#> 76 2015
#> 77 2018
#> 78 2018
#> 79 2016
#> 80 2017
#> 81 2001
#> 82 2019
#> 83 2017
#> 84 2013
#> 85 2011
#> 86 2013
#> 87 2006
#> 88 2018
#> 89 2002
#> 90 2017
#> 91 2014
#> 92 2014
#> 93 2011
#> 94 2015
#> 95 2019
#> 96 2002
#> 97 2014
#> 98 2005
#> 99 2018
#> 100 2005
#> 101 2004
#> 102 2009
#> 103 2007
#> 104 2015
#> 105 2011
#> 106 1998
#> 107 2015
#> 108 2003
#> 109 2018
#> 110 1996
#> 111 2017
#> 112 2009
#> 113 2018
#> 114 2009
#> 115 2016
#> 116 2002
#> 117 1999
#> 118 2013
#> 119 2014
#> 120 2014
#> 121 2013
#> 122 2012
#> 123 2014
#> 124 2012
#> 125 2002
#> 126 2014
#> 127 2017
#> 128 2014
#> 129 2019
#> 130 2019
#> 131 2016
#> 132 2016
#> 133 2018
#> 134 2012
#> 135 2018
#> 136 2002
#> 137 2015
#> 138 2014
#> 139 1975
#> 140 2007
#> 141 2016
#> 142 2018
#> 143 2013
#> 144 2017
#> 145 2004
#> 146 2020
#> 147 2015
#> 148 2018
#> 149 2011
#> 150 2006
#> 151 2018
#> 152 2015
#> 153 2010
#> 154 2015
#> 155 2017
#> 156 2013
#> 157 2015
#> 158 2013
#> 159 2017
#> 160 2016
#> 161 2011
#> 162 2018
#> 163 2000
#> 164 2015
#> 165 2013
#> 166 2001
#> 167 2017
#> 168 2017
#> 169 2017
#> 170 2009
#> 171 2016
#> 172 2005
#> 173 2013
#> 174 2013
#> 175 1987
#> 176 2007
#> 177 2002
#> 178 2002
#> 179 2007
#> 180 2012
#> 181 2013
#> 182 2014
#> 183 2008
#> 184 2018
#> 185 2013
#> 186 2009
#> 187 2015
#> 188 2016
#> 189 2003
#> 190 2010
#> 191 2000
#> 192 1999
#> 193 2019
#> 194 2019
#> 195 1996
#> 196 2012
#> 197 2006
#> 198 2015
#> 199 2006
#> 200 2016
#> 201 2018
#> 202 2012
#> 203 2013
#> 204 2001
#> 205 2013
#> 206 2000
#> 207 2016
#> 208 2015
#> 209 2000
#> 210 2014
#> 211 2016
#> 212 2013
#> 213 2014
#> 214 2016
#> 215 2013
#> 216 2017
#> 217 2012
#> 218 2018
#> 219 2013
#> 220 2006
#> 221 2014
#> 222 2010
#> 223 2016
#> 224 2018
#> 225 2007
#> 226 2017
#> 227 2018
#> 228 1992
#> 229 2015
#> 230 1996
#> 231 2016
#> 232 2017
#> 233 2007
#> 234 2013
#> 235 1982
#> 236 2015
#> 237 2015
#> 238 2013
#> 239 2013
#> 240 2018
#> 241 2017
#> 242 2004
#> 243 2012
#> 244 2016
#> 245 2019
#> 246 2003
#> 247 2014
#> 248 2016
#> 249 2013
#> 250 2014
#> 251 2016
#> 252 1991
#> 253 2017
#> 254 2014
#> 255 2004
#> 256 2004
#> 257 2011
#> 258 2001
#> 259 2016
#> 260 2013
#> 261 2014
#> 262 2018
#> 263 2012
#> 264 1999
#> 265 2009
#> 266 2017
#> 267 2016
#> 268 2012
#> 269 2016
#> 270 2016
#> 271 2002
#> 272 2018
#> 273 2017
#> 274 2017
#> 275 2013
#> 276 2012
#> 277 2017
#> 278 2017
#> 279 2007
#> 280 1991
#> 281 2013
#> 282 2018
#> 283 2011
#> 284 2004
#> 285 2017
#> 286 2008
#> 287 2001
#> 288 2014
#> 289 1997
#> 290 2006
#> 291 1980
#> 292 2012
#> 293 2017
#> 294 2005
#> 295 2001
#> 296 2002
#> 297 2005
#> 298 2016
#> 299 2003
#> 300 2001
#> 301 1998
#> 302 2006
#> 303 2016
#> 304 2005
#> 305 2018
#> 306 2016
#> 307 1980
#> 308 2016
#> 309 1995
#> 310 2014
#> 311 2013
#> 312 2015
#> 313 2017
#> 314 2017
#> 315 2011
#> 316 2013
#> 317 2013
#> 318 2015
#> 319 1989
#> 320 2016
#> 321 2018
#> 322 1995
#> 323 2019
#> 324 2019
#> 325 2017
#> 326 2013
#> 327 2019
#> 328 2001
#> 329 2012
#> 330 2004
#> 331 2017
#> 332 2012
#> 333 2016
#> 334 1996
#> 335 2012
#> 336 1986
#> 337 1993
#> 338 2011
#> 339 2015
#> 340 2017
#> 341 2003
#> 342 2017
#> 343 2015
#> 344 2012
#> 345 2018
#> 346 2006
#> 347 2007
#> 348 2017
#> 349 2000
#> 350 2002
#> 351 2012
#> 352 1992
#> 353 2012
#> 354 2000
#> 355 1997
#> 356 1993
#> 357 2012
#> 358 2013
#> 359 2010
#> 360 2002
#> 361 2004
#> 362 2018
#> 363 1985
#> 364 2019
#> 365 2014
#> 366 2018
#> 367 2013
#> 368 2016
#> 369 2018
#> 370 2005
#> 371 2014
#> 372 2019
#> 373 1999
#> 374 2006
#> 375 2015
#> 376 2013
#> 377 1986
#> 378 1982
#> 379 1999
#> 380 2011
#> 381 2016
#> 382 2013
#> 383 2006
#> 384 2012
#> 385 2019
#> 386 2016
#> 387 2012
#> 388 2014
#> 389 2014
#> 390 1980
#> 391 2016
#> 392 2012
#> 393 2003
#> 394 2014
#> 395 1999
#> 396 2015
#> 397 2015
#> 398 2007
#> 399 2011
#> 400 2014
#> 401 2003
#> 402 1979
#> 403 2007
#> 404 2018
#> 405 2017
#> 406 2013
#> 407 2018
#> 408 1998
#> 409 2002
#> 410 2002
#> 411 1987
#> 412 2013
#> 413 2019
#> 414 2015
#> 415 2015
#> 416 1990
#> 417 2009
#> 418 2017
#> 419 2014
#> 420 2013
#> 421 2017
#> 422 1992
#> 423 2003
#> 424 2018
#> 425 2000
#> 426 2016
#> 427 2005
#> 428 2019
#> 429 2016
#> 430 2000
#> 431 2016
#> 432 2015
#> 433 2013
#> 434 2019
#> 435 2018
#> 436 2013
#> 437 2018
#> 438 2005
#> 439 2017
#> 440 2017
#> 441 2015
#> 442 1985
#> 443 2014
#> 444 2014
#> 445 2015
#> 446 2015
#> 447 2017
#> 448 2015
#> 449 2018
#> 450 2013
#> 451 2019
#> 452 2018
#> 453 2018
#> 454 2015
#> 455 2015
#> 456 2019
#> 457 2006
#> 458 2001
#> 459 2014
#> 460 2011
#> 461 2012
#> 462 1994
#> 463 1981
#> 464 2016
#> 465 1989
#> 466 2019
#> 467 2006
#> 468 1999
#> 469 2010
#> 470 2007
#> 471 2018
#> 472 2014
#> 473 2018
#> 474 2016
#> 475 2018
#> 476 2016
#> 477 2019
#> 478 2016
#> 479 2011
#> 480 2019
#> 481 2015
#> 482 2009
#> 483 2000
#> 484 2016
#> 485 2010
#> 486 2002
#> 487 2018
#> 488 2014
#> 489 2009
#> 490 1995
#> 491 2011
#> 492 2015
#> 493 2013
#> 494 2002
#> 495 2001
#> 496 2015
#> 497 2003
#> 498 2015
#> 499 2015
#> 500 2012
#> 501 2014
#> 502 2016
#> 503 2018
#> 504 2018
#> 505 2019
#> 506 2017
#> 507 2016
#> 508 2016
#> 509 2015
#> 510 2014
#> 511 2011
#> 512 2002
#> 513 2005
#> 514 1994
#> 515 2011
#> 516 2013
#> 517 1992
#> 518 2000
#> 519 2019
#> 520 2014
#> 521 2016
#> 522 2016
#> 523 2006
#> 524 2011
#> 525 2000
#> 526 2015
#> 527 2015
#> 528 2009
#> 529 2011
#> 530 2018
#> 531 1995
#> 532 2013
#> 533 2020
#> 534 2012
#> 535 2016
#> 536 2013
#> 537 2017
#> 538 2011
#> 539 2008
#> 540 2003
#> 541 2013
#> 542 2015
#> 543 2013
#> 544 1977
#> 545 2020
#> 546 2018
#> 547 2010
#> 548 2014
#> 549 2018
#> 550 2018
#> 551 2015
#> 552 2013
#> 553 2019
#> 554 2018
#> 555 2013
#> 556 2013
#> 557 2013
#> 558 2014
#> 559 2013
#> 560 2016
#> 561 2018
#> 562 2014
#> 563 2019
#> 564 2018
#> 565 2016
#> 566 2015
#> 567 2019
#> 568 2019
#> 569 2018
#> 570 2014
#> 571 2018
#> 572 2018
#> 573 2015
#> 574 1990
#> 575 1991
#> 576 2015
#> 577 2005
#> 578 2013
#> 579 2012
#> 580 2019
#> 581 2018
#> 582 2010
#> 583 2013
#> 584 2016
#> 585 2013
#> 586 2016
#> 587 2013
#> 588 2006
#> 589 2015
#> 590 2013
#> 591 2018
#> 592 2013
#> 593 2014
#> 594 2017
#> 595 2011
#> 596 2015
#> 597 1988
#> 598 2014
#> 599 2015
#> 600 2009
#> 601 1997
#> 602 2018
#> 603 2016
#> 604 1988
#> 605 2017
#> 606 2012
#> 607 2018
#> 608 2014
#> 609 2018
#> 610 1982
#> 611 2019
#> 612 2009
#> 613 2005
#> 614 2016
#> 615 2016
#> 616 2018
#> 617 2005
#> 618 2014
#> 619 2006
#> 620 2018
#> 621 2017
#> 622 2018
#> 623 2006
#> 624 2013
#> 625 2017
#> 626 2013
#> 627 2018
#> 628 1990
#> 629 2016
#> 630 2000
#> 631 2015
#> 632 2017
#> 633 2017
#> 634 2015
#> 635 2012
#> 636 2006
#> 637 2015
#> 638 2007
#> 639 2002
#> 640 2002
#> 641 2003
#> 642 2014
#> 643 2018
#> 644 2009
#> 645 2015
#> 646 2015
#> 647 2011
#> 648 2017
#> 649 2006
#> 650 1990
#> 651 2014
#> 652 2001
#> 653 2014
#> 654 2013
#> 655 1993
#> 656 2018
#> 657 2008
#> 658 2017
#> 659 2006
#> 660 2016
#> 661 2011
#> 662 2013
#> 663 2016
#> 664 2013
#> 665 2018
#> 666 2013
#> 667 1982
#> 668 2017
#> 669 2019
#> 670 2019
#> 671 2006
#> 672 1996
#> 673 2014
#> 674 2015
#> 675 2013
#> 676 2015
#> 677 2013
#> 678 2018
#> 679 1986
#> 680 2004
#> 681 2016
#> 682 2014
#> 683 2014
#> 684 2016
#> 685 1996
#> 686 2018
#> 687 2014
#> 688 2017
#> 689 2014
#> 690 2004
#> 691 2011
#> 692 1995
#> 693 2016
#> 694 2009
#> 695 2017
#> 696 1997
#> 697 2017
#> 698 2000
#> 699 2016
#> 700 2016
#> 701 2002
#> 702 2018
#> 703 2011
#> 704 2013
#> 705 2017
#> 706 2015
#> 707 1991
#> 708 2018
#> 709 2009
#> 710 1991
#> 711 2019
#> 712 2017
#> 713 2010
#> 714 2017
#> 715 2001
#> 716 2007
#> 717 1995
#> 718 2016
#> 719 2005
#> 720 2016
#> 721 1990
#> 722 2000
#> 723 1985
#> 724 2016
#> 725 2016
#> 726 2013
#> 727 1983
#> 728 2006
#> 729 2015
#> 730 2015
#> 731 2011
#> 732 2019
#> 733 2019
#> 734 2016
#> 735 2013
#> 736 2012
#> 737 1994
#> 738 2013
#> 739 2012
#> 740 2019
#> 741 2019
#> 742 2016
#> 743 2012
#> 744 2017
#> 745 2017
#> 746 2017
#> 747 2011
#> 748 2012
#> 749 2018
#> 750 2015
#> 751 2000
#> 752 1990
#> 753 1981
#> 754 2011
#> 755 2013
#> 756 1994
#> 757 2013
#> 758 2012
#> 759 2019
#> 760 2019
#> 761 2008
#> 762 2013
#> 763 2019
#> 764 2016
#> 765 2017
#> 766 2014
#> 767 2019
#> 768 2002
#> 769 2017
#> 770 2016
#> 771 2011
#> 772 2012
#> 773 2012
#> 774 2016
#> 775 2014
#> 776 2016
#> 777 2012
#> 778 1983
#> 779 1986
#> 780 2017
#> 781 2017
#> 782 1982
#> 783 2013
#> 784 2017
#> 785 2014
#> 786 2015
#> 787 1991
#> 788 2015
#> 789 2019
#> 790 2010
#> 791 2015
#> 792 2019
#> 793 2013
#> 794 2017
#> 795 2004
#> 796 2011
#> 797 2015
#> 798 2014
#> 799 2015
#> 800 1997
#> 801 2018
#> 802 2018
#> 803 2019
#> 804 2019
#> 805 2001
#> 806 2014
#> 807 2014
#> 808 2010
#> 809 2018
#> 810 2018
#> 811 1983
#> 812 2016
#> 813 1981
#> 814 2020
#> 815 2014
#> 816 2001
#> 817 2019
#> 818 2002
#> 819 2018
#> 820 2015
#> 821 2012
#> 822 2005
#> 823 2000
#> 824 2014
#> 825 2016
#> 826 2016
#> 827 2013
#> 828 2013
#> 829 2016
#> 830 2020
#> 831 2019
#> 832 2002
#> 833 2003
#> 834 2015
#> 835 2004
#> 836 2014
#> 837 2018
#> 838 2015
#> 839 2006
#> 840 2020
#> 841 2018
#> 842 2018
#> 843 2019
#> 844 2001
#> 845 1975
#> 846 2009
#> 847 2012
#> 848 2016
#> 849 2018
#> 850 2013
#> 851 2016
#> 852 2017
#> 853 2019
#> 854 2015
#> 855 2018
#> 856 2020
#> 857 1987
#> 858 2018
#> 859 2018
#> 860 2018
#> 861 2013
#> 862 2013
#> 863 2018
#> 864 2013
#> 865 2019
#> 866 2010
#> 867 2016
#> 868 2018
#> 869 2018
#> 870 2016
#> 871 1990
#> 872 2018
#> 873 2014
#> 874 2010
#> 875 2016
#> 876 2013
#> 877 2019
#> 878 2016
#> 879 2012
#> 880 2019
#> 881 2015
#> 882 2018
#> 883 2012
#> 884 1982
#> 885 2016
#> 886 2005
#> 887 2004
#> 888 2015
#> 889 2017
#> 890 2014
#> 891 1985
#> 892 2011
#> 893 2014
#> 894 1997
#> 895 2017
#> 896 2019
#> 897 2005
#> 898 2012
#> 899 2018
#> 900 2016
#> 901 2015
#> 902 2009
#> 903 2018
#> 904 2016
#> 905 2013
#> 906 2002
#> 907 2020
#> 908 2015
#> 909 2011
#> 910 2015
#> 911 2017
#> 912 1997
#> 913 2011
#> 914 2013
#> 915 2018
#> 916 2020
#> 917 2011
#> 918 2016
#> 919 2018
#> 920 2000
#> 921 2016
#> 922 2006
#> 923 2013
#> 924 2013
#> 925 2017
#> 926 2016
#> 927 2013
#> 928 2013
#> 929 2002
#> 930 2012
#> 931 2003
#> 932 2005
#> 933 2015
#> 934 2016
#> 935 2010
#> 936 2019
#> 937 2017
#> 938 2015
#> 939 2011
#> 940 2018
#> 941 2012
#> 942 1986
#> 943 2016
#> 944 2015
#> 945 2019
#> 946 2015
#> 947 2014
#> 948 2014
#> 949 2013
#> 950 2014
#> 951 2018
#> 952 1991
#> 953 2015
#> 954 2009
#> 955 2017
#> 956 2015
#> 957 2015
#> 958 2016
#> 959 2013
#> 960 2015
#> 961 2018
#> 962 2019
#> 963 1984
#> 964 2014
#> 965 2000
#> 966 2013
#> 967 2016
#> 968 1988
#> 969 2013
#> 970 1972
#> 971 2010
#> 972 2016
#> 973 2016
#> 974 2014
#> 975 2012
#> 976 2017
#> 977 2006
#> 978 2019
#> 979 2002
#> 980 2006
#> 981 2013
#> 982 2017
#> 983 2016
#> 984 1991
#> 985 2018
#> 986 2015
#> 987 2011
#> 988 2004
#> 989 2017
#> 990 2012
#> 991 2017
#> 992 2017
#> 993 2015
#> 994 2016
#> 995 2016
#> 996 2015
#> 997 1995
#> 998 2005
#> 999 1989
#> 1000 2014
#> 1001 1990
#> 1002 2016
#> 1003 2014
#> 1004 1995
#> 1005 1990
#> 1006 2013
#> 1007 2014
#> 1008 2019
#> 1009 2016
#> 1010 2017
#> 1011 2019
#> 1012 2013
#> 1013 2017
#> 1014 1991
#> 1015 2011
#> 1016 2013
#> 1017 2016
#> 1018 2016
#> 1019 2015
#> 1020 2013
#> 1021 2010
#> 1022 1994
#> 1023 2018
#> 1024 2010
#> 1025 2000
#> 1026 1980
#> 1027 2004
#> 1028 2018
#> 1029 2016
#> 1030 2019
#> 1031 2014
#> 1032 1986
#> 1033 2019
#> 1034 2016
#> 1035 2018
#> 1036 1993
#> 1037 2019
#> 1038 2009
#> 1039 1989
#> 1040 2012
#> 1041 2005
#> 1042 2001
#> 1043 2013
#> 1044 1989
#> 1045 2017
#> 1046 2017
#> 1047 2017
#> 1048 2006
#> 1049 2019
#> 1050 2017
#> 1051 2003
#> 1052 1971
#> 1053 2017
#> 1054 2003
#> 1055 2018
#> 1056 2016
#> 1057 1982
#> 1058 2016
#> 1059 1991
#> 1060 2013
#> 1061 2017
#> 1062 2013
#> 1063 2015
#> 1064 2001
#> 1065 1993
#> 1066 2019
#> 1067 2018
#> 1068 2018
#> 1069 2015
#> 1070 2017
#> 1071 2012
#> 1072 2018
#> 1073 2016
#> 1074 2018
#> 1075 2019
#> 1076 2011
#> 1077 2019
#> 1078 2019
#> 1079 2016
#> 1080 2012
#> 1081 2015
#> 1082 1993
#> 1083 2012
#> 1084 2019
#> 1085 2012
#> 1086 2017
#> 1087 2015
#> 1088 1990
#> 1089 2012
#> 1090 2005
#> 1091 1999
#> 1092 1987
#> 1093 2006
#> 1094 2018
#> 1095 2019
#> 1096 2017
#> 1097 2015
#> 1098 2013
#> 1099 2017
#> 1100 2019
#> 1101 2013
#> 1102 2014
#> 1103 2013
#> 1104 2020
#> 1105 2000
#> 1106 2020
#> 1107 2011
#> 1108 2018
#> URL
#> 1 http://link.springer.com/book/10.1007/978-1-4614-6892-9
#> 2 http://link.springer.com/book/10.1007/978-4-431-55570-4
#> 3 http://link.springer.com/book/10.1007/978-3-642-36809-7
#> 4 http://link.springer.com/book/10.1007/978-1-4757-4286-2
#> 5 http://link.springer.com/book/10.1007/978-3-642-35512-7
#> 6 http://link.springer.com/book/10.1007/978-1-4612-5925-1
#> 7 http://link.springer.com/book/10.1007/978-3-319-55708-3
#> 8 http://link.springer.com/book/10.1007/978-1-4614-6871-4
#> 9 http://link.springer.com/book/10.1007/978-1-4939-1100-4
#> 10 http://link.springer.com/book/10.1007/978-3-319-45578-5
#> 11 http://link.springer.com/book/10.1007/978-3-319-00032-9
#> 12 http://link.springer.com/book/10.1007/978-1-4614-4818-1
#> 13 http://link.springer.com/book/10.1007/978-981-13-9306-8
#> 14 http://link.springer.com/book/10.1007/978-0-387-21811-3
#> 15 http://link.springer.com/book/10.1007/978-1-4419-9816-3
#> 16 http://link.springer.com/book/10.1007/978-981-10-2341-5
#> 17 http://link.springer.com/book/10.1007/978-3-0348-6336-0
#> 18 http://link.springer.com/book/10.1007/978-1-4419-0925-1
#> 19 http://link.springer.com/book/10.1007/978-1-4613-0181-3
#> 20 http://link.springer.com/book/10.1007/978-0-387-75965-4
#> 21 http://link.springer.com/book/10.1007/978-3-662-49332-8
#> 22 http://link.springer.com/book/10.1007/978-1-4614-6446-4
#> 23 http://link.springer.com/book/10.1007/978-1-4612-1106-8
#> 24 http://link.springer.com/book/10.1007/978-3-319-96941-1
#> 25 http://link.springer.com/book/10.1007/1-84628-195-4
#> 26 http://link.springer.com/book/10.1007/978-3-319-05801-6
#> 27 http://link.springer.com/book/10.1007/978-1-4614-1412-4
#> 28 http://link.springer.com/book/10.1007/978-3-319-68264-8
#> 29 http://link.springer.com/book/10.1007/978-3-319-07028-5
#> 30 http://link.springer.com/book/10.1007/978-981-10-0077-5
#> 31 http://link.springer.com/book/10.1007/978-3-319-65304-4
#> 32 http://link.springer.com/book/10.1007/978-3-642-18044-6
#> 33 http://link.springer.com/book/10.1007/978-3-319-13881-7
#> 34 http://link.springer.com/book/10.1007/978-3-319-48015-2
#> 35 http://link.springer.com/book/10.1007/978-94-009-8552-0
#> 36 http://link.springer.com/book/10.1007/978-3-030-21140-0
#> 37 http://link.springer.com/book/10.1007/978-3-030-15310-6
#> 38 http://link.springer.com/book/10.1007/978-3-642-13312-1
#> 39 http://link.springer.com/book/10.1007/978-1-4757-3464-5
#> 40 http://link.springer.com/book/10.1007/978-1-4613-0055-7
#> 41 http://link.springer.com/book/10.1007/978-3-319-05323-3
#> 42 http://link.springer.com/book/10.1007/978-3-319-05555-8
#> 43 http://link.springer.com/book/10.1007/978-1-4612-0167-0
#> 44 http://link.springer.com/book/10.1007/978-0-387-21544-0
#> 45 http://link.springer.com/book/10.1007/978-3-319-78784-8
#> 46 http://link.springer.com/book/10.1007/978-3-319-07875-5
#> 47 http://link.springer.com/book/10.1007/978-3-642-34904-1
#> 48 http://link.springer.com/book/10.1007/978-981-10-0889-4
#> 49 http://link.springer.com/book/10.1007/978-1-4614-6868-4
#> 50 http://link.springer.com/book/10.1007/978-1-4939-0569-0
#> 51 http://link.springer.com/book/10.1007/978-1-4757-2431-8
#> 52 http://link.springer.com/book/10.1007/978-94-009-3961-5
#> 53 http://link.springer.com/book/10.1007/978-1-4419-5823-5
#> 54 http://link.springer.com/book/10.1007/978-3-319-40643-5
#> 55 http://link.springer.com/book/10.1007/978-3-319-29854-2
#> 56 http://link.springer.com/book/10.1007/978-1-4614-7789-1
#> 57 http://link.springer.com/book/10.1007/978-3-7908-2628-9
#> 58 http://link.springer.com/book/10.1007/978-1-4612-2094-7
#> 59 http://link.springer.com/book/10.1007/b98855
#> 60 http://link.springer.com/book/10.1007/978-3-319-52401-6
#> 61 http://link.springer.com/book/10.1007/978-3-319-52246-3
#> 62 http://link.springer.com/book/10.1007/978-3-030-02185-6
#> 63 http://link.springer.com/book/10.1007/978-1-4757-7107-7
#> 64 http://link.springer.com/book/10.1007/978-81-322-0763-4
#> 65 http://link.springer.com/book/10.1007/978-0-387-21664-5
#> 66 http://link.springer.com/book/10.1007/978-3-319-28599-3
#> 67 http://link.springer.com/book/10.1007/978-3-319-41631-1
#> 68 http://link.springer.com/book/10.1007/978-1-4614-4738-2
#> 69 http://link.springer.com/book/10.1007/978-81-322-2514-0
#> 70 http://link.springer.com/book/10.1007/978-3-030-01310-3
#> 71 http://link.springer.com/book/10.1007/b97679
#> 72 http://link.springer.com/book/10.1007/0-387-28393-5
#> 73 http://link.springer.com/book/10.1007/978-1-4614-6134-0
#> 74 http://link.springer.com/book/10.1007/0-387-36062-X
#> 75 http://link.springer.com/book/10.1007/978-3-319-55252-1
#> 76 http://link.springer.com/book/10.1007/978-4-431-55276-5
#> 77 http://link.springer.com/book/10.1007/978-981-10-0152-9
#> 78 http://link.springer.com/book/10.1007/978-1-4419-0118-7
#> 79 http://link.springer.com/book/10.1007/978-981-10-3302-5
#> 80 http://link.springer.com/book/10.1007/978-3-319-54205-8
#> 81 http://link.springer.com/book/10.1007/978-1-4757-3437-9
#> 82 http://link.springer.com/book/10.1007/978-3-319-67386-8
#> 83 http://link.springer.com/book/10.1007/978-3-319-74380-6
#> 84 http://link.springer.com/book/10.1007/978-1-4614-8715-9
#> 85 http://link.springer.com/book/10.1007/978-0-8176-8101-2
#> 86 http://link.springer.com/book/10.1007/978-1-4614-6022-0
#> 87 http://link.springer.com/book/10.1007/0-387-28014-6
#> 88 http://link.springer.com/book/10.1007/978-3-319-98029-4
#> 89 http://link.springer.com/book/10.1007/b98966
#> 90 http://link.springer.com/book/10.1007/978-3-319-65112-5
#> 91 http://link.springer.com/book/10.1007/978-1-4614-5544-8
#> 92 http://link.springer.com/book/10.1007/978-1-4939-0876-9
#> 93 http://link.springer.com/book/10.1007/978-1-4419-9782-1
#> 94 http://link.springer.com/book/10.1007/978-3-319-19518-6
#> 95 http://link.springer.com/book/10.1007/978-981-13-3429-0
#> 96 http://link.springer.com/book/10.1007/978-1-4612-0063-5
#> 97 http://link.springer.com/book/10.1007/978-0-8176-4807-7
#> 98 http://link.springer.com/book/10.1007/b98888
#> 99 http://link.springer.com/book/10.1007/978-3-319-77249-3
#> 100 http://link.springer.com/book/10.1007/0-387-28861-9
#> 101 http://link.springer.com/book/10.1007/978-0-387-76371-2
#> 102 http://link.springer.com/book/10.1007/978-0-387-85956-9
#> 103 http://link.springer.com/book/10.1007/978-3-540-73560-1
#> 104 http://link.springer.com/book/10.1007/978-3-662-45171-7
#> 105 http://link.springer.com/book/10.1007/978-1-4614-0499-6
#> 106 http://link.springer.com/book/10.1007/978-1-4757-2917-7
#> 107 http://link.springer.com/book/10.1007/978-3-319-22476-3
#> 108 http://link.springer.com/book/10.1007/978-0-387-21549-5
#> 109 http://link.springer.com/book/10.1007/978-981-13-2041-5
#> 110 http://link.springer.com/book/10.1007/978-1-349-13850-0
#> 111 http://link.springer.com/book/10.1007/978-3-642-31084-3
#> 112 http://link.springer.com/book/10.1007/b105081
#> 113 http://link.springer.com/book/10.1007/978-4-431-55888-0
#> 114 http://link.springer.com/book/10.1007/978-3-7643-8905-5
#> 115 http://link.springer.com/book/10.1007/978-3-319-43376-9
#> 116 http://link.springer.com/book/10.1007/978-1-4613-0053-3
#> 117 http://link.springer.com/book/10.1007/b98961
#> 118 http://link.springer.com/book/10.1007/978-88-470-2871-5
#> 119 http://link.springer.com/book/10.1007/978-1-4939-0339-9
#> 120 http://link.springer.com/book/10.1007/978-4-431-54321-3
#> 121 http://link.springer.com/book/10.1007/978-1-4614-8283-3
#> 122 http://link.springer.com/book/10.1007/978-3-642-25532-8
#> 123 http://link.springer.com/book/10.1007/978-3-642-36850-9
#> 124 http://link.springer.com/book/10.1007/978-3-642-17086-7
#> 125 http://link.springer.com/book/10.1007/978-1-4612-2078-7
#> 126 http://link.springer.com/book/10.1007/978-1-4939-2104-1
#> 127 http://link.springer.com/book/10.1007/978-981-10-5296-5
#> 128 http://link.springer.com/book/10.1007/978-3-642-55345-5
#> 129 http://link.springer.com/book/10.1007/978-3-030-28665-1
#> 130 http://link.springer.com/book/10.1007/978-3-030-30611-3
#> 131 http://link.springer.com/book/10.1007/978-3-319-33946-7
#> 132 http://link.springer.com/book/10.1007/978-3-319-39065-9
#> 133 http://link.springer.com/book/10.1007/978-3-319-91143-4
#> 134 http://link.springer.com/book/10.1007/978-81-322-0659-0
#> 135 http://link.springer.com/book/10.1007/978-3-319-76315-6
#> 136 http://link.springer.com/book/10.1007/978-1-4612-0103-8
#> 137 http://link.springer.com/book/10.1007/978-1-4939-2614-5
#> 138 http://link.springer.com/book/10.1007/978-1-4614-9602-1
#> 139 http://link.springer.com/book/10.1007/978-94-010-1842-5
#> 140 http://link.springer.com/book/10.1007/978-0-387-70782-2
#> 141 http://link.springer.com/book/10.1007/978-3-319-45528-0
#> 142 http://link.springer.com/book/10.1007/978-3-030-00039-4
#> 143 http://link.springer.com/book/10.1007/978-3-642-39041-8
#> 144 http://link.springer.com/book/10.1007/978-3-319-52452-8
#> 145 http://link.springer.com/book/10.1007/978-1-4757-4145-2
#> 146 http://link.springer.com/book/10.1007/978-4-431-55239-0
#> 147 http://link.springer.com/book/10.1007/978-3-319-27174-3
#> 148 http://link.springer.com/book/10.1007/978-4-431-55573-5
#> 149 http://link.springer.com/book/10.1007/978-3-642-15923-7
#> 150 http://link.springer.com/book/10.1007/0-387-31610-8
#> 151 http://link.springer.com/book/10.1007/978-1-4939-8847-1
#> 152 http://link.springer.com/book/10.1007/978-3-642-39909-1
#> 153 http://link.springer.com/book/10.1007/978-1-4419-0661-8
#> 154 http://link.springer.com/book/10.1007/978-4-431-55303-8
#> 155 http://link.springer.com/book/10.1007/978-981-10-6436-4
#> 156 http://link.springer.com/book/10.1007/978-1-4614-9332-7
#> 157 http://link.springer.com/book/10.1007/978-3-319-22404-6
#> 158 http://link.springer.com/book/10.1007/978-1-4614-6449-5
#> 159 http://link.springer.com/book/10.1007/978-3-319-64867-5
#> 160 http://link.springer.com/book/10.1007/978-981-10-0871-9
#> 161 http://link.springer.com/book/10.1007/978-1-4419-9675-6
#> 162 http://link.springer.com/book/10.1007/978-3-319-93773-1
#> 163 http://link.springer.com/book/10.1007/978-1-4757-3235-1
#> 164 http://link.springer.com/book/10.1007/978-3-319-19425-7
#> 165 http://link.springer.com/book/10.1007/978-3-642-35494-6
#> 166 http://link.springer.com/book/10.1007/978-1-4613-0125-7
#> 167 http://link.springer.com/book/10.1007/978-981-10-0126-0
#> 168 http://link.springer.com/book/10.1007/978-1-4939-6640-0
#> 169 http://link.springer.com/book/10.1007/978-3-319-64221-5
#> 170 http://link.springer.com/book/10.1007/b135794
#> 171 http://link.springer.com/book/10.1007/978-3-319-33153-9
#> 172 http://link.springer.com/book/10.1007/0-387-28276-9
#> 173 http://link.springer.com/book/10.1007/978-3-319-00840-0
#> 174 http://link.springer.com/book/10.1007/978-1-4614-4720-7
#> 175 http://link.springer.com/book/10.1007/978-1-4612-4628-2
#> 176 http://link.springer.com/book/10.1007/978-3-540-32691-5
#> 177 http://link.springer.com/book/10.1007/978-1-4757-3692-2
#> 178 http://link.springer.com/book/10.1007/b98886
#> 179 http://link.springer.com/book/10.1007/978-0-387-69952-3
#> 180 http://link.springer.com/book/10.1007/978-3-642-21037-2
#> 181 http://link.springer.com/book/10.1007/978-3-642-36300-9
#> 182 http://link.springer.com/book/10.1007/978-1-4614-9041-8
#> 183 http://link.springer.com/book/10.1007/978-0-387-71887-3
#> 184 http://link.springer.com/book/10.1007/978-3-319-76035-3
#> 185 http://link.springer.com/book/10.1007/978-1-4614-5838-8
#> 186 http://link.springer.com/book/10.1007/978-0-8176-4749-0
#> 187 http://link.springer.com/book/10.1007/978-3-319-02967-2
#> 188 http://link.springer.com/book/10.1007/978-981-10-0401-8
#> 189 http://link.springer.com/book/10.1007/978-0-387-21579-2
#> 190 http://link.springer.com/book/10.1007/978-1-4419-1270-1
#> 191 http://link.springer.com/book/10.1007/b98875
#> 192 http://link.springer.com/book/10.1007/b97592
#> 193 http://link.springer.com/book/10.1007/978-3-030-24624-2
#> 194 http://link.springer.com/book/10.1007/978-3-030-26006-4
#> 195 http://link.springer.com/book/10.1007/978-1-349-13842-5
#> 196 http://link.springer.com/book/10.1007/978-1-4614-3655-3
#> 197 http://link.springer.com/book/10.1007/0-387-30623-4
#> 198 http://link.springer.com/book/10.1007/978-3-319-21930-1
#> 199 http://link.springer.com/book/10.1007/0-387-36276-2
#> 200 http://link.springer.com/book/10.1007/978-3-319-45614-0
#> 201 http://link.springer.com/book/10.1007/978-981-10-8318-1
#> 202 http://link.springer.com/book/10.1007/978-1-4614-1314-1
#> 203 http://link.springer.com/book/10.1007/978-1-4614-5740-4
#> 204 http://link.springer.com/book/10.1007/978-1-4471-3675-0
#> 205 http://link.springer.com/book/10.1007/978-3-642-32419-2
#> 206 http://link.springer.com/book/10.1007/978-1-4612-1166-2
#> 207 http://link.springer.com/book/10.1007/978-3-319-16139-6
#> 208 http://link.springer.com/book/10.1007/978-3-319-21347-7
#> 209 http://link.springer.com/book/10.1007/978-1-4757-3131-6
#> 210 http://link.springer.com/book/10.1007/978-81-322-1786-2
#> 211 http://link.springer.com/book/10.1007/978-3-319-31266-8
#> 212 http://link.springer.com/book/10.1007/978-1-4614-3508-2
#> 213 http://link.springer.com/book/10.1007/978-1-4614-8788-3
#> 214 http://link.springer.com/book/10.1007/978-3-319-31245-3
#> 215 http://link.springer.com/book/10.1007/978-3-642-36276-7
#> 216 http://link.springer.com/book/10.1007/978-3-319-52250-0
#> 217 http://link.springer.com/book/10.1007/978-1-4614-3719-2
#> 218 http://link.springer.com/book/10.1007/978-3-319-73241-1
#> 219 http://link.springer.com/book/10.1007/978-1-4614-8163-8
#> 220 http://link.springer.com/book/10.1007/978-0-387-35433-0
#> 221 http://link.springer.com/book/10.1007/978-3-319-04972-4
#> 222 http://link.springer.com/book/10.1007/978-0-387-93839-4
#> 223 http://link.springer.com/book/10.1007/978-3-319-28709-6
#> 224 http://link.springer.com/book/10.1007/978-3-319-97846-8
#> 225 http://link.springer.com/book/10.1007/978-0-387-33893-4
#> 226 http://link.springer.com/book/10.1007/978-981-10-3794-8
#> 227 http://link.springer.com/book/10.1007/978-3-319-69239-5
#> 228 http://link.springer.com/book/10.1007/978-1-4612-4380-9
#> 229 http://link.springer.com/book/10.1007/978-3-319-16238-6
#> 230 http://link.springer.com/book/10.1007/978-1-4757-2523-0
#> 231 http://link.springer.com/book/10.1007/978-3-319-31822-6
#> 232 http://link.springer.com/book/10.1007/978-3-319-69218-0
#> 233 http://link.springer.com/book/10.1007/978-0-387-71762-3
#> 234 http://link.springer.com/book/10.1007/978-0-8176-8361-0
#> 235 http://link.springer.com/book/10.1007/978-94-009-7840-9
#> 236 http://link.springer.com/book/10.1007/978-3-319-12694-4
#> 237 http://link.springer.com/book/10.1007/978-81-322-2325-2
#> 238 http://link.springer.com/book/10.1007/978-1-4614-8708-1
#> 239 http://link.springer.com/book/10.1007/978-94-007-5140-8
#> 240 http://link.springer.com/book/10.1007/978-1-4939-8853-2
#> 241 http://link.springer.com/book/10.1007/978-3-319-56072-4
#> 242 http://link.springer.com/book/10.1007/978-0-8176-8168-5
#> 243 http://link.springer.com/book/10.1007/978-1-4614-2299-0
#> 244 http://link.springer.com/book/10.1007/978-3-319-30634-6
#> 245 http://link.springer.com/book/10.1007/978-3-030-22625-1
#> 246 http://link.springer.com/book/10.1007/b97553
#> 247 http://link.springer.com/book/10.1007/978-3-319-04579-5
#> 248 http://link.springer.com/book/10.1007/978-3-319-42571-9
#> 249 http://link.springer.com/book/10.1007/978-3-642-34333-9
#> 250 http://link.springer.com/book/10.1007/978-1-4614-8775-3
#> 251 http://link.springer.com/book/10.1007/978-3-319-48414-3
#> 252 http://link.springer.com/book/10.1007/978-1-4612-4444-8
#> 253 http://link.springer.com/book/10.1007/978-3-319-65313-6
#> 254 http://link.springer.com/book/10.1007/978-0-8176-4811-4
#> 255 http://link.springer.com/book/10.1007/b97288
#> 256 http://link.springer.com/book/10.1007/978-1-4612-2036-7
#> 257 http://link.springer.com/book/10.1007/978-3-642-10473-2
#> 258 http://link.springer.com/book/10.1007/978-0-387-21606-5
#> 259 http://link.springer.com/book/10.1007/978-3-319-28341-8
#> 260 http://link.springer.com/book/10.1007/978-3-642-34913-3
#> 261 http://link.springer.com/book/10.1007/978-3-642-45138-6
#> 262 http://link.springer.com/book/10.1007/978-3-319-76297-5
#> 263 http://link.springer.com/book/10.1007/978-1-4614-3615-7
#> 264 http://link.springer.com/book/10.1007/b98900
#> 265 http://link.springer.com/book/10.1007/978-0-387-78165-5
#> 266 http://link.springer.com/book/10.1007/978-3-319-50272-4
#> 267 http://link.springer.com/book/10.1007/978-3-319-38759-8
#> 268 http://link.springer.com/book/10.1007/978-1-4614-0391-3
#> 269 http://link.springer.com/book/10.1007/978-3-319-42568-9
#> 270 http://link.springer.com/book/10.1007/978-3-319-44811-4
#> 271 http://link.springer.com/book/10.1007/978-1-4757-3663-2
#> 272 http://link.springer.com/book/10.1007/978-3-319-93632-1
#> 273 http://link.springer.com/book/10.1007/978-3-319-56294-0
#> 274 http://link.springer.com/book/10.1007/978-3-319-41573-4
#> 275 http://link.springer.com/book/10.1007/978-3-642-35588-2
#> 276 http://link.springer.com/book/10.1007/978-1-4614-1365-3
#> 277 http://link.springer.com/book/10.1007/978-3-319-51313-3
#> 278 http://link.springer.com/book/10.1007/978-3-319-69416-0
#> 279 http://link.springer.com/book/10.1007/978-0-387-34675-5
#> 280 http://link.springer.com/book/10.1007/978-1-4419-0320-4
#> 281 http://link.springer.com/book/10.1007/978-1-4614-7138-7
#> 282 http://link.springer.com/book/10.1007/978-981-13-0980-9
#> 283 http://link.springer.com/book/10.1007/978-3-642-17656-2
#> 284 http://link.springer.com/book/10.1007/978-1-4419-6876-0
#> 285 http://link.springer.com/book/10.1007/978-3-319-64069-3
#> 286 http://link.springer.com/book/10.1007/978-0-387-77645-3
#> 287 http://link.springer.com/book/10.1007/978-1-4757-3449-2
#> 288 http://link.springer.com/book/10.1007/978-1-4939-1507-1
#> 289 http://link.springer.com/book/10.1007/978-1-4757-2739-5
#> 290 http://link.springer.com/book/10.1007/0-387-37344-6
#> 291 http://link.springer.com/book/10.1007/978-1-349-08303-9
#> 292 http://link.springer.com/book/10.1007/978-3-7908-2349-3
#> 293 http://link.springer.com/book/10.1007/978-3-319-56481-4
#> 294 http://link.springer.com/book/10.1007/0-387-29053-2
#> 295 http://link.springer.com/book/10.1007/978-1-4757-3460-7
#> 296 http://link.springer.com/book/10.1007/978-1-4613-0051-9
#> 297 http://link.springer.com/book/10.1007/1-4020-3419-9
#> 298 http://link.springer.com/book/10.1007/978-3-662-49349-6
#> 299 http://link.springer.com/book/10.1007/978-0-387-21540-2
#> 300 http://link.springer.com/book/10.1007/978-1-4757-3425-6
#> 301 http://link.springer.com/book/10.1007/978-1-4612-2234-7
#> 302 http://link.springer.com/book/10.1007/0-387-34240-0
#> 303 http://link.springer.com/book/10.1007/978-3-319-35132-2
#> 304 http://link.springer.com/book/10.1007/b138696
#> 305 http://link.springer.com/book/10.1007/978-3-319-76938-7
#> 306 http://link.springer.com/book/10.1007/978-3-319-31641-3
#> 307 http://link.springer.com/book/10.1007/978-1-4684-0538-5
#> 308 http://link.springer.com/book/10.1007/978-1-4939-4032-5
#> 309 http://link.springer.com/book/10.1007/978-1-4612-2512-6
#> 310 http://link.springer.com/book/10.1007/978-3-642-55255-7
#> 311 http://link.springer.com/book/10.1007/978-3-642-39899-5
#> 312 http://link.springer.com/book/10.2991/978-94-6239-079-9
#> 313 http://link.springer.com/book/10.1007/978-3-319-52207-4
#> 314 http://link.springer.com/book/10.1007/978-3-319-56478-4
#> 315 http://link.springer.com/book/10.1007/978-1-4419-9500-1
#> 316 http://link.springer.com/book/10.1007/978-1-4614-5743-5
#> 317 http://link.springer.com/book/10.1007/978-3-642-28894-4
#> 318 http://link.springer.com/book/10.1007/978-3-319-12454-4
#> 319 http://link.springer.com/book/10.1007/978-1-4899-7260-6
#> 320 http://link.springer.com/book/10.1007/978-3-319-45772-7
#> 321 http://link.springer.com/book/10.1007/978-3-319-93549-2
#> 322 http://link.springer.com/book/10.1007/978-1-4612-0825-9
#> 323 http://link.springer.com/book/10.1007/978-3-030-20933-9
#> 324 http://link.springer.com/book/10.1007/978-981-13-6241-5
#> 325 http://link.springer.com/book/10.1007/978-3-319-55723-6
#> 326 http://link.springer.com/book/10.2991/978-94-91216-83-1
#> 327 http://link.springer.com/book/10.1007/978-981-13-5998-9
#> 328 http://link.springer.com/book/10.1007/978-1-4613-0147-9
#> 329 http://link.springer.com/book/10.1007/978-3-7908-2846-7
#> 330 http://link.springer.com/book/10.1007/978-0-8176-8206-4
#> 331 http://link.springer.com/book/10.1007/978-3-319-43252-6
#> 332 http://link.springer.com/book/10.1007/978-1-4614-2035-4
#> 333 http://link.springer.com/book/10.1007/978-3-319-27274-0
#> 334 http://link.springer.com/book/10.1007/978-1-4757-2526-1
#> 335 http://link.springer.com/book/10.1007/978-3-642-21551-3
#> 336 http://link.springer.com/book/10.1007/978-1-4757-1904-8
#> 337 http://link.springer.com/book/10.1007/978-1-4612-4348-9
#> 338 http://link.springer.com/book/10.1007/978-0-387-68276-1
#> 339 http://link.springer.com/book/10.1007/978-3-319-16877-7
#> 340 http://link.springer.com/book/10.1007/978-981-10-6557-6
#> 341 http://link.springer.com/book/10.1007/978-0-387-21580-8
#> 342 http://link.springer.com/book/10.1007/978-3-319-55846-2
#> 343 http://link.springer.com/book/10.1007/978-4-431-55336-6
#> 344 http://link.springer.com/book/10.1007/978-1-4614-0562-7
#> 345 http://link.springer.com/book/10.1007/978-3-319-99389-8
#> 346 http://link.springer.com/book/10.1007/0-387-32227-2
#> 347 http://link.springer.com/book/10.1007/978-0-387-35099-8
#> 348 http://link.springer.com/book/10.1007/978-1-4939-7190-9
#> 349 http://link.springer.com/book/10.1007/978-1-4612-1244-7
#> 350 http://link.springer.com/book/10.1007/978-1-4613-0035-9
#> 351 http://link.springer.com/book/10.1007/978-0-387-77907-2
#> 352 http://link.springer.com/book/10.1007/978-1-4612-2854-7
#> 353 http://link.springer.com/book/10.1007/978-1-4614-4475-6
#> 354 http://link.springer.com/book/10.1007/978-1-4419-8766-2
#> 355 http://link.springer.com/book/10.1007/b98818
#> 356 http://link.springer.com/book/10.1007/978-94-015-8163-9
#> 357 http://link.springer.com/book/10.1007/978-1-4614-2134-4
#> 358 http://link.springer.com/book/10.1007/978-1-4614-6862-2
#> 359 http://link.springer.com/book/10.1007/978-0-387-68765-0
#> 360 http://link.springer.com/book/10.1007/b97848
#> 361 http://link.springer.com/book/10.1007/978-3-0348-7958-3
#> 362 http://link.springer.com/book/10.1007/978-3-319-73906-9
#> 363 http://link.springer.com/book/10.1007/978-1-4757-1862-1
#> 364 http://link.springer.com/book/10.1007/978-3-030-13785-4
#> 365 http://link.springer.com/book/10.1007/978-1-4614-8687-9
#> 366 http://link.springer.com/book/10.1007/978-3-319-18284-1
#> 367 http://link.springer.com/book/10.1007/978-1-4614-6114-2
#> 368 http://link.springer.com/book/10.1007/978-3-319-44093-4
#> 369 http://link.springer.com/book/10.1007/978-3-319-91740-5
#> 370 http://link.springer.com/book/10.1007/0-387-29115-6
#> 371 http://link.springer.com/book/10.1007/978-1-4614-9443-0
#> 372 http://link.springer.com/book/10.1007/978-3-030-17519-1
#> 373 http://link.springer.com/book/10.1007/978-1-4612-1554-7
#> 374 http://link.springer.com/book/10.1007/0-387-35209-0
#> 375 http://link.springer.com/book/10.1007/978-3-319-20585-4
#> 376 http://link.springer.com/book/10.1007/978-1-4614-5562-2
#> 377 http://link.springer.com/book/10.1007/978-1-4612-4950-4
#> 378 http://link.springer.com/book/10.1007/978-1-349-03566-3
#> 379 http://link.springer.com/book/10.1007/b98889
#> 380 http://link.springer.com/book/10.1007/978-3-642-20192-9
#> 381 http://link.springer.com/book/10.1007/978-3-319-32789-1
#> 382 http://link.springer.com/book/10.1007/978-1-4614-5369-7
#> 383 http://link.springer.com/book/10.1007/978-0-387-48809-7
#> 384 http://link.springer.com/book/10.1007/978-1-4614-4072-7
#> 385 http://link.springer.com/book/10.1007/978-1-4939-9761-9
#> 386 http://link.springer.com/book/10.1007/978-4-431-55900-9
#> 387 http://link.springer.com/book/10.1007/978-1-4614-1344-8
#> 388 http://link.springer.com/book/10.1007/978-1-4939-0603-1
#> 389 http://link.springer.com/book/10.1007/978-3-642-37887-4
#> 390 http://link.springer.com/book/10.1007/978-1-4899-3184-9
#> 391 http://link.springer.com/book/10.1007/978-981-10-2164-0
#> 392 http://link.springer.com/book/10.1007/978-0-8176-4801-5
#> 393 http://link.springer.com/book/10.1007/b97277
#> 394 http://link.springer.com/book/10.1007/978-3-319-03149-1
#> 395 http://link.springer.com/book/10.1007/978-1-4757-3076-0
#> 396 http://link.springer.com/book/10.1007/978-1-4939-2818-7
#> 397 http://link.springer.com/book/10.1007/978-3-662-47383-2
#> 398 http://link.springer.com/book/10.1007/978-0-387-72825-4
#> 399 http://link.springer.com/book/10.1007/978-1-4419-9650-3
#> 400 http://link.springer.com/book/10.1007/978-3-319-02084-6
#> 401 http://link.springer.com/book/10.1007/978-1-4419-9246-8
#> 402 http://link.springer.com/book/10.1007/978-1-4612-9995-0
#> 403 http://link.springer.com/book/10.1007/978-0-387-70898-0
#> 404 http://link.springer.com/book/10.1007/978-981-13-1223-6
#> 405 http://link.springer.com/book/10.1007/978-3-319-63886-7
#> 406 http://link.springer.com/book/10.1007/978-3-642-29396-2
#> 407 http://link.springer.com/book/10.1007/978-981-13-1736-1
#> 408 http://link.springer.com/book/10.1007/b98854
#> 409 http://link.springer.com/book/10.1007/978-4-431-68544-9
#> 410 http://link.springer.com/book/10.1007/b98835
#> 411 http://link.springer.com/book/10.1007/978-94-009-3679-9
#> 412 http://link.springer.com/book/10.1007/978-3-319-00218-7
#> 413 http://link.springer.com/book/10.1007/978-981-13-8075-4
#> 414 http://link.springer.com/book/10.1007/978-3-319-11149-0
#> 415 http://link.springer.com/book/10.1007/978-3-319-11785-0
#> 416 http://link.springer.com/book/10.1007/978-3-662-25092-1
#> 417 http://link.springer.com/book/10.1007/b13794
#> 418 http://link.springer.com/book/10.1007/978-3-319-50986-0
#> 419 http://link.springer.com/book/10.1007/978-1-4939-2137-9
#> 420 http://link.springer.com/book/10.1007/978-3-642-32084-2
#> 421 http://link.springer.com/book/10.1007/978-3-319-54084-9
#> 422 http://link.springer.com/book/10.1007/978-1-4612-0919-5
#> 423 http://link.springer.com/book/10.1007/b97478
#> 424 http://link.springer.com/book/10.1007/978-981-10-5466-2
#> 425 http://link.springer.com/book/10.1007/978-1-4612-1306-2
#> 426 http://link.springer.com/book/10.1007/978-3-319-46162-5
#> 427 http://link.springer.com/book/10.1007/3-540-28397-8
#> 428 http://link.springer.com/book/10.1007/978-3-030-26814-5
#> 429 http://link.springer.com/book/10.1007/978-3-319-45599-0
#> 430 http://link.springer.com/book/10.1007/978-1-4612-1162-4
#> 431 http://link.springer.com/book/10.1007/978-981-10-2594-5
#> 432 http://link.springer.com/book/10.1007/978-3-662-48344-2
#> 433 http://link.springer.com/book/10.1007/978-1-4614-8573-5
#> 434 http://link.springer.com/book/10.1007/978-981-13-3516-7
#> 435 http://link.springer.com/book/10.1007/978-3-319-76042-1
#> 436 http://link.springer.com/book/10.1007/978-3-642-25969-2
#> 437 http://link.springer.com/book/10.1007/978-3-319-64583-4
#> 438 http://link.springer.com/book/10.1007/0-387-27605-X
#> 439 http://link.springer.com/book/10.1007/978-3-319-55336-8
#> 440 http://link.springer.com/book/10.1007/978-3-319-59976-2
#> 441 http://link.springer.com/book/10.1007/978-981-287-925-7
#> 442 http://link.springer.com/book/10.1007/978-1-349-06711-4
#> 443 http://link.springer.com/book/10.1007/978-3-319-02402-8
#> 444 http://link.springer.com/book/10.1007/978-3-319-02651-0
#> 445 http://link.springer.com/book/10.1007/978-3-319-19039-6
#> 446 http://link.springer.com/book/10.1007/978-3-319-18968-0
#> 447 http://link.springer.com/book/10.2991/978-94-6239-139-0
#> 448 http://link.springer.com/book/10.1007/978-4-431-55339-7
#> 449 http://link.springer.com/book/10.1007/978-3-319-95068-6
#> 450 http://link.springer.com/book/10.1007/978-1-4614-6443-3
#> 451 http://link.springer.com/book/10.1007/978-981-15-1857-7
#> 452 http://link.springer.com/book/10.1007/978-3-319-76605-8
#> 453 http://link.springer.com/book/10.1007/978-3-662-58541-2
#> 454 http://link.springer.com/book/10.1007/978-3-642-36005-3
#> 455 http://link.springer.com/book/10.2991/978-94-6239-136-9
#> 456 http://link.springer.com/book/10.1007/978-4-431-55585-8
#> 457 http://link.springer.com/book/10.1007/0-387-37345-4
#> 458 http://link.springer.com/book/10.1007/978-1-4757-3447-8
#> 459 http://link.springer.com/book/10.1007/978-3-319-10461-4
#> 460 http://link.springer.com/book/10.1007/978-1-4419-9634-3
#> 461 http://link.springer.com/book/10.1007/978-3-642-17229-8
#> 462 http://link.springer.com/book/10.1007/978-94-017-3515-5
#> 463 http://link.springer.com/book/10.1007/0-387-32792-4
#> 464 http://link.springer.com/book/10.1007/978-3-319-26311-3
#> 465 http://link.springer.com/book/10.1007/978-94-009-2583-0
#> 466 http://link.springer.com/book/10.1007/978-3-030-28790-0
#> 467 http://link.springer.com/book/10.1007/0-387-31144-0
#> 468 http://link.springer.com/book/10.1007/978-1-4757-3071-5
#> 469 http://link.springer.com/book/10.1007/978-1-4419-7170-8
#> 470 http://link.springer.com/book/10.1007/978-0-387-40054-9
#> 471 http://link.springer.com/book/10.1007/978-3-030-01584-8
#> 472 http://link.springer.com/book/10.1007/978-3-319-11734-8
#> 473 http://link.springer.com/book/10.1007/978-3-319-96422-5
#> 474 http://link.springer.com/book/10.1007/978-3-319-41582-6
#> 475 http://link.springer.com/book/10.1007/978-4-431-55930-6
#> 476 http://link.springer.com/book/10.1007/978-3-319-39756-6
#> 477 http://link.springer.com/book/10.1007/978-981-13-9314-3
#> 478 http://link.springer.com/book/10.1007/978-981-10-0159-8
#> 479 http://link.springer.com/referencework/10.1007/978-3-642-04898-2
#> 480 http://link.springer.com/book/10.1007/978-3-030-05420-5
#> 481 http://link.springer.com/book/10.1007/978-3-319-22005-5
#> 482 http://link.springer.com/book/10.1007/b101765
#> 483 http://link.springer.com/book/10.1007/978-1-4757-3261-0
#> 484 http://link.springer.com/book/10.1007/978-3-662-53736-7
#> 485 http://link.springer.com/book/10.1007/978-0-387-77956-0
#> 486 http://link.springer.com/book/10.1007/978-1-4613-0049-6
#> 487 http://link.springer.com/book/10.1007/978-981-13-2248-8
#> 488 http://link.springer.com/book/10.1007/978-3-662-44046-9
#> 489 http://link.springer.com/book/10.1007/978-3-642-01689-9
#> 490 http://link.springer.com/book/10.1007/978-94-015-8567-5
#> 491 http://link.springer.com/book/10.2991/978-94-91216-14-5
#> 492 http://link.springer.com/book/10.1007/978-0-8176-8421-1
#> 493 http://link.springer.com/book/10.1007/978-1-4614-6040-4
#> 494 http://link.springer.com/book/10.1007/b97636
#> 495 http://link.springer.com/book/10.1007/978-1-4612-2088-6
#> 496 http://link.springer.com/book/10.1007/978-3-319-23805-0
#> 497 http://link.springer.com/book/10.1007/978-1-4757-3803-2
#> 498 http://link.springer.com/book/10.1007/978-3-319-17377-1
#> 499 http://link.springer.com/book/10.1007/978-3-319-25433-3
#> 500 http://link.springer.com/book/10.1007/978-1-4614-1347-9
#> 501 http://link.springer.com/book/10.1007/978-3-319-06692-9
#> 502 http://link.springer.com/book/10.1007/978-3-319-31260-6
#> 503 http://link.springer.com/book/10.1007/978-3-319-98926-6
#> 504 http://link.springer.com/book/10.1007/978-3-030-02914-2
#> 505 http://link.springer.com/book/10.1007/978-3-030-18187-1
#> 506 http://link.springer.com/book/10.1007/978-981-10-5194-4
#> 507 http://link.springer.com/book/10.1007/978-1-4939-4020-2
#> 508 http://link.springer.com/book/10.1007/978-3-319-32768-6
#> 509 http://link.springer.com/book/10.1007/978-81-322-2364-1
#> 510 http://link.springer.com/book/10.1007/978-1-4939-1471-5
#> 511 http://link.springer.com/book/10.1007/978-1-4419-8342-8
#> 512 http://link.springer.com/book/10.1007/978-1-4471-0657-9
#> 513 http://link.springer.com/book/10.1007/0-387-27656-4
#> 514 http://link.springer.com/book/10.1007/978-1-4612-2644-4
#> 515 http://link.springer.com/book/10.1007/978-1-4419-7245-3
#> 516 http://link.springer.com/book/10.1007/978-4-431-54574-3
#> 517 http://link.springer.com/book/10.1007/978-1-4612-2876-9
#> 518 http://link.springer.com/book/10.1007/978-1-4612-1192-1
#> 519 http://link.springer.com/book/10.1007/978-981-15-0066-4
#> 520 http://link.springer.com/book/10.1007/978-3-319-05536-7
#> 521 http://link.springer.com/book/10.1007/978-3-319-28158-2
#> 522 http://link.springer.com/book/10.1007/978-3-319-44048-4
#> 523 http://link.springer.com/book/10.1007/0-387-31075-4
#> 524 http://link.springer.com/book/10.1007/978-1-4419-5825-9
#> 525 http://link.springer.com/book/10.1007/b98955
#> 526 http://link.springer.com/book/10.1007/978-1-4939-2122-5
#> 527 http://link.springer.com/book/10.1007/978-3-319-12442-1
#> 528 http://link.springer.com/book/10.1007/978-88-470-0815-1
#> 529 http://link.springer.com/book/10.1007/978-3-642-11363-5
#> 530 http://link.springer.com/book/10.1007/978-3-319-72634-2
#> 531 http://link.springer.com/book/10.1007/978-1-4757-2412-7
#> 532 http://link.springer.com/book/10.1007/978-1-4614-5696-4
#> 533 http://link.springer.com/referencework/10.1007/978-1-4614-8414-1
#> 534 http://link.springer.com/book/10.1007/978-81-322-0677-4
#> 535 http://link.springer.com/book/10.1007/978-3-319-28770-6
#> 536 http://link.springer.com/book/10.1007/978-1-4614-3900-4
#> 537 http://link.springer.com/book/10.1007/978-3-319-65331-0
#> 538 http://link.springer.com/book/10.1007/978-1-4419-8339-8
#> 539 http://link.springer.com/book/10.1007/978-0-387-73194-0
#> 540 http://link.springer.com/book/10.1007/b97842
#> 541 http://link.springer.com/book/10.1007/978-1-4614-8154-6
#> 542 http://link.springer.com/book/10.1007/978-3-319-17329-0
#> 543 http://link.springer.com/book/10.1007/978-3-642-32931-9
#> 544 http://link.springer.com/book/10.1007/978-1-4899-6858-6
#> 545 http://link.springer.com/book/10.1007/978-981-15-2552-0
#> 546 http://link.springer.com/book/10.1007/978-3-662-57380-8
#> 547 http://link.springer.com/book/10.1007/978-1-4419-7165-4
#> 548 http://link.springer.com/book/10.1007/978-1-4939-0983-4
#> 549 http://link.springer.com/book/10.1007/978-981-13-1550-3
#> 550 http://link.springer.com/book/10.1007/978-981-10-7164-5
#> 551 http://link.springer.com/book/10.1007/978-3-319-21416-0
#> 552 http://link.springer.com/book/10.1007/978-1-4614-6892-9
#> 553 http://link.springer.com/book/10.1007/978-4-431-55570-4
#> 554 http://link.springer.com/book/10.1007/978-1-4939-8844-0
#> 555 http://link.springer.com/book/10.1007/978-3-642-35512-7
#> 556 http://link.springer.com/book/10.1007/978-88-470-5379-3
#> 557 http://link.springer.com/book/10.1007/978-1-4614-6871-4
#> 558 http://link.springer.com/book/10.1007/978-1-4939-1100-4
#> 559 http://link.springer.com/book/10.1007/978-1-4614-7792-1
#> 560 http://link.springer.com/book/10.1007/978-3-662-49332-8
#> 561 http://link.springer.com/book/10.1007/978-3-319-96941-1
#> 562 http://link.springer.com/book/10.1007/978-3-319-05801-6
#> 563 http://link.springer.com/book/10.1007/978-3-319-98857-3
#> 564 http://link.springer.com/book/10.1007/978-3-319-65304-4
#> 565 http://link.springer.com/book/10.1007/978-3-319-40066-2
#> 566 http://link.springer.com/book/10.1007/978-3-319-13881-7
#> 567 http://link.springer.com/book/10.1007/978-3-030-16399-0
#> 568 http://link.springer.com/book/10.1007/978-3-030-15310-6
#> 569 http://link.springer.com/book/10.1007/978-981-10-8627-4
#> 570 http://link.springer.com/book/10.1007/978-3-319-05555-8
#> 571 http://link.springer.com/book/10.1007/978-3-319-78784-8
#> 572 http://link.springer.com/book/10.1007/978-981-10-7829-3
#> 573 http://link.springer.com/book/10.1007/978-3-319-18536-1
#> 574 http://link.springer.com/book/10.1007/978-3-642-45674-9
#> 575 http://link.springer.com/book/10.1007/978-3-642-48736-1
#> 576 http://link.springer.com/book/10.1007/978-81-322-2514-0
#> 577 http://link.springer.com/book/10.1007/0-387-28393-5
#> 578 http://link.springer.com/book/10.1007/978-1-4614-7428-9
#> 579 http://link.springer.com/book/10.1007/978-1-4614-3652-2
#> 580 http://link.springer.com/book/10.1007/978-3-319-67386-8
#> 581 http://link.springer.com/book/10.1007/978-981-13-1534-3
#> 582 http://link.springer.com/book/10.1007/978-1-4419-1742-3
#> 583 http://link.springer.com/book/10.1007/978-1-4614-8715-9
#> 584 http://link.springer.com/book/10.1007/978-3-319-41259-7
#> 585 http://link.springer.com/book/10.1007/978-1-4614-5245-4
#> 586 http://link.springer.com/book/10.1007/978-81-322-3643-6
#> 587 http://link.springer.com/book/10.1007/978-1-4614-5779-4
#> 588 http://link.springer.com/book/10.1007/0-387-28014-6
#> 589 http://link.springer.com/book/10.1007/978-3-319-19219-2
#> 590 http://link.springer.com/book/10.1007/978-1-4614-7618-4
#> 591 http://link.springer.com/book/10.1007/978-3-319-98029-4
#> 592 http://link.springer.com/book/10.1007/978-3-642-33657-7
#> 593 http://link.springer.com/book/10.1007/978-1-4939-0876-9
#> 594 http://link.springer.com/book/10.1007/978-3-319-55639-0
#> 595 http://link.springer.com/book/10.1007/978-1-4419-9782-1
#> 596 http://link.springer.com/book/10.1007/978-3-319-19518-6
#> 597 http://link.springer.com/book/10.1007/978-3-642-52307-6
#> 598 http://link.springer.com/book/10.1007/978-0-8176-4807-7
#> 599 http://link.springer.com/book/10.1007/978-3-319-22476-3
#> 600 http://link.springer.com/book/10.1007/978-3-540-68651-4
#> 601 http://link.springer.com/book/10.1007/978-1-4684-6316-3
#> 602 http://link.springer.com/book/10.1007/978-3-319-79011-4
#> 603 http://link.springer.com/book/10.1007/978-3-319-28316-6
#> 604 http://link.springer.com/book/10.1007/978-3-642-73822-7
#> 605 http://link.springer.com/book/10.1007/978-3-319-65355-6
#> 606 http://link.springer.com/book/10.1007/978-3-642-17086-7
#> 607 http://link.springer.com/book/10.1007/978-1-4939-8850-1
#> 608 http://link.springer.com/book/10.1007/978-3-642-55345-5
#> 609 http://link.springer.com/book/10.1007/978-3-319-77647-7
#> 610 http://link.springer.com/book/10.1007/978-3-642-93235-9
#> 611 http://link.springer.com/book/10.1007/978-3-030-30611-3
#> 612 http://link.springer.com/book/10.1007/978-0-387-78151-8
#> 613 http://link.springer.com/book/10.1007/b138989
#> 614 http://link.springer.com/book/10.1007/978-3-319-33946-7
#> 615 http://link.springer.com/book/10.1007/978-3-319-39065-9
#> 616 http://link.springer.com/book/10.1007/978-3-319-76315-6
#> 617 http://link.springer.com/book/10.1007/b138566
#> 618 http://link.springer.com/book/10.1007/978-1-4614-9602-1
#> 619 http://link.springer.com/book/10.1007/978-0-387-44970-8
#> 620 http://link.springer.com/book/10.1007/978-3-030-00039-4
#> 621 http://link.springer.com/book/10.1007/978-3-319-52452-8
#> 622 http://link.springer.com/book/10.1007/978-4-431-55573-5
#> 623 http://link.springer.com/book/10.1007/0-387-31610-8
#> 624 http://link.springer.com/book/10.1007/978-1-4614-6003-9
#> 625 http://link.springer.com/book/10.1007/978-981-10-6436-4
#> 626 http://link.springer.com/book/10.1007/978-1-4614-6449-5
#> 627 http://link.springer.com/book/10.1007/978-3-319-61552-3
#> 628 http://link.springer.com/book/10.1007/978-3-642-83784-5
#> 629 http://link.springer.com/book/10.1007/978-981-10-0871-9
#> 630 http://link.springer.com/book/10.1007/978-1-4757-3235-1
#> 631 http://link.springer.com/book/10.1007/978-3-319-19425-7
#> 632 http://link.springer.com/book/10.1007/978-981-10-0126-0
#> 633 http://link.springer.com/book/10.1007/978-1-4939-6640-0
#> 634 http://link.springer.com/book/10.1007/978-3-319-12517-6
#> 635 http://link.springer.com/book/10.1007/978-1-4614-2245-7
#> 636 http://link.springer.com/book/10.1007/b136588
#> 637 http://link.springer.com/book/10.1007/978-3-319-18539-2
#> 638 http://link.springer.com/book/10.1007/978-3-540-32691-5
#> 639 http://link.springer.com/book/10.1007/978-1-4757-3692-2
#> 640 http://link.springer.com/book/10.1007/b98886
#> 641 http://link.springer.com/book/10.1007/978-94-007-0789-4
#> 642 http://link.springer.com/book/10.1007/978-1-4614-9041-8
#> 643 http://link.springer.com/book/10.1007/978-3-319-76035-3
#> 644 http://link.springer.com/book/10.1007/978-0-8176-4749-0
#> 645 http://link.springer.com/book/10.1007/978-3-319-02967-2
#> 646 http://link.springer.com/book/10.1007/978-81-322-2461-7
#> 647 http://link.springer.com/book/10.1007/978-1-4614-0326-5
#> 648 http://link.springer.com/book/10.1007/978-981-10-4194-5
#> 649 http://link.springer.com/book/10.1007/0-387-36276-2
#> 650 http://link.springer.com/book/10.1007/978-3-642-51659-7
#> 651 http://link.springer.com/book/10.1007/978-3-319-05260-1
#> 652 http://link.springer.com/book/10.1007/978-1-4471-3675-0
#> 653 http://link.springer.com/book/10.1007/978-3-319-02532-2
#> 654 http://link.springer.com/book/10.1007/978-3-642-32419-2
#> 655 http://link.springer.com/book/10.1007/978-1-4613-9305-4
#> 656 http://link.springer.com/book/10.1007/978-981-13-0827-7
#> 657 http://link.springer.com/book/10.1007/978-0-387-78167-9
#> 658 http://link.springer.com/book/10.1007/978-3-319-50186-4
#> 659 http://link.springer.com/book/10.1007/0-387-30107-0
#> 660 http://link.springer.com/book/10.1007/978-3-319-31266-8
#> 661 http://link.springer.com/book/10.1007/978-3-642-20584-2
#> 662 http://link.springer.com/book/10.1007/978-1-4614-7846-1
#> 663 http://link.springer.com/book/10.1007/978-3-319-31245-3
#> 664 http://link.springer.com/book/10.1007/978-3-642-36276-7
#> 665 http://link.springer.com/book/10.1007/978-3-319-73241-1
#> 666 http://link.springer.com/book/10.1007/978-1-4614-8163-8
#> 667 http://link.springer.com/book/10.1007/978-3-642-93220-5
#> 668 http://link.springer.com/book/10.1007/978-981-10-3794-8
#> 669 http://link.springer.com/book/10.1007/978-3-030-31503-0
#> 670 http://link.springer.com/book/10.1007/978-3-030-10442-9
#> 671 http://link.springer.com/book/10.1007/0-387-33960-4
#> 672 http://link.springer.com/book/10.1007/978-1-4757-2523-0
#> 673 http://link.springer.com/book/10.1007/978-3-319-12550-3
#> 674 http://link.springer.com/book/10.1007/978-3-319-17704-5
#> 675 http://link.springer.com/book/10.1007/978-0-8176-8361-0
#> 676 http://link.springer.com/book/10.1007/978-3-319-12694-4
#> 677 http://link.springer.com/book/10.1007/978-1-4614-8708-1
#> 678 http://link.springer.com/book/10.1007/978-1-4939-8853-2
#> 679 http://link.springer.com/book/10.1007/978-3-642-93308-0
#> 680 http://link.springer.com/book/10.1007/978-0-8176-8168-5
#> 681 http://link.springer.com/book/10.1007/978-3-319-30634-6
#> 682 http://link.springer.com/book/10.1007/978-3-319-04579-5
#> 683 http://link.springer.com/book/10.1007/978-3-319-01264-3
#> 684 http://link.springer.com/book/10.1007/978-3-319-42571-9
#> 685 http://link.springer.com/book/10.1007/978-1-4757-2555-1
#> 686 http://link.springer.com/book/10.1007/978-981-10-7820-0
#> 687 http://link.springer.com/book/10.1007/978-1-4614-8775-3
#> 688 http://link.springer.com/book/10.1007/978-3-319-65313-6
#> 689 http://link.springer.com/book/10.1007/978-0-8176-4811-4
#> 690 http://link.springer.com/book/10.1007/b97288
#> 691 http://link.springer.com/book/10.1007/978-1-4419-7628-4
#> 692 http://link.springer.com/book/10.1007/978-94-011-0615-3
#> 693 http://link.springer.com/book/10.1007/978-3-319-25226-1
#> 694 http://link.springer.com/book/10.1007/978-0-387-77244-8
#> 695 http://link.springer.com/book/10.1007/978-3-319-45809-0
#> 696 http://link.springer.com/book/10.1007/978-1-4757-2728-9
#> 697 http://link.springer.com/book/10.1007/978-3-319-50272-4
#> 698 http://link.springer.com/book/10.1007/978-94-015-9468-4
#> 699 http://link.springer.com/book/10.1007/978-3-319-42568-9
#> 700 http://link.springer.com/book/10.1007/978-3-319-44811-4
#> 701 http://link.springer.com/book/10.1007/978-1-4757-3663-2
#> 702 http://link.springer.com/book/10.1007/978-3-319-93632-1
#> 703 http://link.springer.com/book/10.1007/978-1-4419-7762-5
#> 704 http://link.springer.com/book/10.1007/978-3-642-35588-2
#> 705 http://link.springer.com/book/10.1007/978-3-319-69416-0
#> 706 http://link.springer.com/book/10.1007/978-3-319-18029-8
#> 707 http://link.springer.com/book/10.1007/978-1-4612-3070-0
#> 708 http://link.springer.com/book/10.1007/978-3-319-73471-2
#> 709 http://link.springer.com/book/10.1007/978-0-387-93837-0
#> 710 http://link.springer.com/book/10.1007/978-3-642-93503-9
#> 711 http://link.springer.com/book/10.1007/978-981-15-1181-3
#> 712 http://link.springer.com/book/10.1007/978-3-319-73770-6
#> 713 http://link.springer.com/book/10.1007/978-3-642-10748-1
#> 714 http://link.springer.com/book/10.1007/978-3-319-66221-3
#> 715 http://link.springer.com/book/10.1007/978-1-4757-3460-7
#> 716 http://link.springer.com/book/10.1007/978-0-387-72899-5
#> 717 http://link.springer.com/book/10.1007/978-3-642-52498-1
#> 718 http://link.springer.com/book/10.1007/978-3-319-35132-2
#> 719 http://link.springer.com/book/10.1007/b138696
#> 720 http://link.springer.com/book/10.1007/978-3-319-31641-3
#> 721 http://link.springer.com/book/10.1007/978-1-4757-4290-9
#> 722 http://link.springer.com/book/10.1007/978-94-015-9508-7
#> 723 http://link.springer.com/book/10.1007/978-1-4612-5138-5
#> 724 http://link.springer.com/book/10.1007/978-3-319-28985-4
#> 725 http://link.springer.com/book/10.1007/978-3-319-32562-0
#> 726 http://link.springer.com/book/10.1007/978-3-642-39899-5
#> 727 http://link.springer.com/book/10.1007/978-3-662-07891-4
#> 728 http://link.springer.com/book/10.1007/978-1-4020-4650-6
#> 729 http://link.springer.com/book/10.1007/978-1-4939-2134-8
#> 730 http://link.springer.com/book/10.1007/978-3-319-12454-4
#> 731 http://link.springer.com/book/10.1007/978-1-4419-8477-7
#> 732 http://link.springer.com/book/10.1007/978-3-030-11671-2
#> 733 http://link.springer.com/book/10.1007/978-3-030-16368-6
#> 734 http://link.springer.com/book/10.1007/978-81-322-3628-3
#> 735 http://link.springer.com/book/10.1007/978-1-4614-8981-8
#> 736 http://link.springer.com/book/10.1007/978-3-642-27225-7
#> 737 http://link.springer.com/book/10.1007/978-1-4757-4108-7
#> 738 http://link.springer.com/book/10.1007/978-1-4614-4854-9
#> 739 http://link.springer.com/book/10.1007/978-3-642-23502-3
#> 740 http://link.springer.com/book/10.1007/978-3-030-20933-9
#> 741 http://link.springer.com/book/10.1007/978-981-13-5998-9
#> 742 http://link.springer.com/book/10.1007/978-3-319-23558-5
#> 743 http://link.springer.com/book/10.1007/978-1-4419-6646-9
#> 744 http://link.springer.com/book/10.1007/978-3-319-43252-6
#> 745 http://link.springer.com/book/10.1007/978-981-10-6557-6
#> 746 http://link.springer.com/book/10.1007/978-3-319-55846-2
#> 747 http://link.springer.com/book/10.1007/978-1-4419-9887-3
#> 748 http://link.springer.com/book/10.1007/978-1-4614-4018-5
#> 749 http://link.springer.com/book/10.1007/978-3-319-99389-8
#> 750 http://link.springer.com/book/10.1007/978-3-319-14093-3
#> 751 http://link.springer.com/book/10.1007/978-1-4419-8766-2
#> 752 http://link.springer.com/book/10.1007/978-3-642-75593-4
#> 753 http://link.springer.com/book/10.1007/978-3-642-93167-3
#> 754 http://link.springer.com/book/10.1007/978-1-4419-9842-2
#> 755 http://link.springer.com/book/10.1007/978-1-4614-6862-2
#> 756 http://link.springer.com/book/10.1007/978-3-642-78740-9
#> 757 http://link.springer.com/book/10.1007/978-1-4614-5428-1
#> 758 http://link.springer.com/book/10.1007/978-1-4614-3122-0
#> 759 http://link.springer.com/book/10.1007/978-3-030-13785-4
#> 760 http://link.springer.com/book/10.1007/978-3-030-28626-2
#> 761 http://link.springer.com/book/10.1007/978-0-387-68639-4
#> 762 http://link.springer.com/book/10.1007/978-1-4614-6114-2
#> 763 http://link.springer.com/book/10.1007/978-3-030-20709-0
#> 764 http://link.springer.com/book/10.1007/978-3-319-44093-4
#> 765 http://link.springer.com/book/10.1007/978-3-319-66146-9
#> 766 http://link.springer.com/book/10.1007/978-1-4614-9443-0
#> 767 http://link.springer.com/book/10.1007/978-3-030-17519-1
#> 768 http://link.springer.com/book/10.1007/978-94-010-0337-7
#> 769 http://link.springer.com/book/10.1007/978-3-319-46076-5
#> 770 http://link.springer.com/book/10.1007/978-3-319-32789-1
#> 771 http://link.springer.com/book/10.1007/978-1-4419-7976-6
#> 772 http://link.springer.com/book/10.1007/978-1-4614-3520-4
#> 773 http://link.springer.com/book/10.1007/978-1-4614-4072-7
#> 774 http://link.springer.com/book/10.1007/978-4-431-55900-9
#> 775 http://link.springer.com/book/10.1007/978-3-642-37887-4
#> 776 http://link.springer.com/book/10.1007/978-981-10-2164-0
#> 777 http://link.springer.com/book/10.1007/978-0-8176-4801-5
#> 778 http://link.springer.com/book/10.1007/978-3-642-48334-9
#> 779 http://link.springer.com/book/10.1007/978-3-642-93341-7
#> 780 http://link.springer.com/book/10.1007/978-3-319-63886-7
#> 781 http://link.springer.com/book/10.1007/978-3-319-55718-2
#> 782 http://link.springer.com/book/10.1007/978-3-642-93218-2
#> 783 http://link.springer.com/book/10.1007/978-3-319-00218-7
#> 784 http://link.springer.com/book/10.1007/978-3-319-50986-0
#> 785 http://link.springer.com/book/10.1007/978-1-4939-2137-9
#> 786 http://link.springer.com/book/10.1007/978-3-319-14475-7
#> 787 http://link.springer.com/book/10.1007/978-1-4684-0510-1
#> 788 http://link.springer.com/book/10.1007/978-3-319-11125-4
#> 789 http://link.springer.com/book/10.1007/978-3-030-26814-5
#> 790 http://link.springer.com/book/10.1007/978-1-4419-1586-3
#> 791 http://link.springer.com/book/10.1007/978-3-662-48344-2
#> 792 http://link.springer.com/book/10.1007/978-981-13-3516-7
#> 793 http://link.springer.com/book/10.1007/978-3-642-25969-2
#> 794 http://link.springer.com/book/10.1007/978-3-319-59976-2
#> 795 http://link.springer.com/book/10.1007/978-1-4613-0217-9
#> 796 http://link.springer.com/book/10.1007/978-1-4419-7338-2
#> 797 http://link.springer.com/book/10.1007/978-981-287-925-7
#> 798 http://link.springer.com/book/10.1007/978-3-319-02402-8
#> 799 http://link.springer.com/book/10.1007/978-3-319-18968-0
#> 800 http://link.springer.com/book/10.1007/978-1-4612-2294-1
#> 801 http://link.springer.com/book/10.1007/978-3-319-76605-8
#> 802 http://link.springer.com/book/10.1007/978-3-662-58541-2
#> 803 http://link.springer.com/book/10.1007/978-4-431-55585-8
#> 804 http://link.springer.com/book/10.1007/978-3-030-29184-6
#> 805 http://link.springer.com/book/10.1007/978-1-4757-3447-8
#> 806 http://link.springer.com/book/10.1007/978-3-319-10461-4
#> 807 http://link.springer.com/book/10.1007/978-1-4939-0977-3
#> 808 http://link.springer.com/book/10.1007/978-1-4419-7170-8
#> 809 http://link.springer.com/book/10.1007/978-3-319-96422-5
#> 810 http://link.springer.com/book/10.1007/978-981-10-7826-2
#> 811 http://link.springer.com/book/10.1007/978-3-642-93237-3
#> 812 http://link.springer.com/book/10.1007/978-3-319-41582-6
#> 813 http://link.springer.com/book/10.1007/978-3-642-93184-0
#> 814 http://link.springer.com/book/10.1007/978-3-030-34702-4
#> 815 http://link.springer.com/book/10.1007/978-3-319-07212-8
#> 816 http://link.springer.com/book/10.1007/978-1-4757-3247-4
#> 817 http://link.springer.com/book/10.1007/978-3-030-05420-5
#> 818 http://link.springer.com/book/10.1007/b97379
#> 819 http://link.springer.com/book/10.1007/978-3-319-97487-3
#> 820 http://link.springer.com/book/10.1007/978-3-319-22005-5
#> 821 http://link.springer.com/book/10.1007/978-1-4614-1353-0
#> 822 http://link.springer.com/book/10.1007/978-3-540-26577-1
#> 823 http://link.springer.com/book/10.1007/978-1-4757-3261-0
#> 824 http://link.springer.com/book/10.1007/978-1-4614-8223-9
#> 825 http://link.springer.com/book/10.1007/978-81-322-2831-8
#> 826 http://link.springer.com/book/10.1007/978-3-662-53736-7
#> 827 http://link.springer.com/book/10.1007/978-1-4614-6363-4
#> 828 http://link.springer.com/book/10.1007/978-1-4614-5586-8
#> 829 http://link.springer.com/book/10.1007/978-3-319-39489-3
#> 830 http://link.springer.com/referencework/10.1007/978-1-4614-8414-1
#> 831 http://link.springer.com/book/10.1007/978-3-030-30410-2
#> 832 http://link.springer.com/book/10.1007/b97636
#> 833 http://link.springer.com/book/10.1007/b97411
#> 834 http://link.springer.com/book/10.1007/978-3-319-23805-0
#> 835 http://link.springer.com/book/10.1007/978-1-4419-9076-1
#> 836 http://link.springer.com/book/10.1007/978-1-4939-0005-3
#> 837 http://link.springer.com/book/10.1007/978-1-4939-7693-5
#> 838 http://link.springer.com/book/10.1007/978-3-319-25433-3
#> 839 http://link.springer.com/book/10.1007/0-387-27782-X
#> 840 http://link.springer.com/referencework/10.1007/978-3-319-52677-5
#> 841 http://link.springer.com/book/10.1007/978-3-319-98926-6
#> 842 http://link.springer.com/book/10.1007/978-3-030-02914-2
#> 843 http://link.springer.com/book/10.1007/978-3-030-18187-1
#> 844 http://link.springer.com/book/10.1007/978-1-4757-3466-9
#> 845 http://link.springer.com/book/10.1007/978-94-017-5608-2
#> 846 http://link.springer.com/book/10.1007/978-0-387-78193-8
#> 847 http://link.springer.com/book/10.1007/978-1-4614-1302-8
#> 848 http://link.springer.com/book/10.1007/978-3-319-28158-2
#> 849 http://link.springer.com/book/10.1007/978-3-319-75295-2
#> 850 http://link.springer.com/book/10.1007/978-1-4614-6849-3
#> 851 http://link.springer.com/book/10.1007/978-3-319-28770-6
#> 852 http://link.springer.com/book/10.1007/978-981-10-3307-0
#> 853 http://link.springer.com/book/10.1007/978-981-13-9776-9
#> 854 http://link.springer.com/book/10.1007/978-3-319-17329-0
#> 855 http://link.springer.com/book/10.1007/978-3-319-77219-6
#> 856 http://link.springer.com/book/10.1007/978-981-15-1476-0
#> 857 http://link.springer.com/book/10.1007/978-3-642-93355-4
#> 858 http://link.springer.com/book/10.1007/978-3-662-57380-8
#> 859 http://link.springer.com/book/10.1007/978-981-10-7164-5
#> 860 http://link.springer.com/book/10.1007/978-3-319-89824-7
#> 861 http://link.springer.com/book/10.1007/978-3-319-00035-0
#> 862 http://link.springer.com/book/10.1007/978-3-642-35512-7
#> 863 http://link.springer.com/book/10.1007/978-3-319-55708-3
#> 864 http://link.springer.com/book/10.1007/978-3-319-00032-9
#> 865 http://link.springer.com/book/10.1007/978-981-13-9306-8
#> 866 http://link.springer.com/book/10.1007/b60971
#> 867 http://link.springer.com/book/10.1007/978-981-10-2341-5
#> 868 http://link.springer.com/book/10.1007/978-3-319-96941-1
#> 869 http://link.springer.com/book/10.1007/978-3-319-68264-8
#> 870 http://link.springer.com/book/10.1007/978-3-319-48015-2
#> 871 http://link.springer.com/book/10.1007/978-1-349-09952-8
#> 872 http://link.springer.com/book/10.1007/978-981-10-8627-4
#> 873 http://link.springer.com/book/10.1007/978-3-319-07875-5
#> 874 http://link.springer.com/book/10.1007/978-3-642-01976-0
#> 875 http://link.springer.com/book/10.1007/978-3-319-29854-2
#> 876 http://link.springer.com/book/10.1007/978-1-4614-7789-1
#> 877 http://link.springer.com/book/10.1007/978-3-030-21158-5
#> 878 http://link.springer.com/book/10.1007/978-3-319-28599-3
#> 879 http://link.springer.com/book/10.1007/978-1-4614-4738-2
#> 880 http://link.springer.com/book/10.1007/978-3-030-20374-0
#> 881 http://link.springer.com/book/10.1007/978-4-431-55276-5
#> 882 http://link.springer.com/book/10.1007/978-981-10-0152-9
#> 883 http://link.springer.com/book/10.1007/978-1-4614-3652-2
#> 884 http://link.springer.com/book/10.1007/978-3-642-46462-1
#> 885 http://link.springer.com/book/10.1007/978-81-322-3643-6
#> 886 http://link.springer.com/book/10.1007/b138400
#> 887 http://link.springer.com/book/10.1007/978-0-387-76371-2
#> 888 http://link.springer.com/book/10.1007/978-3-662-45171-7
#> 889 http://link.springer.com/book/10.1007/978-981-10-4856-2
#> 890 http://link.springer.com/book/10.1007/978-3-319-01517-0
#> 891 http://link.springer.com/book/10.1007/978-1-4613-8536-3
#> 892 http://link.springer.com/book/10.1007/978-1-4419-9934-4
#> 893 http://link.springer.com/book/10.1007/978-3-642-36850-9
#> 894 http://link.springer.com/book/10.1007/978-1-4612-1860-9
#> 895 http://link.springer.com/book/10.1007/978-981-10-5296-5
#> 896 http://link.springer.com/book/10.1007/978-3-030-30611-3
#> 897 http://link.springer.com/book/10.1007/b138989
#> 898 http://link.springer.com/book/10.1007/978-81-322-0659-0
#> 899 http://link.springer.com/book/10.1007/978-3-319-76315-6
#> 900 http://link.springer.com/book/10.1007/978-3-319-38959-2
#> 901 http://link.springer.com/book/10.1007/978-1-4939-2614-5
#> 902 http://link.springer.com/book/10.1007/978-0-387-92870-8
#> 903 http://link.springer.com/book/10.1007/978-3-319-92985-9
#> 904 http://link.springer.com/book/10.1007/978-3-319-45528-0
#> 905 http://link.springer.com/book/10.1007/978-1-4614-4343-8
#> 906 http://link.springer.com/book/10.1007/978-3-642-48710-1
#> 907 http://link.springer.com/book/10.1007/978-4-431-55239-0
#> 908 http://link.springer.com/book/10.1007/978-3-319-27174-3
#> 909 http://link.springer.com/book/10.1007/978-3-642-15923-7
#> 910 http://link.springer.com/book/10.1007/978-3-319-14436-8
#> 911 http://link.springer.com/book/10.1007/978-981-10-6436-4
#> 912 http://link.springer.com/book/10.1007/978-1-4612-0669-9
#> 913 http://link.springer.com/book/10.1007/978-3-642-16521-4
#> 914 http://link.springer.com/book/10.1007/978-3-642-31936-5
#> 915 http://link.springer.com/book/10.1007/978-3-319-96944-2
#> 916 http://link.springer.com/book/10.1007/978-4-431-54807-2
#> 917 http://link.springer.com/book/10.1007/978-1-4614-0406-4
#> 918 http://link.springer.com/book/10.1007/978-981-10-0871-9
#> 919 http://link.springer.com/book/10.1007/978-3-319-93773-1
#> 920 http://link.springer.com/book/10.1007/978-1-4757-3235-1
#> 921 http://link.springer.com/book/10.1007/978-3-319-28725-6
#> 922 http://link.springer.com/book/10.1007/0-387-31607-8
#> 923 http://link.springer.com/book/10.1007/978-1-4614-5897-5
#> 924 http://link.springer.com/book/10.1007/978-1-4614-7381-7
#> 925 http://link.springer.com/book/10.1007/978-3-319-64221-5
#> 926 http://link.springer.com/book/10.1007/978-3-319-33153-9
#> 927 http://link.springer.com/book/10.1007/978-3-319-00840-0
#> 928 http://link.springer.com/book/10.1007/978-1-4614-4720-7
#> 929 http://link.springer.com/book/10.1007/978-1-4757-3692-2
#> 930 http://link.springer.com/book/10.1007/978-3-642-21037-2
#> 931 http://link.springer.com/book/10.1007/978-94-007-0789-4
#> 932 http://link.springer.com/book/10.1007/b139025
#> 933 http://link.springer.com/book/10.1007/978-3-319-02967-2
#> 934 http://link.springer.com/book/10.1007/978-981-10-0401-8
#> 935 http://link.springer.com/book/10.1007/978-1-4419-1270-1
#> 936 http://link.springer.com/book/10.1007/978-3-030-26006-4
#> 937 http://link.springer.com/book/10.1007/978-3-319-55789-2
#> 938 http://link.springer.com/book/10.1007/978-81-322-2461-7
#> 939 http://link.springer.com/book/10.1007/978-1-4614-0326-5
#> 940 http://link.springer.com/book/10.1007/978-3-319-89635-9
#> 941 http://link.springer.com/book/10.1007/978-1-4614-3655-3
#> 942 http://link.springer.com/book/10.1007/978-3-642-46890-2
#> 943 http://link.springer.com/book/10.1007/978-3-319-45614-0
#> 944 http://link.springer.com/book/10.1007/978-3-319-11997-7
#> 945 http://link.springer.com/book/10.1007/978-3-030-26818-3
#> 946 http://link.springer.com/book/10.1007/978-3-319-21347-7
#> 947 http://link.springer.com/book/10.1007/978-81-322-1786-2
#> 948 http://link.springer.com/book/10.1007/978-1-4614-8788-3
#> 949 http://link.springer.com/book/10.1007/978-1-4614-7846-1
#> 950 http://link.springer.com/book/10.1007/978-1-4939-1702-0
#> 951 http://link.springer.com/book/10.1007/978-3-319-73241-1
#> 952 http://link.springer.com/book/10.1007/978-3-642-76307-6
#> 953 http://link.springer.com/book/10.1007/978-3-642-54539-9
#> 954 http://link.springer.com/book/10.1007/978-3-540-68721-4
#> 955 http://link.springer.com/book/10.1007/978-981-10-3794-8
#> 956 http://link.springer.com/book/10.1007/978-3-319-16238-6
#> 957 http://link.springer.com/book/10.1007/978-3-319-17704-5
#> 958 http://link.springer.com/book/10.1007/978-3-319-31822-6
#> 959 http://link.springer.com/book/10.1007/978-0-8176-8361-0
#> 960 http://link.springer.com/book/10.1007/978-81-322-2325-2
#> 961 http://link.springer.com/book/10.1007/978-1-4939-8853-2
#> 962 http://link.springer.com/book/10.1007/978-3-030-22625-1
#> 963 http://link.springer.com/book/10.1007/978-3-642-45587-2
#> 964 http://link.springer.com/book/10.1007/978-3-319-01264-3
#> 965 http://link.springer.com/book/10.1007/978-3-642-57292-0
#> 966 http://link.springer.com/book/10.1007/978-3-642-34333-9
#> 967 http://link.springer.com/book/10.1007/978-3-319-48414-3
#> 968 http://link.springer.com/book/10.1007/978-1-4613-8740-4
#> 969 http://link.springer.com/book/10.1007/978-1-137-51045-7
#> 970 http://link.springer.com/book/10.1007/978-94-010-3139-4
#> 971 http://link.springer.com/book/10.1007/978-1-4419-1764-5
#> 972 http://link.springer.com/book/10.1007/978-3-319-28341-8
#> 973 http://link.springer.com/book/10.1007/978-3-319-25226-1
#> 974 http://link.springer.com/book/10.1007/978-3-642-45138-6
#> 975 http://link.springer.com/book/10.1007/978-1-4419-9857-6
#> 976 http://link.springer.com/book/10.1007/978-3-319-50272-4
#> 977 http://link.springer.com/book/10.1007/0-387-34232-X
#> 978 http://link.springer.com/book/10.1007/978-3-030-26036-1
#> 979 http://link.springer.com/book/10.1007/978-1-4757-3663-2
#> 980 http://link.springer.com/book/10.1007/3-540-31720-1
#> 981 http://link.springer.com/book/10.1007/978-3-642-35588-2
#> 982 http://link.springer.com/book/10.1007/978-3-319-51313-3
#> 983 http://link.springer.com/book/10.1007/978-3-319-32185-1
#> 984 http://link.springer.com/book/10.1007/978-1-4419-0320-4
#> 985 http://link.springer.com/book/10.1007/978-981-13-0980-9
#> 986 http://link.springer.com/book/10.1007/978-3-319-18029-8
#> 987 http://link.springer.com/book/10.1007/978-3-642-17656-2
#> 988 http://link.springer.com/book/10.1007/978-1-4419-6876-0
#> 989 http://link.springer.com/book/10.1007/978-3-319-64069-3
#> 990 http://link.springer.com/book/10.1007/978-3-7908-2349-3
#> 991 http://link.springer.com/book/10.1007/978-3-319-56481-4
#> 992 http://link.springer.com/book/10.1007/978-3-319-72104-0
#> 993 http://link.springer.com/book/10.1007/978-3-319-20502-1
#> 994 http://link.springer.com/book/10.1057/978-1-137-49385-9
#> 995 http://link.springer.com/book/10.1007/978-3-662-49349-6
#> 996 http://link.springer.com/book/10.1007/978-3-319-11982-3
#> 997 http://link.springer.com/book/10.1007/978-3-642-52498-1
#> 998 http://link.springer.com/book/10.1007/b138696
#> 999 http://link.springer.com/book/10.1007/978-3-642-75040-3
#> 1000 http://link.springer.com/book/10.1007/978-3-319-10650-2
#> 1001 http://link.springer.com/book/10.1007/978-1-4757-4290-9
#> 1002 http://link.springer.com/book/10.1007/978-1-4939-4032-5
#> 1003 http://link.springer.com/book/10.1007/978-3-642-55255-7
#> 1004 http://link.springer.com/book/10.1007/978-3-662-12516-8
#> 1005 http://link.springer.com/book/10.1007/978-1-4615-9670-7
#> 1006 http://link.springer.com/book/10.1007/978-3-319-03242-9
#> 1007 http://link.springer.com/book/10.1007/978-1-4614-8594-0
#> 1008 http://link.springer.com/book/10.1007/978-3-030-11671-2
#> 1009 http://link.springer.com/book/10.1007/978-81-322-3628-3
#> 1010 http://link.springer.com/book/10.1007/978-3-319-55723-6
#> 1011 http://link.springer.com/book/10.1007/978-1-4939-9429-8
#> 1012 http://link.springer.com/book/10.2991/978-94-91216-83-1
#> 1013 http://link.springer.com/book/10.1007/978-3-319-43252-6
#> 1014 http://link.springer.com/book/10.1007/978-1-349-12809-9
#> 1015 http://link.springer.com/book/10.1007/978-3-642-18062-0
#> 1016 http://link.springer.com/book/10.1007/978-1-4614-8145-4
#> 1017 http://link.springer.com/book/10.1007/978-3-319-27274-0
#> 1018 http://link.springer.com/book/10.1007/978-3-319-26497-4
#> 1019 http://link.springer.com/book/10.1007/978-3-319-16877-7
#> 1020 http://link.springer.com/book/10.1007/978-1-4614-8423-3
#> 1021 http://link.springer.com/book/10.1007/978-1-4419-5525-8
#> 1022 http://link.springer.com/book/10.1007/978-3-642-78817-8
#> 1023 http://link.springer.com/book/10.1007/978-981-13-2146-7
#> 1024 http://link.springer.com/book/10.1007/978-3-7908-2593-0
#> 1025 http://link.springer.com/book/10.1007/978-1-4419-8766-2
#> 1026 http://link.springer.com/book/10.1007/978-1-4612-6099-8
#> 1027 http://link.springer.com/book/10.1007/978-3-0348-7958-3
#> 1028 http://link.springer.com/book/10.1007/978-3-319-73906-9
#> 1029 http://link.springer.com/book/10.1007/978-1-4939-6568-7
#> 1030 http://link.springer.com/book/10.1007/978-3-030-13785-4
#> 1031 http://link.springer.com/book/10.1007/978-4-431-54974-1
#> 1032 http://link.springer.com/book/10.1007/978-3-642-48340-0
#> 1033 http://link.springer.com/book/10.1007/978-3-030-20709-0
#> 1034 http://link.springer.com/book/10.1007/978-3-319-38867-0
#> 1035 http://link.springer.com/book/10.1007/978-981-13-3609-6
#> 1036 http://link.springer.com/book/10.1007/978-3-642-99766-2
#> 1037 http://link.springer.com/book/10.1007/978-3-030-31915-1
#> 1038 http://link.springer.com/book/10.1007/978-3-540-71297-8
#> 1039 http://link.springer.com/book/10.1007/978-1-4612-1017-7
#> 1040 http://link.springer.com/book/10.1007/978-0-8176-4801-5
#> 1041 http://link.springer.com/book/10.1007/978-0-387-27586-4
#> 1042 http://link.springer.com/book/10.1007/978-1-4613-0121-9
#> 1043 http://link.springer.com/book/10.1007/978-81-322-0786-3
#> 1044 http://link.springer.com/book/10.1007/978-1-349-11331-6
#> 1045 http://link.springer.com/book/10.1007/978-3-662-54486-0
#> 1046 http://link.springer.com/book/10.1007/978-3-319-63886-7
#> 1047 http://link.springer.com/book/10.1007/978-3-319-55718-2
#> 1048 http://link.springer.com/book/10.1007/978-0-387-32348-0
#> 1049 http://link.springer.com/book/10.1007/978-981-13-8075-4
#> 1050 http://link.springer.com/book/10.1007/978-3-319-50986-0
#> 1051 http://link.springer.com/book/10.1007/978-3-642-51746-4
#> 1052 http://link.springer.com/book/10.1007/978-94-010-3084-7
#> 1053 http://link.springer.com/book/10.1007/978-3-319-54084-9
#> 1054 http://link.springer.com/book/10.1007/b97478
#> 1055 http://link.springer.com/book/10.1007/978-981-10-5466-2
#> 1056 http://link.springer.com/book/10.1007/978-3-319-46162-5
#> 1057 http://link.springer.com/book/10.1007/978-3-642-46447-8
#> 1058 http://link.springer.com/book/10.1007/978-981-10-2594-5
#> 1059 http://link.springer.com/book/10.1007/978-3-642-97353-6
#> 1060 http://link.springer.com/book/10.1007/978-3-642-25969-2
#> 1061 http://link.springer.com/book/10.1007/978-3-319-55336-8
#> 1062 http://link.springer.com/book/10.1007/978-3-642-35407-6
#> 1063 http://link.springer.com/book/10.1007/978-3-319-19039-6
#> 1064 http://link.springer.com/book/10.1007/978-1-4613-0129-5
#> 1065 http://link.springer.com/book/10.1007/978-94-011-1970-2
#> 1066 http://link.springer.com/book/10.1007/978-981-15-1857-7
#> 1067 http://link.springer.com/book/10.1007/978-3-319-76605-8
#> 1068 http://link.springer.com/book/10.1007/978-3-662-58541-2
#> 1069 http://link.springer.com/book/10.2991/978-94-6239-136-9
#> 1070 http://link.springer.com/book/10.1007/978-3-319-62130-2
#> 1071 http://link.springer.com/book/10.1007/978-3-642-17229-8
#> 1072 http://link.springer.com/book/10.1007/978-981-13-1843-6
#> 1073 http://link.springer.com/book/10.1007/978-3-319-41582-6
#> 1074 http://link.springer.com/book/10.1007/978-4-431-55930-6
#> 1075 http://link.springer.com/book/10.1007/978-981-13-9314-3
#> 1076 http://link.springer.com/referencework/10.1007/978-3-642-04898-2
#> 1077 http://link.springer.com/book/10.1007/978-3-030-14316-9
#> 1078 http://link.springer.com/book/10.1007/978-3-030-05420-5
#> 1079 http://link.springer.com/book/10.1007/978-3-662-53736-7
#> 1080 http://link.springer.com/book/10.1007/978-3-642-17254-0
#> 1081 http://link.springer.com/book/10.1007/978-3-319-17377-1
#> 1082 http://link.springer.com/book/10.1007/978-1-4757-2281-9
#> 1083 http://link.springer.com/book/10.1007/978-1-4614-2071-2
#> 1084 http://link.springer.com/book/10.1007/978-3-030-20790-8
#> 1085 http://link.springer.com/book/10.1007/978-1-4614-3734-5
#> 1086 http://link.springer.com/book/10.1007/978-981-10-5194-4
#> 1087 http://link.springer.com/book/10.1007/978-81-322-2364-1
#> 1088 http://link.springer.com/book/10.1007/978-3-642-97225-6
#> 1089 http://link.springer.com/book/10.1007/978-1-4614-3713-0
#> 1090 http://link.springer.com/book/10.1007/b138291
#> 1091 http://link.springer.com/book/10.1007/978-1-4757-3090-6
#> 1092 http://link.springer.com/book/10.1007/978-3-662-22033-7
#> 1093 http://link.springer.com/book/10.1007/0-387-31075-4
#> 1094 http://link.springer.com/book/10.1007/978-3-319-75295-2
#> 1095 http://link.springer.com/book/10.1007/978-3-030-13751-9
#> 1096 http://link.springer.com/book/10.1007/978-3-319-70936-9
#> 1097 http://link.springer.com/book/10.1007/978-3-319-12442-1
#> 1098 http://link.springer.com/book/10.1007/978-3-642-33929-5
#> 1099 http://link.springer.com/book/10.1007/978-3-319-65331-0
#> 1100 http://link.springer.com/book/10.1007/978-981-13-9776-9
#> 1101 http://link.springer.com/book/10.1007/978-1-4614-8154-6
#> 1102 http://link.springer.com/book/10.1007/978-3-319-03497-3
#> 1103 http://link.springer.com/book/10.1007/978-3-642-32931-9
#> 1104 http://link.springer.com/book/10.1007/978-981-15-1476-0
#> 1105 http://link.springer.com/book/10.1007/978-3-642-59789-3
#> 1106 http://link.springer.com/book/10.1007/978-981-15-2552-0
#> 1107 http://link.springer.com/book/10.1007/978-1-4419-7787-8
#> 1108 http://link.springer.com/book/10.1007/978-3-662-57380-8
#> Content.Type fn VAR_00001 VAR_00002 VAR_00003
#> 1 Book filename_001.csv filename 001 csv
#> 2 Book filename_001.csv filename 001 csv
#> 3 Book filename_001.csv filename 001 csv
#> 4 Book filename_001.csv filename 001 csv
#> 5 Book filename_001.csv filename 001 csv
#> 6 Book filename_001.csv filename 001 csv
#> 7 Book filename_001.csv filename 001 csv
#> 8 Book filename_001.csv filename 001 csv
#> 9 Book filename_001.csv filename 001 csv
#> 10 Book filename_001.csv filename 001 csv
#> 11 Book filename_001.csv filename 001 csv
#> 12 Book filename_001.csv filename 001 csv
#> 13 Book filename_001.csv filename 001 csv
#> 14 Book filename_001.csv filename 001 csv
#> 15 Book filename_001.csv filename 001 csv
#> 16 Book filename_001.csv filename 001 csv
#> 17 Book filename_001.csv filename 001 csv
#> 18 Book filename_001.csv filename 001 csv
#> 19 Book filename_001.csv filename 001 csv
#> 20 Book filename_001.csv filename 001 csv
#> 21 Book filename_001.csv filename 001 csv
#> 22 Book filename_001.csv filename 001 csv
#> 23 Book filename_001.csv filename 001 csv
#> 24 Book filename_001.csv filename 001 csv
#> 25 Book filename_001.csv filename 001 csv
#> 26 Book filename_001.csv filename 001 csv
#> 27 Book filename_001.csv filename 001 csv
#> 28 Book filename_001.csv filename 001 csv
#> 29 Book filename_001.csv filename 001 csv
#> 30 Book filename_001.csv filename 001 csv
#> 31 Book filename_001.csv filename 001 csv
#> 32 Book filename_001.csv filename 001 csv
#> 33 Book filename_001.csv filename 001 csv
#> 34 Book filename_001.csv filename 001 csv
#> 35 Book filename_001.csv filename 001 csv
#> 36 Book filename_001.csv filename 001 csv
#> 37 Book filename_001.csv filename 001 csv
#> 38 Book filename_001.csv filename 001 csv
#> 39 Book filename_001.csv filename 001 csv
#> 40 Book filename_001.csv filename 001 csv
#> 41 Book filename_001.csv filename 001 csv
#> 42 Book filename_001.csv filename 001 csv
#> 43 Book filename_001.csv filename 001 csv
#> 44 Book filename_001.csv filename 001 csv
#> 45 Book filename_001.csv filename 001 csv
#> 46 Book filename_001.csv filename 001 csv
#> 47 Book filename_001.csv filename 001 csv
#> 48 Book filename_001.csv filename 001 csv
#> 49 Book filename_001.csv filename 001 csv
#> 50 Book filename_001.csv filename 001 csv
#> 51 Book filename_001.csv filename 001 csv
#> 52 Book filename_001.csv filename 001 csv
#> 53 Book filename_001.csv filename 001 csv
#> 54 Book filename_001.csv filename 001 csv
#> 55 Book filename_001.csv filename 001 csv
#> 56 Book filename_001.csv filename 001 csv
#> 57 Book filename_001.csv filename 001 csv
#> 58 Book filename_001.csv filename 001 csv
#> 59 Book filename_001.csv filename 001 csv
#> 60 Book filename_001.csv filename 001 csv
#> 61 Book filename_001.csv filename 001 csv
#> 62 Book filename_001.csv filename 001 csv
#> 63 Book filename_001.csv filename 001 csv
#> 64 Book filename_001.csv filename 001 csv
#> 65 Book filename_001.csv filename 001 csv
#> 66 Book filename_001.csv filename 001 csv
#> 67 Book filename_001.csv filename 001 csv
#> 68 Book filename_001.csv filename 001 csv
#> 69 Book filename_001.csv filename 001 csv
#> 70 Book filename_001.csv filename 001 csv
#> 71 Book filename_001.csv filename 001 csv
#> 72 Book filename_001.csv filename 001 csv
#> 73 Book filename_001.csv filename 001 csv
#> 74 Book filename_001.csv filename 001 csv
#> 75 Book filename_001.csv filename 001 csv
#> 76 Book filename_001.csv filename 001 csv
#> 77 Book filename_001.csv filename 001 csv
#> 78 Book filename_001.csv filename 001 csv
#> 79 Book filename_001.csv filename 001 csv
#> 80 Book filename_001.csv filename 001 csv
#> 81 Book filename_001.csv filename 001 csv
#> 82 Book filename_001.csv filename 001 csv
#> 83 Book filename_001.csv filename 001 csv
#> 84 Book filename_001.csv filename 001 csv
#> 85 Book filename_001.csv filename 001 csv
#> 86 Book filename_001.csv filename 001 csv
#> 87 Book filename_001.csv filename 001 csv
#> 88 Book filename_001.csv filename 001 csv
#> 89 Book filename_001.csv filename 001 csv
#> 90 Book filename_001.csv filename 001 csv
#> 91 Book filename_001.csv filename 001 csv
#> 92 Book filename_001.csv filename 001 csv
#> 93 Book filename_001.csv filename 001 csv
#> 94 Book filename_001.csv filename 001 csv
#> 95 Book filename_001.csv filename 001 csv
#> 96 Book filename_001.csv filename 001 csv
#> 97 Book filename_001.csv filename 001 csv
#> 98 Book filename_001.csv filename 001 csv
#> 99 Book filename_001.csv filename 001 csv
#> 100 Book filename_001.csv filename 001 csv
#> 101 Book filename_001.csv filename 001 csv
#> 102 Book filename_001.csv filename 001 csv
#> 103 Book filename_001.csv filename 001 csv
#> 104 Book filename_001.csv filename 001 csv
#> 105 Book filename_001.csv filename 001 csv
#> 106 Book filename_001.csv filename 001 csv
#> 107 Book filename_001.csv filename 001 csv
#> 108 Book filename_001.csv filename 001 csv
#> 109 Book filename_001.csv filename 001 csv
#> 110 Book filename_001.csv filename 001 csv
#> 111 Book filename_001.csv filename 001 csv
#> 112 Book filename_001.csv filename 001 csv
#> 113 Book filename_001.csv filename 001 csv
#> 114 Book filename_001.csv filename 001 csv
#> 115 Book filename_001.csv filename 001 csv
#> 116 Book filename_001.csv filename 001 csv
#> 117 Book filename_001.csv filename 001 csv
#> 118 Book filename_001.csv filename 001 csv
#> 119 Book filename_001.csv filename 001 csv
#> 120 Book filename_001.csv filename 001 csv
#> 121 Book filename_001.csv filename 001 csv
#> 122 Book filename_001.csv filename 001 csv
#> 123 Book filename_001.csv filename 001 csv
#> 124 Book filename_001.csv filename 001 csv
#> 125 Book filename_001.csv filename 001 csv
#> 126 Book filename_001.csv filename 001 csv
#> 127 Book filename_001.csv filename 001 csv
#> 128 Book filename_001.csv filename 001 csv
#> 129 Book filename_001.csv filename 001 csv
#> 130 Book filename_001.csv filename 001 csv
#> 131 Book filename_001.csv filename 001 csv
#> 132 Book filename_001.csv filename 001 csv
#> 133 Book filename_001.csv filename 001 csv
#> 134 Book filename_001.csv filename 001 csv
#> 135 Book filename_001.csv filename 001 csv
#> 136 Book filename_001.csv filename 001 csv
#> 137 Book filename_001.csv filename 001 csv
#> 138 Book filename_001.csv filename 001 csv
#> 139 Book filename_001.csv filename 001 csv
#> 140 Book filename_001.csv filename 001 csv
#> 141 Book filename_001.csv filename 001 csv
#> 142 Book filename_001.csv filename 001 csv
#> 143 Book filename_001.csv filename 001 csv
#> 144 Book filename_001.csv filename 001 csv
#> 145 Book filename_001.csv filename 001 csv
#> 146 Book filename_001.csv filename 001 csv
#> 147 Book filename_001.csv filename 001 csv
#> 148 Book filename_001.csv filename 001 csv
#> 149 Book filename_001.csv filename 001 csv
#> 150 Book filename_001.csv filename 001 csv
#> 151 Book filename_001.csv filename 001 csv
#> 152 Book filename_001.csv filename 001 csv
#> 153 Book filename_001.csv filename 001 csv
#> 154 Book filename_001.csv filename 001 csv
#> 155 Book filename_001.csv filename 001 csv
#> 156 Book filename_001.csv filename 001 csv
#> 157 Book filename_001.csv filename 001 csv
#> 158 Book filename_001.csv filename 001 csv
#> 159 Book filename_001.csv filename 001 csv
#> 160 Book filename_001.csv filename 001 csv
#> 161 Book filename_001.csv filename 001 csv
#> 162 Book filename_001.csv filename 001 csv
#> 163 Book filename_001.csv filename 001 csv
#> 164 Book filename_001.csv filename 001 csv
#> 165 Book filename_001.csv filename 001 csv
#> 166 Book filename_001.csv filename 001 csv
#> 167 Book filename_001.csv filename 001 csv
#> 168 Book filename_001.csv filename 001 csv
#> 169 Book filename_001.csv filename 001 csv
#> 170 Book filename_001.csv filename 001 csv
#> 171 Book filename_001.csv filename 001 csv
#> 172 Book filename_001.csv filename 001 csv
#> 173 Book filename_001.csv filename 001 csv
#> 174 Book filename_001.csv filename 001 csv
#> 175 Book filename_001.csv filename 001 csv
#> 176 Book filename_001.csv filename 001 csv
#> 177 Book filename_001.csv filename 001 csv
#> 178 Book filename_001.csv filename 001 csv
#> 179 Book filename_001.csv filename 001 csv
#> 180 Book filename_001.csv filename 001 csv
#> 181 Book filename_001.csv filename 001 csv
#> 182 Book filename_001.csv filename 001 csv
#> 183 Book filename_001.csv filename 001 csv
#> 184 Book filename_001.csv filename 001 csv
#> 185 Book filename_001.csv filename 001 csv
#> 186 Book filename_001.csv filename 001 csv
#> 187 Book filename_001.csv filename 001 csv
#> 188 Book filename_001.csv filename 001 csv
#> 189 Book filename_001.csv filename 001 csv
#> 190 Book filename_001.csv filename 001 csv
#> 191 Book filename_001.csv filename 001 csv
#> 192 Book filename_001.csv filename 001 csv
#> 193 Book filename_001.csv filename 001 csv
#> 194 Book filename_001.csv filename 001 csv
#> 195 Book filename_001.csv filename 001 csv
#> 196 Book filename_001.csv filename 001 csv
#> 197 Book filename_001.csv filename 001 csv
#> 198 Book filename_001.csv filename 001 csv
#> 199 Book filename_001.csv filename 001 csv
#> 200 Book filename_001.csv filename 001 csv
#> 201 Book filename_001.csv filename 001 csv
#> 202 Book filename_001.csv filename 001 csv
#> 203 Book filename_001.csv filename 001 csv
#> 204 Book filename_001.csv filename 001 csv
#> 205 Book filename_001.csv filename 001 csv
#> 206 Book filename_001.csv filename 001 csv
#> 207 Book filename_001.csv filename 001 csv
#> 208 Book filename_001.csv filename 001 csv
#> 209 Book filename_001.csv filename 001 csv
#> 210 Book filename_001.csv filename 001 csv
#> 211 Book filename_001.csv filename 001 csv
#> 212 Book filename_001.csv filename 001 csv
#> 213 Book filename_001.csv filename 001 csv
#> 214 Book filename_001.csv filename 001 csv
#> 215 Book filename_001.csv filename 001 csv
#> 216 Book filename_001.csv filename 001 csv
#> 217 Book filename_001.csv filename 001 csv
#> 218 Book filename_001.csv filename 001 csv
#> 219 Book filename_001.csv filename 001 csv
#> 220 Book filename_001.csv filename 001 csv
#> 221 Book filename_001.csv filename 001 csv
#> 222 Book filename_001.csv filename 001 csv
#> 223 Book filename_001.csv filename 001 csv
#> 224 Book filename_001.csv filename 001 csv
#> 225 Book filename_001.csv filename 001 csv
#> 226 Book filename_001.csv filename 001 csv
#> 227 Book filename_001.csv filename 001 csv
#> 228 Book filename_001.csv filename 001 csv
#> 229 Book filename_001.csv filename 001 csv
#> 230 Book filename_001.csv filename 001 csv
#> 231 Book filename_001.csv filename 001 csv
#> 232 Book filename_001.csv filename 001 csv
#> 233 Book filename_001.csv filename 001 csv
#> 234 Book filename_001.csv filename 001 csv
#> 235 Book filename_001.csv filename 001 csv
#> 236 Book filename_001.csv filename 001 csv
#> 237 Book filename_001.csv filename 001 csv
#> 238 Book filename_001.csv filename 001 csv
#> 239 Book filename_001.csv filename 001 csv
#> 240 Book filename_001.csv filename 001 csv
#> 241 Book filename_001.csv filename 001 csv
#> 242 Book filename_001.csv filename 001 csv
#> 243 Book filename_001.csv filename 001 csv
#> 244 Book filename_001.csv filename 001 csv
#> 245 Book filename_001.csv filename 001 csv
#> 246 Book filename_001.csv filename 001 csv
#> 247 Book filename_001.csv filename 001 csv
#> 248 Book filename_001.csv filename 001 csv
#> 249 Book filename_001.csv filename 001 csv
#> 250 Book filename_001.csv filename 001 csv
#> 251 Book filename_001.csv filename 001 csv
#> 252 Book filename_001.csv filename 001 csv
#> 253 Book filename_001.csv filename 001 csv
#> 254 Book filename_001.csv filename 001 csv
#> 255 Book filename_001.csv filename 001 csv
#> 256 Book filename_001.csv filename 001 csv
#> 257 Book filename_001.csv filename 001 csv
#> 258 Book filename_001.csv filename 001 csv
#> 259 Book filename_001.csv filename 001 csv
#> 260 Book filename_001.csv filename 001 csv
#> 261 Book filename_001.csv filename 001 csv
#> 262 Book filename_001.csv filename 001 csv
#> 263 Book filename_001.csv filename 001 csv
#> 264 Book filename_001.csv filename 001 csv
#> 265 Book filename_001.csv filename 001 csv
#> 266 Book filename_001.csv filename 001 csv
#> 267 Book filename_001.csv filename 001 csv
#> 268 Book filename_001.csv filename 001 csv
#> 269 Book filename_001.csv filename 001 csv
#> 270 Book filename_001.csv filename 001 csv
#> 271 Book filename_001.csv filename 001 csv
#> 272 Book filename_001.csv filename 001 csv
#> 273 Book filename_001.csv filename 001 csv
#> 274 Book filename_001.csv filename 001 csv
#> 275 Book filename_001.csv filename 001 csv
#> 276 Book filename_001.csv filename 001 csv
#> 277 Book filename_001.csv filename 001 csv
#> 278 Book filename_001.csv filename 001 csv
#> 279 Book filename_001.csv filename 001 csv
#> 280 Book filename_001.csv filename 001 csv
#> 281 Book filename_001.csv filename 001 csv
#> 282 Book filename_001.csv filename 001 csv
#> 283 Book filename_001.csv filename 001 csv
#> 284 Book filename_001.csv filename 001 csv
#> 285 Book filename_001.csv filename 001 csv
#> 286 Book filename_001.csv filename 001 csv
#> 287 Book filename_001.csv filename 001 csv
#> 288 Book filename_001.csv filename 001 csv
#> 289 Book filename_001.csv filename 001 csv
#> 290 Book filename_001.csv filename 001 csv
#> 291 Book filename_001.csv filename 001 csv
#> 292 Book filename_001.csv filename 001 csv
#> 293 Book filename_001.csv filename 001 csv
#> 294 Book filename_001.csv filename 001 csv
#> 295 Book filename_001.csv filename 001 csv
#> 296 Book filename_001.csv filename 001 csv
#> 297 Book filename_001.csv filename 001 csv
#> 298 Book filename_001.csv filename 001 csv
#> 299 Book filename_001.csv filename 001 csv
#> 300 Book filename_001.csv filename 001 csv
#> 301 Book filename_001.csv filename 001 csv
#> 302 Book filename_001.csv filename 001 csv
#> 303 Book filename_001.csv filename 001 csv
#> 304 Book filename_001.csv filename 001 csv
#> 305 Book filename_001.csv filename 001 csv
#> 306 Book filename_001.csv filename 001 csv
#> 307 Book filename_001.csv filename 001 csv
#> 308 Book filename_001.csv filename 001 csv
#> 309 Book filename_001.csv filename 001 csv
#> 310 Book filename_001.csv filename 001 csv
#> 311 Book filename_001.csv filename 001 csv
#> 312 Book filename_001.csv filename 001 csv
#> 313 Book filename_001.csv filename 001 csv
#> 314 Book filename_001.csv filename 001 csv
#> 315 Book filename_001.csv filename 001 csv
#> 316 Book filename_001.csv filename 001 csv
#> 317 Book filename_001.csv filename 001 csv
#> 318 Book filename_001.csv filename 001 csv
#> 319 Book filename_001.csv filename 001 csv
#> 320 Book filename_001.csv filename 001 csv
#> 321 Book filename_001.csv filename 001 csv
#> 322 Book filename_001.csv filename 001 csv
#> 323 Book filename_001.csv filename 001 csv
#> 324 Book filename_001.csv filename 001 csv
#> 325 Book filename_001.csv filename 001 csv
#> 326 Book filename_001.csv filename 001 csv
#> 327 Book filename_001.csv filename 001 csv
#> 328 Book filename_001.csv filename 001 csv
#> 329 Book filename_001.csv filename 001 csv
#> 330 Book filename_001.csv filename 001 csv
#> 331 Book filename_001.csv filename 001 csv
#> 332 Book filename_001.csv filename 001 csv
#> 333 Book filename_001.csv filename 001 csv
#> 334 Book filename_001.csv filename 001 csv
#> 335 Book filename_001.csv filename 001 csv
#> 336 Book filename_001.csv filename 001 csv
#> 337 Book filename_001.csv filename 001 csv
#> 338 Book filename_001.csv filename 001 csv
#> 339 Book filename_001.csv filename 001 csv
#> 340 Book filename_001.csv filename 001 csv
#> 341 Book filename_001.csv filename 001 csv
#> 342 Book filename_001.csv filename 001 csv
#> 343 Book filename_001.csv filename 001 csv
#> 344 Book filename_001.csv filename 001 csv
#> 345 Book filename_001.csv filename 001 csv
#> 346 Book filename_001.csv filename 001 csv
#> 347 Book filename_001.csv filename 001 csv
#> 348 Book filename_001.csv filename 001 csv
#> 349 Book filename_001.csv filename 001 csv
#> 350 Book filename_001.csv filename 001 csv
#> 351 Book filename_001.csv filename 001 csv
#> 352 Book filename_001.csv filename 001 csv
#> 353 Book filename_001.csv filename 001 csv
#> 354 Book filename_001.csv filename 001 csv
#> 355 Book filename_001.csv filename 001 csv
#> 356 Book filename_001.csv filename 001 csv
#> 357 Book filename_001.csv filename 001 csv
#> 358 Book filename_001.csv filename 001 csv
#> 359 Book filename_001.csv filename 001 csv
#> 360 Book filename_001.csv filename 001 csv
#> 361 Book filename_001.csv filename 001 csv
#> 362 Book filename_001.csv filename 001 csv
#> 363 Book filename_001.csv filename 001 csv
#> 364 Book filename_001.csv filename 001 csv
#> 365 Book filename_001.csv filename 001 csv
#> 366 Book filename_001.csv filename 001 csv
#> 367 Book filename_001.csv filename 001 csv
#> 368 Book filename_001.csv filename 001 csv
#> 369 Book filename_001.csv filename 001 csv
#> 370 Book filename_001.csv filename 001 csv
#> 371 Book filename_001.csv filename 001 csv
#> 372 Book filename_001.csv filename 001 csv
#> 373 Book filename_001.csv filename 001 csv
#> 374 Book filename_001.csv filename 001 csv
#> 375 Book filename_001.csv filename 001 csv
#> 376 Book filename_001.csv filename 001 csv
#> 377 Book filename_001.csv filename 001 csv
#> 378 Book filename_001.csv filename 001 csv
#> 379 Book filename_001.csv filename 001 csv
#> 380 Book filename_001.csv filename 001 csv
#> 381 Book filename_001.csv filename 001 csv
#> 382 Book filename_001.csv filename 001 csv
#> 383 Book filename_001.csv filename 001 csv
#> 384 Book filename_001.csv filename 001 csv
#> 385 Book filename_001.csv filename 001 csv
#> 386 Book filename_001.csv filename 001 csv
#> 387 Book filename_001.csv filename 001 csv
#> 388 Book filename_001.csv filename 001 csv
#> 389 Book filename_001.csv filename 001 csv
#> 390 Book filename_001.csv filename 001 csv
#> 391 Book filename_001.csv filename 001 csv
#> 392 Book filename_001.csv filename 001 csv
#> 393 Book filename_001.csv filename 001 csv
#> 394 Book filename_001.csv filename 001 csv
#> 395 Book filename_001.csv filename 001 csv
#> 396 Book filename_001.csv filename 001 csv
#> 397 Book filename_001.csv filename 001 csv
#> 398 Book filename_001.csv filename 001 csv
#> 399 Book filename_001.csv filename 001 csv
#> 400 Book filename_001.csv filename 001 csv
#> 401 Book filename_001.csv filename 001 csv
#> 402 Book filename_001.csv filename 001 csv
#> 403 Book filename_001.csv filename 001 csv
#> 404 Book filename_001.csv filename 001 csv
#> 405 Book filename_001.csv filename 001 csv
#> 406 Book filename_001.csv filename 001 csv
#> 407 Book filename_001.csv filename 001 csv
#> 408 Book filename_001.csv filename 001 csv
#> 409 Book filename_001.csv filename 001 csv
#> 410 Book filename_001.csv filename 001 csv
#> 411 Book filename_001.csv filename 001 csv
#> 412 Book filename_001.csv filename 001 csv
#> 413 Book filename_001.csv filename 001 csv
#> 414 Book filename_001.csv filename 001 csv
#> 415 Book filename_001.csv filename 001 csv
#> 416 Book filename_001.csv filename 001 csv
#> 417 Book filename_001.csv filename 001 csv
#> 418 Book filename_001.csv filename 001 csv
#> 419 Book filename_001.csv filename 001 csv
#> 420 Book filename_001.csv filename 001 csv
#> 421 Book filename_001.csv filename 001 csv
#> 422 Book filename_001.csv filename 001 csv
#> 423 Book filename_001.csv filename 001 csv
#> 424 Book filename_001.csv filename 001 csv
#> 425 Book filename_001.csv filename 001 csv
#> 426 Book filename_001.csv filename 001 csv
#> 427 Book filename_001.csv filename 001 csv
#> 428 Book filename_001.csv filename 001 csv
#> 429 Book filename_001.csv filename 001 csv
#> 430 Book filename_001.csv filename 001 csv
#> 431 Book filename_001.csv filename 001 csv
#> 432 Book filename_001.csv filename 001 csv
#> 433 Book filename_001.csv filename 001 csv
#> 434 Book filename_001.csv filename 001 csv
#> 435 Book filename_001.csv filename 001 csv
#> 436 Book filename_001.csv filename 001 csv
#> 437 Book filename_001.csv filename 001 csv
#> 438 Book filename_001.csv filename 001 csv
#> 439 Book filename_001.csv filename 001 csv
#> 440 Book filename_001.csv filename 001 csv
#> 441 Book filename_001.csv filename 001 csv
#> 442 Book filename_001.csv filename 001 csv
#> 443 Book filename_001.csv filename 001 csv
#> 444 Book filename_001.csv filename 001 csv
#> 445 Book filename_001.csv filename 001 csv
#> 446 Book filename_001.csv filename 001 csv
#> 447 Book filename_001.csv filename 001 csv
#> 448 Book filename_001.csv filename 001 csv
#> 449 Book filename_001.csv filename 001 csv
#> 450 Book filename_001.csv filename 001 csv
#> 451 Book filename_001.csv filename 001 csv
#> 452 Book filename_001.csv filename 001 csv
#> 453 Book filename_001.csv filename 001 csv
#> 454 Book filename_001.csv filename 001 csv
#> 455 Book filename_001.csv filename 001 csv
#> 456 Book filename_001.csv filename 001 csv
#> 457 Book filename_001.csv filename 001 csv
#> 458 Book filename_001.csv filename 001 csv
#> 459 Book filename_001.csv filename 001 csv
#> 460 Book filename_001.csv filename 001 csv
#> 461 Book filename_001.csv filename 001 csv
#> 462 Book filename_001.csv filename 001 csv
#> 463 Book filename_001.csv filename 001 csv
#> 464 Book filename_001.csv filename 001 csv
#> 465 Book filename_001.csv filename 001 csv
#> 466 Book filename_001.csv filename 001 csv
#> 467 Book filename_001.csv filename 001 csv
#> 468 Book filename_001.csv filename 001 csv
#> 469 Book filename_001.csv filename 001 csv
#> 470 Book filename_001.csv filename 001 csv
#> 471 Book filename_001.csv filename 001 csv
#> 472 Book filename_001.csv filename 001 csv
#> 473 Book filename_001.csv filename 001 csv
#> 474 Book filename_001.csv filename 001 csv
#> 475 Book filename_001.csv filename 001 csv
#> 476 Book filename_001.csv filename 001 csv
#> 477 Book filename_001.csv filename 001 csv
#> 478 Book filename_001.csv filename 001 csv
#> 479 ReferenceWork filename_001.csv filename 001 csv
#> 480 Book filename_001.csv filename 001 csv
#> 481 Book filename_001.csv filename 001 csv
#> 482 Book filename_001.csv filename 001 csv
#> 483 Book filename_001.csv filename 001 csv
#> 484 Book filename_001.csv filename 001 csv
#> 485 Book filename_001.csv filename 001 csv
#> 486 Book filename_001.csv filename 001 csv
#> 487 Book filename_001.csv filename 001 csv
#> 488 Book filename_001.csv filename 001 csv
#> 489 Book filename_001.csv filename 001 csv
#> 490 Book filename_001.csv filename 001 csv
#> 491 Book filename_001.csv filename 001 csv
#> 492 Book filename_001.csv filename 001 csv
#> 493 Book filename_001.csv filename 001 csv
#> 494 Book filename_001.csv filename 001 csv
#> 495 Book filename_001.csv filename 001 csv
#> 496 Book filename_001.csv filename 001 csv
#> 497 Book filename_001.csv filename 001 csv
#> 498 Book filename_001.csv filename 001 csv
#> 499 Book filename_001.csv filename 001 csv
#> 500 Book filename_001.csv filename 001 csv
#> 501 Book filename_001.csv filename 001 csv
#> 502 Book filename_001.csv filename 001 csv
#> 503 Book filename_001.csv filename 001 csv
#> 504 Book filename_001.csv filename 001 csv
#> 505 Book filename_001.csv filename 001 csv
#> 506 Book filename_001.csv filename 001 csv
#> 507 Book filename_001.csv filename 001 csv
#> 508 Book filename_001.csv filename 001 csv
#> 509 Book filename_001.csv filename 001 csv
#> 510 Book filename_001.csv filename 001 csv
#> 511 Book filename_001.csv filename 001 csv
#> 512 Book filename_001.csv filename 001 csv
#> 513 Book filename_001.csv filename 001 csv
#> 514 Book filename_001.csv filename 001 csv
#> 515 Book filename_001.csv filename 001 csv
#> 516 Book filename_001.csv filename 001 csv
#> 517 Book filename_001.csv filename 001 csv
#> 518 Book filename_001.csv filename 001 csv
#> 519 Book filename_001.csv filename 001 csv
#> 520 Book filename_001.csv filename 001 csv
#> 521 Book filename_001.csv filename 001 csv
#> 522 Book filename_001.csv filename 001 csv
#> 523 Book filename_001.csv filename 001 csv
#> 524 Book filename_001.csv filename 001 csv
#> 525 Book filename_001.csv filename 001 csv
#> 526 Book filename_001.csv filename 001 csv
#> 527 Book filename_001.csv filename 001 csv
#> 528 Book filename_001.csv filename 001 csv
#> 529 Book filename_001.csv filename 001 csv
#> 530 Book filename_001.csv filename 001 csv
#> 531 Book filename_001.csv filename 001 csv
#> 532 Book filename_001.csv filename 001 csv
#> 533 ReferenceWork filename_001.csv filename 001 csv
#> 534 Book filename_001.csv filename 001 csv
#> 535 Book filename_001.csv filename 001 csv
#> 536 Book filename_001.csv filename 001 csv
#> 537 Book filename_001.csv filename 001 csv
#> 538 Book filename_001.csv filename 001 csv
#> 539 Book filename_001.csv filename 001 csv
#> 540 Book filename_001.csv filename 001 csv
#> 541 Book filename_001.csv filename 001 csv
#> 542 Book filename_001.csv filename 001 csv
#> 543 Book filename_001.csv filename 001 csv
#> 544 Book filename_001.csv filename 001 csv
#> 545 Book filename_001.csv filename 001 csv
#> 546 Book filename_001.csv filename 001 csv
#> 547 Book filename_001.csv filename 001 csv
#> 548 Book filename_001.csv filename 001 csv
#> 549 Book filename_001.csv filename 001 csv
#> 550 Book filename_001.csv filename 001 csv
#> 551 Book filename_002.csv filename 002 csv
#> 552 Book filename_002.csv filename 002 csv
#> 553 Book filename_002.csv filename 002 csv
#> 554 Book filename_002.csv filename 002 csv
#> 555 Book filename_002.csv filename 002 csv
#> 556 Book filename_002.csv filename 002 csv
#> 557 Book filename_002.csv filename 002 csv
#> 558 Book filename_002.csv filename 002 csv
#> 559 Book filename_002.csv filename 002 csv
#> 560 Book filename_002.csv filename 002 csv
#> 561 Book filename_002.csv filename 002 csv
#> 562 Book filename_002.csv filename 002 csv
#> 563 Book filename_002.csv filename 002 csv
#> 564 Book filename_002.csv filename 002 csv
#> 565 Book filename_002.csv filename 002 csv
#> 566 Book filename_002.csv filename 002 csv
#> 567 Book filename_002.csv filename 002 csv
#> 568 Book filename_002.csv filename 002 csv
#> 569 Book filename_002.csv filename 002 csv
#> 570 Book filename_002.csv filename 002 csv
#> 571 Book filename_002.csv filename 002 csv
#> 572 Book filename_002.csv filename 002 csv
#> 573 Book filename_002.csv filename 002 csv
#> 574 Book filename_002.csv filename 002 csv
#> 575 Book filename_002.csv filename 002 csv
#> 576 Book filename_002.csv filename 002 csv
#> 577 Book filename_002.csv filename 002 csv
#> 578 Book filename_002.csv filename 002 csv
#> 579 Book filename_002.csv filename 002 csv
#> 580 Book filename_002.csv filename 002 csv
#> 581 Book filename_002.csv filename 002 csv
#> 582 Book filename_002.csv filename 002 csv
#> 583 Book filename_002.csv filename 002 csv
#> 584 Book filename_002.csv filename 002 csv
#> 585 Book filename_002.csv filename 002 csv
#> 586 Book filename_002.csv filename 002 csv
#> 587 Book filename_002.csv filename 002 csv
#> 588 Book filename_002.csv filename 002 csv
#> 589 Book filename_002.csv filename 002 csv
#> 590 Book filename_002.csv filename 002 csv
#> 591 Book filename_002.csv filename 002 csv
#> 592 Book filename_002.csv filename 002 csv
#> 593 Book filename_002.csv filename 002 csv
#> 594 Book filename_002.csv filename 002 csv
#> 595 Book filename_002.csv filename 002 csv
#> 596 Book filename_002.csv filename 002 csv
#> 597 Book filename_002.csv filename 002 csv
#> 598 Book filename_002.csv filename 002 csv
#> 599 Book filename_002.csv filename 002 csv
#> 600 Book filename_002.csv filename 002 csv
#> 601 Book filename_002.csv filename 002 csv
#> 602 Book filename_002.csv filename 002 csv
#> 603 Book filename_002.csv filename 002 csv
#> 604 Book filename_002.csv filename 002 csv
#> 605 Book filename_002.csv filename 002 csv
#> 606 Book filename_002.csv filename 002 csv
#> 607 Book filename_002.csv filename 002 csv
#> 608 Book filename_002.csv filename 002 csv
#> 609 Book filename_002.csv filename 002 csv
#> 610 Book filename_002.csv filename 002 csv
#> 611 Book filename_002.csv filename 002 csv
#> 612 Book filename_002.csv filename 002 csv
#> 613 Book filename_002.csv filename 002 csv
#> 614 Book filename_002.csv filename 002 csv
#> 615 Book filename_002.csv filename 002 csv
#> 616 Book filename_002.csv filename 002 csv
#> 617 Book filename_002.csv filename 002 csv
#> 618 Book filename_002.csv filename 002 csv
#> 619 Book filename_002.csv filename 002 csv
#> 620 Book filename_002.csv filename 002 csv
#> 621 Book filename_002.csv filename 002 csv
#> 622 Book filename_002.csv filename 002 csv
#> 623 Book filename_002.csv filename 002 csv
#> 624 Book filename_002.csv filename 002 csv
#> 625 Book filename_002.csv filename 002 csv
#> 626 Book filename_002.csv filename 002 csv
#> 627 Book filename_002.csv filename 002 csv
#> 628 Book filename_002.csv filename 002 csv
#> 629 Book filename_002.csv filename 002 csv
#> 630 Book filename_002.csv filename 002 csv
#> 631 Book filename_002.csv filename 002 csv
#> 632 Book filename_002.csv filename 002 csv
#> 633 Book filename_002.csv filename 002 csv
#> 634 Book filename_002.csv filename 002 csv
#> 635 Book filename_002.csv filename 002 csv
#> 636 Book filename_002.csv filename 002 csv
#> 637 Book filename_002.csv filename 002 csv
#> 638 Book filename_002.csv filename 002 csv
#> 639 Book filename_002.csv filename 002 csv
#> 640 Book filename_002.csv filename 002 csv
#> 641 Book filename_002.csv filename 002 csv
#> 642 Book filename_002.csv filename 002 csv
#> 643 Book filename_002.csv filename 002 csv
#> 644 Book filename_002.csv filename 002 csv
#> 645 Book filename_002.csv filename 002 csv
#> 646 Book filename_002.csv filename 002 csv
#> 647 Book filename_002.csv filename 002 csv
#> 648 Book filename_002.csv filename 002 csv
#> 649 Book filename_002.csv filename 002 csv
#> 650 Book filename_002.csv filename 002 csv
#> 651 Book filename_002.csv filename 002 csv
#> 652 Book filename_002.csv filename 002 csv
#> 653 Book filename_002.csv filename 002 csv
#> 654 Book filename_002.csv filename 002 csv
#> 655 Book filename_002.csv filename 002 csv
#> 656 Book filename_002.csv filename 002 csv
#> 657 Book filename_002.csv filename 002 csv
#> 658 Book filename_002.csv filename 002 csv
#> 659 Book filename_002.csv filename 002 csv
#> 660 Book filename_002.csv filename 002 csv
#> 661 Book filename_002.csv filename 002 csv
#> 662 Book filename_002.csv filename 002 csv
#> 663 Book filename_002.csv filename 002 csv
#> 664 Book filename_002.csv filename 002 csv
#> 665 Book filename_002.csv filename 002 csv
#> 666 Book filename_002.csv filename 002 csv
#> 667 Book filename_002.csv filename 002 csv
#> 668 Book filename_002.csv filename 002 csv
#> 669 Book filename_002.csv filename 002 csv
#> 670 Book filename_002.csv filename 002 csv
#> 671 Book filename_002.csv filename 002 csv
#> 672 Book filename_002.csv filename 002 csv
#> 673 Book filename_002.csv filename 002 csv
#> 674 Book filename_002.csv filename 002 csv
#> 675 Book filename_002.csv filename 002 csv
#> 676 Book filename_002.csv filename 002 csv
#> 677 Book filename_002.csv filename 002 csv
#> 678 Book filename_002.csv filename 002 csv
#> 679 Book filename_002.csv filename 002 csv
#> 680 Book filename_002.csv filename 002 csv
#> 681 Book filename_002.csv filename 002 csv
#> 682 Book filename_002.csv filename 002 csv
#> 683 Book filename_002.csv filename 002 csv
#> 684 Book filename_002.csv filename 002 csv
#> 685 Book filename_002.csv filename 002 csv
#> 686 Book filename_002.csv filename 002 csv
#> 687 Book filename_002.csv filename 002 csv
#> 688 Book filename_002.csv filename 002 csv
#> 689 Book filename_002.csv filename 002 csv
#> 690 Book filename_002.csv filename 002 csv
#> 691 Book filename_002.csv filename 002 csv
#> 692 Book filename_002.csv filename 002 csv
#> 693 Book filename_002.csv filename 002 csv
#> 694 Book filename_002.csv filename 002 csv
#> 695 Book filename_002.csv filename 002 csv
#> 696 Book filename_002.csv filename 002 csv
#> 697 Book filename_002.csv filename 002 csv
#> 698 Book filename_002.csv filename 002 csv
#> 699 Book filename_002.csv filename 002 csv
#> 700 Book filename_002.csv filename 002 csv
#> 701 Book filename_002.csv filename 002 csv
#> 702 Book filename_002.csv filename 002 csv
#> 703 Book filename_002.csv filename 002 csv
#> 704 Book filename_002.csv filename 002 csv
#> 705 Book filename_002.csv filename 002 csv
#> 706 Book filename_002.csv filename 002 csv
#> 707 Book filename_002.csv filename 002 csv
#> 708 Book filename_002.csv filename 002 csv
#> 709 Book filename_002.csv filename 002 csv
#> 710 Book filename_002.csv filename 002 csv
#> 711 Book filename_002.csv filename 002 csv
#> 712 Book filename_002.csv filename 002 csv
#> 713 Book filename_002.csv filename 002 csv
#> 714 Book filename_002.csv filename 002 csv
#> 715 Book filename_002.csv filename 002 csv
#> 716 Book filename_002.csv filename 002 csv
#> 717 Book filename_002.csv filename 002 csv
#> 718 Book filename_002.csv filename 002 csv
#> 719 Book filename_002.csv filename 002 csv
#> 720 Book filename_002.csv filename 002 csv
#> 721 Book filename_002.csv filename 002 csv
#> 722 Book filename_002.csv filename 002 csv
#> 723 Book filename_002.csv filename 002 csv
#> 724 Book filename_002.csv filename 002 csv
#> 725 Book filename_002.csv filename 002 csv
#> 726 Book filename_002.csv filename 002 csv
#> 727 Book filename_002.csv filename 002 csv
#> 728 Book filename_002.csv filename 002 csv
#> 729 Book filename_002.csv filename 002 csv
#> 730 Book filename_002.csv filename 002 csv
#> 731 Book filename_002.csv filename 002 csv
#> 732 Book filename_002.csv filename 002 csv
#> 733 Book filename_002.csv filename 002 csv
#> 734 Book filename_002.csv filename 002 csv
#> 735 Book filename_002.csv filename 002 csv
#> 736 Book filename_002.csv filename 002 csv
#> 737 Book filename_002.csv filename 002 csv
#> 738 Book filename_002.csv filename 002 csv
#> 739 Book filename_002.csv filename 002 csv
#> 740 Book filename_002.csv filename 002 csv
#> 741 Book filename_002.csv filename 002 csv
#> 742 Book filename_002.csv filename 002 csv
#> 743 Book filename_002.csv filename 002 csv
#> 744 Book filename_002.csv filename 002 csv
#> 745 Book filename_002.csv filename 002 csv
#> 746 Book filename_002.csv filename 002 csv
#> 747 Book filename_002.csv filename 002 csv
#> 748 Book filename_002.csv filename 002 csv
#> 749 Book filename_002.csv filename 002 csv
#> 750 Book filename_002.csv filename 002 csv
#> 751 Book filename_002.csv filename 002 csv
#> 752 Book filename_002.csv filename 002 csv
#> 753 Book filename_002.csv filename 002 csv
#> 754 Book filename_002.csv filename 002 csv
#> 755 Book filename_002.csv filename 002 csv
#> 756 Book filename_002.csv filename 002 csv
#> 757 Book filename_002.csv filename 002 csv
#> 758 Book filename_002.csv filename 002 csv
#> 759 Book filename_002.csv filename 002 csv
#> 760 Book filename_002.csv filename 002 csv
#> 761 Book filename_002.csv filename 002 csv
#> 762 Book filename_002.csv filename 002 csv
#> 763 Book filename_002.csv filename 002 csv
#> 764 Book filename_002.csv filename 002 csv
#> 765 Book filename_002.csv filename 002 csv
#> 766 Book filename_002.csv filename 002 csv
#> 767 Book filename_002.csv filename 002 csv
#> 768 Book filename_002.csv filename 002 csv
#> 769 Book filename_002.csv filename 002 csv
#> 770 Book filename_002.csv filename 002 csv
#> 771 Book filename_002.csv filename 002 csv
#> 772 Book filename_002.csv filename 002 csv
#> 773 Book filename_002.csv filename 002 csv
#> 774 Book filename_002.csv filename 002 csv
#> 775 Book filename_002.csv filename 002 csv
#> 776 Book filename_002.csv filename 002 csv
#> 777 Book filename_002.csv filename 002 csv
#> 778 Book filename_002.csv filename 002 csv
#> 779 Book filename_002.csv filename 002 csv
#> 780 Book filename_002.csv filename 002 csv
#> 781 Book filename_002.csv filename 002 csv
#> 782 Book filename_002.csv filename 002 csv
#> 783 Book filename_002.csv filename 002 csv
#> 784 Book filename_002.csv filename 002 csv
#> 785 Book filename_002.csv filename 002 csv
#> 786 Book filename_002.csv filename 002 csv
#> 787 Book filename_002.csv filename 002 csv
#> 788 Book filename_002.csv filename 002 csv
#> 789 Book filename_002.csv filename 002 csv
#> 790 Book filename_002.csv filename 002 csv
#> 791 Book filename_002.csv filename 002 csv
#> 792 Book filename_002.csv filename 002 csv
#> 793 Book filename_002.csv filename 002 csv
#> 794 Book filename_002.csv filename 002 csv
#> 795 Book filename_002.csv filename 002 csv
#> 796 Book filename_002.csv filename 002 csv
#> 797 Book filename_002.csv filename 002 csv
#> 798 Book filename_002.csv filename 002 csv
#> 799 Book filename_002.csv filename 002 csv
#> 800 Book filename_002.csv filename 002 csv
#> 801 Book filename_002.csv filename 002 csv
#> 802 Book filename_002.csv filename 002 csv
#> 803 Book filename_002.csv filename 002 csv
#> 804 Book filename_002.csv filename 002 csv
#> 805 Book filename_002.csv filename 002 csv
#> 806 Book filename_002.csv filename 002 csv
#> 807 Book filename_002.csv filename 002 csv
#> 808 Book filename_002.csv filename 002 csv
#> 809 Book filename_002.csv filename 002 csv
#> 810 Book filename_002.csv filename 002 csv
#> 811 Book filename_002.csv filename 002 csv
#> 812 Book filename_002.csv filename 002 csv
#> 813 Book filename_002.csv filename 002 csv
#> 814 Book filename_002.csv filename 002 csv
#> 815 Book filename_002.csv filename 002 csv
#> 816 Book filename_002.csv filename 002 csv
#> 817 Book filename_002.csv filename 002 csv
#> 818 Book filename_002.csv filename 002 csv
#> 819 Book filename_002.csv filename 002 csv
#> 820 Book filename_002.csv filename 002 csv
#> 821 Book filename_002.csv filename 002 csv
#> 822 Book filename_002.csv filename 002 csv
#> 823 Book filename_002.csv filename 002 csv
#> 824 Book filename_002.csv filename 002 csv
#> 825 Book filename_002.csv filename 002 csv
#> 826 Book filename_002.csv filename 002 csv
#> 827 Book filename_002.csv filename 002 csv
#> 828 Book filename_002.csv filename 002 csv
#> 829 Book filename_002.csv filename 002 csv
#> 830 ReferenceWork filename_002.csv filename 002 csv
#> 831 Book filename_002.csv filename 002 csv
#> 832 Book filename_002.csv filename 002 csv
#> 833 Book filename_002.csv filename 002 csv
#> 834 Book filename_002.csv filename 002 csv
#> 835 Book filename_002.csv filename 002 csv
#> 836 Book filename_002.csv filename 002 csv
#> 837 Book filename_002.csv filename 002 csv
#> 838 Book filename_002.csv filename 002 csv
#> 839 Book filename_002.csv filename 002 csv
#> 840 ReferenceWork filename_002.csv filename 002 csv
#> 841 Book filename_002.csv filename 002 csv
#> 842 Book filename_002.csv filename 002 csv
#> 843 Book filename_002.csv filename 002 csv
#> 844 Book filename_002.csv filename 002 csv
#> 845 Book filename_002.csv filename 002 csv
#> 846 Book filename_002.csv filename 002 csv
#> 847 Book filename_002.csv filename 002 csv
#> 848 Book filename_002.csv filename 002 csv
#> 849 Book filename_002.csv filename 002 csv
#> 850 Book filename_002.csv filename 002 csv
#> 851 Book filename_002.csv filename 002 csv
#> 852 Book filename_002.csv filename 002 csv
#> 853 Book filename_002.csv filename 002 csv
#> 854 Book filename_002.csv filename 002 csv
#> 855 Book filename_002.csv filename 002 csv
#> 856 Book filename_002.csv filename 002 csv
#> 857 Book filename_002.csv filename 002 csv
#> 858 Book filename_002.csv filename 002 csv
#> 859 Book filename_002.csv filename 002 csv
#> 860 Book filename_003.csv filename 003 csv
#> 861 Book filename_003.csv filename 003 csv
#> 862 Book filename_003.csv filename 003 csv
#> 863 Book filename_003.csv filename 003 csv
#> 864 Book filename_003.csv filename 003 csv
#> 865 Book filename_003.csv filename 003 csv
#> 866 Book filename_003.csv filename 003 csv
#> 867 Book filename_003.csv filename 003 csv
#> 868 Book filename_003.csv filename 003 csv
#> 869 Book filename_003.csv filename 003 csv
#> 870 Book filename_003.csv filename 003 csv
#> 871 Book filename_003.csv filename 003 csv
#> 872 Book filename_003.csv filename 003 csv
#> 873 Book filename_003.csv filename 003 csv
#> 874 Book filename_003.csv filename 003 csv
#> 875 Book filename_003.csv filename 003 csv
#> 876 Book filename_003.csv filename 003 csv
#> 877 Book filename_003.csv filename 003 csv
#> 878 Book filename_003.csv filename 003 csv
#> 879 Book filename_003.csv filename 003 csv
#> 880 Book filename_003.csv filename 003 csv
#> 881 Book filename_003.csv filename 003 csv
#> 882 Book filename_003.csv filename 003 csv
#> 883 Book filename_003.csv filename 003 csv
#> 884 Book filename_003.csv filename 003 csv
#> 885 Book filename_003.csv filename 003 csv
#> 886 Book filename_003.csv filename 003 csv
#> 887 Book filename_003.csv filename 003 csv
#> 888 Book filename_003.csv filename 003 csv
#> 889 Book filename_003.csv filename 003 csv
#> 890 Book filename_003.csv filename 003 csv
#> 891 Book filename_003.csv filename 003 csv
#> 892 Book filename_003.csv filename 003 csv
#> 893 Book filename_003.csv filename 003 csv
#> 894 Book filename_003.csv filename 003 csv
#> 895 Book filename_003.csv filename 003 csv
#> 896 Book filename_003.csv filename 003 csv
#> 897 Book filename_003.csv filename 003 csv
#> 898 Book filename_003.csv filename 003 csv
#> 899 Book filename_003.csv filename 003 csv
#> 900 Book filename_003.csv filename 003 csv
#> 901 Book filename_003.csv filename 003 csv
#> 902 Book filename_003.csv filename 003 csv
#> 903 Book filename_003.csv filename 003 csv
#> 904 Book filename_003.csv filename 003 csv
#> 905 Book filename_003.csv filename 003 csv
#> 906 Book filename_003.csv filename 003 csv
#> 907 Book filename_003.csv filename 003 csv
#> 908 Book filename_003.csv filename 003 csv
#> 909 Book filename_003.csv filename 003 csv
#> 910 Book filename_003.csv filename 003 csv
#> 911 Book filename_003.csv filename 003 csv
#> 912 Book filename_003.csv filename 003 csv
#> 913 Book filename_003.csv filename 003 csv
#> 914 Book filename_003.csv filename 003 csv
#> 915 Book filename_003.csv filename 003 csv
#> 916 Book filename_003.csv filename 003 csv
#> 917 Book filename_003.csv filename 003 csv
#> 918 Book filename_003.csv filename 003 csv
#> 919 Book filename_003.csv filename 003 csv
#> 920 Book filename_003.csv filename 003 csv
#> 921 Book filename_003.csv filename 003 csv
#> 922 Book filename_003.csv filename 003 csv
#> 923 Book filename_003.csv filename 003 csv
#> 924 Book filename_003.csv filename 003 csv
#> 925 Book filename_003.csv filename 003 csv
#> 926 Book filename_003.csv filename 003 csv
#> 927 Book filename_003.csv filename 003 csv
#> 928 Book filename_003.csv filename 003 csv
#> 929 Book filename_003.csv filename 003 csv
#> 930 Book filename_003.csv filename 003 csv
#> 931 Book filename_003.csv filename 003 csv
#> 932 Book filename_003.csv filename 003 csv
#> 933 Book filename_003.csv filename 003 csv
#> 934 Book filename_003.csv filename 003 csv
#> 935 Book filename_003.csv filename 003 csv
#> 936 Book filename_003.csv filename 003 csv
#> 937 Book filename_003.csv filename 003 csv
#> 938 Book filename_003.csv filename 003 csv
#> 939 Book filename_003.csv filename 003 csv
#> 940 Book filename_003.csv filename 003 csv
#> 941 Book filename_003.csv filename 003 csv
#> 942 Book filename_003.csv filename 003 csv
#> 943 Book filename_003.csv filename 003 csv
#> 944 Book filename_003.csv filename 003 csv
#> 945 Book filename_003.csv filename 003 csv
#> 946 Book filename_003.csv filename 003 csv
#> 947 Book filename_003.csv filename 003 csv
#> 948 Book filename_003.csv filename 003 csv
#> 949 Book filename_003.csv filename 003 csv
#> 950 Book filename_003.csv filename 003 csv
#> 951 Book filename_003.csv filename 003 csv
#> 952 Book filename_003.csv filename 003 csv
#> 953 Book filename_003.csv filename 003 csv
#> 954 Book filename_003.csv filename 003 csv
#> 955 Book filename_003.csv filename 003 csv
#> 956 Book filename_003.csv filename 003 csv
#> 957 Book filename_003.csv filename 003 csv
#> 958 Book filename_003.csv filename 003 csv
#> 959 Book filename_003.csv filename 003 csv
#> 960 Book filename_003.csv filename 003 csv
#> 961 Book filename_003.csv filename 003 csv
#> 962 Book filename_003.csv filename 003 csv
#> 963 Book filename_003.csv filename 003 csv
#> 964 Book filename_003.csv filename 003 csv
#> 965 Book filename_003.csv filename 003 csv
#> 966 Book filename_003.csv filename 003 csv
#> 967 Book filename_003.csv filename 003 csv
#> 968 Book filename_003.csv filename 003 csv
#> 969 Book filename_003.csv filename 003 csv
#> 970 Book filename_003.csv filename 003 csv
#> 971 Book filename_003.csv filename 003 csv
#> 972 Book filename_003.csv filename 003 csv
#> 973 Book filename_003.csv filename 003 csv
#> 974 Book filename_003.csv filename 003 csv
#> 975 Book filename_003.csv filename 003 csv
#> 976 Book filename_003.csv filename 003 csv
#> 977 Book filename_003.csv filename 003 csv
#> 978 Book filename_003.csv filename 003 csv
#> 979 Book filename_003.csv filename 003 csv
#> 980 Book filename_003.csv filename 003 csv
#> 981 Book filename_003.csv filename 003 csv
#> 982 Book filename_003.csv filename 003 csv
#> 983 Book filename_003.csv filename 003 csv
#> 984 Book filename_003.csv filename 003 csv
#> 985 Book filename_003.csv filename 003 csv
#> 986 Book filename_003.csv filename 003 csv
#> 987 Book filename_003.csv filename 003 csv
#> 988 Book filename_003.csv filename 003 csv
#> 989 Book filename_003.csv filename 003 csv
#> 990 Book filename_003.csv filename 003 csv
#> 991 Book filename_003.csv filename 003 csv
#> 992 Book filename_003.csv filename 003 csv
#> 993 Book filename_003.csv filename 003 csv
#> 994 Book filename_003.csv filename 003 csv
#> 995 Book filename_003.csv filename 003 csv
#> 996 Book filename_003.csv filename 003 csv
#> 997 Book filename_003.csv filename 003 csv
#> 998 Book filename_003.csv filename 003 csv
#> 999 Book filename_003.csv filename 003 csv
#> 1000 Book filename_003.csv filename 003 csv
#> 1001 Book filename_003.csv filename 003 csv
#> 1002 Book filename_003.csv filename 003 csv
#> 1003 Book filename_003.csv filename 003 csv
#> 1004 Book filename_003.csv filename 003 csv
#> 1005 Book filename_003.csv filename 003 csv
#> 1006 Book filename_003.csv filename 003 csv
#> 1007 Book filename_003.csv filename 003 csv
#> 1008 Book filename_003.csv filename 003 csv
#> 1009 Book filename_003.csv filename 003 csv
#> 1010 Book filename_003.csv filename 003 csv
#> 1011 Book filename_003.csv filename 003 csv
#> 1012 Book filename_003.csv filename 003 csv
#> 1013 Book filename_003.csv filename 003 csv
#> 1014 Book filename_003.csv filename 003 csv
#> 1015 Book filename_003.csv filename 003 csv
#> 1016 Book filename_003.csv filename 003 csv
#> 1017 Book filename_003.csv filename 003 csv
#> 1018 Book filename_003.csv filename 003 csv
#> 1019 Book filename_003.csv filename 003 csv
#> 1020 Book filename_003.csv filename 003 csv
#> 1021 Book filename_003.csv filename 003 csv
#> 1022 Book filename_003.csv filename 003 csv
#> 1023 Book filename_003.csv filename 003 csv
#> 1024 Book filename_003.csv filename 003 csv
#> 1025 Book filename_003.csv filename 003 csv
#> 1026 Book filename_003.csv filename 003 csv
#> 1027 Book filename_003.csv filename 003 csv
#> 1028 Book filename_003.csv filename 003 csv
#> 1029 Book filename_003.csv filename 003 csv
#> 1030 Book filename_003.csv filename 003 csv
#> 1031 Book filename_003.csv filename 003 csv
#> 1032 Book filename_003.csv filename 003 csv
#> 1033 Book filename_003.csv filename 003 csv
#> 1034 Book filename_003.csv filename 003 csv
#> 1035 Book filename_003.csv filename 003 csv
#> 1036 Book filename_003.csv filename 003 csv
#> 1037 Book filename_003.csv filename 003 csv
#> 1038 Book filename_003.csv filename 003 csv
#> 1039 Book filename_003.csv filename 003 csv
#> 1040 Book filename_003.csv filename 003 csv
#> 1041 Book filename_003.csv filename 003 csv
#> 1042 Book filename_003.csv filename 003 csv
#> 1043 Book filename_003.csv filename 003 csv
#> 1044 Book filename_003.csv filename 003 csv
#> 1045 Book filename_003.csv filename 003 csv
#> 1046 Book filename_003.csv filename 003 csv
#> 1047 Book filename_003.csv filename 003 csv
#> 1048 Book filename_003.csv filename 003 csv
#> 1049 Book filename_003.csv filename 003 csv
#> 1050 Book filename_003.csv filename 003 csv
#> 1051 Book filename_003.csv filename 003 csv
#> 1052 Book filename_003.csv filename 003 csv
#> 1053 Book filename_003.csv filename 003 csv
#> 1054 Book filename_003.csv filename 003 csv
#> 1055 Book filename_003.csv filename 003 csv
#> 1056 Book filename_003.csv filename 003 csv
#> 1057 Book filename_003.csv filename 003 csv
#> 1058 Book filename_003.csv filename 003 csv
#> 1059 Book filename_003.csv filename 003 csv
#> 1060 Book filename_003.csv filename 003 csv
#> 1061 Book filename_003.csv filename 003 csv
#> 1062 Book filename_003.csv filename 003 csv
#> 1063 Book filename_003.csv filename 003 csv
#> 1064 Book filename_003.csv filename 003 csv
#> 1065 Book filename_003.csv filename 003 csv
#> 1066 Book filename_003.csv filename 003 csv
#> 1067 Book filename_003.csv filename 003 csv
#> 1068 Book filename_003.csv filename 003 csv
#> 1069 Book filename_003.csv filename 003 csv
#> 1070 Book filename_003.csv filename 003 csv
#> 1071 Book filename_003.csv filename 003 csv
#> 1072 Book filename_003.csv filename 003 csv
#> 1073 Book filename_003.csv filename 003 csv
#> 1074 Book filename_003.csv filename 003 csv
#> 1075 Book filename_003.csv filename 003 csv
#> 1076 ReferenceWork filename_003.csv filename 003 csv
#> 1077 Book filename_003.csv filename 003 csv
#> 1078 Book filename_003.csv filename 003 csv
#> 1079 Book filename_003.csv filename 003 csv
#> 1080 Book filename_003.csv filename 003 csv
#> 1081 Book filename_003.csv filename 003 csv
#> 1082 Book filename_003.csv filename 003 csv
#> 1083 Book filename_003.csv filename 003 csv
#> 1084 Book filename_003.csv filename 003 csv
#> 1085 Book filename_003.csv filename 003 csv
#> 1086 Book filename_003.csv filename 003 csv
#> 1087 Book filename_003.csv filename 003 csv
#> 1088 Book filename_003.csv filename 003 csv
#> 1089 Book filename_003.csv filename 003 csv
#> 1090 Book filename_003.csv filename 003 csv
#> 1091 Book filename_003.csv filename 003 csv
#> 1092 Book filename_003.csv filename 003 csv
#> 1093 Book filename_003.csv filename 003 csv
#> 1094 Book filename_003.csv filename 003 csv
#> 1095 Book filename_003.csv filename 003 csv
#> 1096 Book filename_003.csv filename 003 csv
#> 1097 Book filename_003.csv filename 003 csv
#> 1098 Book filename_003.csv filename 003 csv
#> 1099 Book filename_003.csv filename 003 csv
#> 1100 Book filename_003.csv filename 003 csv
#> 1101 Book filename_003.csv filename 003 csv
#> 1102 Book filename_003.csv filename 003 csv
#> 1103 Book filename_003.csv filename 003 csv
#> 1104 Book filename_003.csv filename 003 csv
#> 1105 Book filename_003.csv filename 003 csv
#> 1106 Book filename_003.csv filename 003 csv
#> 1107 Book filename_003.csv filename 003 csv
#> 1108 Book filename_003.csv filename 003 csv
util_clean_dir(
dir = tmp,
create_dir = FALSE
)