Skip to main content

Home/ foe_2013/ Group items tagged graphics

Rss Feed Group items tagged

Enrique Diaz Romero

An Introduction to R - 1 views

    • nerub val
       
      las carateristicas generales de R
    • nerub val
       
      El desarrollo de R
  • R is an integrated suite of software facilities for data manipulation, calculation and graphical display. Among other things it has an effective data handling and storage facility, a suite of operators for calculations on arrays, in particular matrices, a large, coherent, integrated collection of intermediate tools for data analysis, graphical facilities for data analysis and display either directly at the computer or on hardcopy, and a well developed, simple and effective programming language (called ‘S’) which includes conditionals, loops, user defined recursive functions and input and output facilities. (Indeed most of the system supplied functions are themselves written in the S language.)
    • Enrique Diaz Romero
       
      El entorno de R entre otras cosas nos permite el uso y almacenamiento eficaz de datos, así como su análisis en forma de matrices, un gran numero de herramientas graficas y un lenguaje claro y sencillo de programación en el que podemos encontrar un gran numero de funciones.
  • ...4 more annotations...
  • his section presumes the reader has some familiarity with statistical methodology, in particular with regression analysis and the analysis of variance. Later we make some rather more ambitious presumptions, namely that something is known about generalized linear models and nonlinear regression. The requirements for fitting statistical models are sufficiently well defined to make it possible to construct general tools that apply in a broad spectrum of problems. R provides an interlocking suite of facilities that make fitting statistical models very simple. As we mention in the introduction, the basic output is minimal, and one needs to ask for the details by calling extractor functions.
  • When you use the R program it issues a prompt when it expects input commands. The default prompt is ‘>’, which on UNIX might be the same as the shell prompt, and so it may appear that nothing is happening. However, as we shall see, it is easy to change to a different R prompt if you wish. We will assume that the UNIX shell prompt is ‘$’.
  • R can be regarded as an implementation of the S language which was developed at Bell Laboratories by Rick Becker, John Chambers and Allan Wilks, and also forms the basis of the S-Plus systems. The evolution of the S language is characterized by four books by John Chambers and coauthors. For R, the basic reference is The New S Language: A Programming Environment for Data Analysis and Graphics by Richard A. Becker, John M. Chambers and Allan R. Wilks. The new features of the 1991 release of S are covered in Statistical Models in S edited by John M. Chambers and Trevor J. Hastie. The formal methods and classes of the methods package are based on those described in Programming with Data by John M. Chambers. See References, for precise references. There are now a number of books which describe how to use R for data analysis and statistics, and documentation for S/S-Plus can typically be used with R, keeping the differences between the S implementations in mind. See What documentation exists for R?.
  • R (“GNU S”), a language and environment for statistical computing and graphics. R is similar to the award-winning1 S system, which was developed at Bell Laboratories by John Chambers et al. It provides a wide variety of statistical and graphical techniques
    • Enrique Diaz Romero
       
      ¿Que es R y de donde viene? R nos lo presentan como un lenguaje y entorno que desciende del reconocido sistema S desarrollado por los laboratorios Bell, y que nos ofrece una serie de técnicas u herramientas para el análisis estadístico y gráfico
  •  
    Introducción completa al lenguaje R de programación para análisis de datos estadísticos.
nerub val

R - GNU Project - Free Software Foundation (FSF) - 1 views

shared by nerub val on 24 Apr 13 - No Cached
  • R is a language and environment for statistical computing and graphics.
  • developed at Bell Laboratories
  • R provides an Open Source route to participation in that activity.
  • ...21 more annotations...
  • R provides a wide variety of statistical
  • and graphical techniques,
  • R is an integrated suite
  • of software facilities for data manipulation
  • storage facility,
  • operators for calculations on arrays,
  • collection of intermediate tools for data analysis,
  • graphical facilities
  • simple and effective programming language
  • is designed around a true computer languag
  • R, like S
  • allows users to add additional functionalit
  • defining new functions
    • nerub val
       
      r es un lenguaje creado por bell laboraties de codigo abierto
    • nerub val
       
      caracteristicas del lenguaje , facil almacenamiento, ayudas en operaciones y graficas, y efectivo
  • For computationally-intensive tasks, C, C++ and Fortran code can be linked and called at run time
    • nerub val
       
      compatible con c y c++
  • R can be found on http://cran.r-project.org, the master site of comprehensive R archive network, or at one of its mirrors.
    • nerub val
       
      enlace para descargarlo para linux, mac y windows
    • nerub val
       
      y algunos recursos adicionales
  • with an FAQ list, and an introduction to the language and how to use R for doing statistical analysis and graphics in PDF and other formats.
    • nerub val
       
      tutorial de como usar r asi como diversos posibles problemas con el y su istalacion y soluciones
LaRuPu upv

Statistical Computing with R: A tutorial - 0 views

  • R is a software package especially suitable for data analysis and graphical representation
  • is not particularly efficient in handling large data sets
  • Students can quickly grasp the role of outliers and influential points in a simple linear regression
    • LuCla EdPa
       
      No es eficiente manejando bases de datos grandes
  • ...9 more annotations...
  • R can be used as an ordinary calculator
    • LuCla EdPa
       
      Fácil manejo, se puede interactuar con expresiones simples
  • > 2 + 3 * 5      # Note the order of operations. > log (10)       # Natural logarithm with base e=2.718282 > 4^2            # 4 raised to the second power > 3/2            # Division > sqrt (16)      # Square root > abs (3-7)      # Absolute value of 3-7 > pi             # The mysterious number > exp(2)         # exponential function > 15 %/% 4       # This is the integer divide operation > # This is a comment line
    • LuCla EdPa
       
      Al igual que Matlab, puede usarse como una potente calculadora
  • x<- log(2.843432) *pi
    • LuCla EdPa
       
      Ejemplos
  • R can handle complex numbers, too.
    • LuCla EdPa
       
      Para fijar valores a variables, usamos '
  • Important note: since there are many built-in functions in R, make sure that the new object names you assign are not already used by the system. A simple way of checking this is to type in the name you want to use. If the system returns an error message telling you that such object is not found, it is safe to use the name. For example, c (for concatenate) is a built-in function used to combine elements so NEVER assign an object to c!
    • LuCla EdPa
       
      También admite el uso de números complejos
  • Character vector:
    • LuCla EdPa
       
      Al igual que en los lenguajes de programación no puedes poner una variable con nombre de función, en R no puedes asignar una variable con nombre de objeto
  • Note that m1*m2 is NOT the usual matrix multiplication. To do the matrix multiplication, you should use %*% operator instead
    • LuCla EdPa
       
      Vectores de caracteres
  • 2.4 Finding roots: a simple example
    • LuCla EdPa
       
      Para multiplicar matrices, usamos %*%
  • R is a software package especially suitable for data analysis and graphical representation. Functions and results of analysis are all stored as objects, allowing easy function modification and model building. R provides the language, tool, and environment in one convenient package. It is very flexible and highly customizable. Excellent graphical tools make R an ideal environment for EDA (Exploratory Data Analysis). Since most high level functions are written in R language itself, you can learn the language by studying the function code.
    • LuCla EdPa
       
      La información que ya hemos adquirido es suficiente para tener una idea del funcionamiento de R, omitimos el resto
  •  
    Ejemplos gráficos y explicación matemática de lo que es capaz de hacer R
  •  
    uso de R para crear estadisticas y graficos en este caso en la industria del automovil.
Raúl Sarrión

R Language Definition - 1 views

  • R is a system for statistical computation and graphics. It provides, among other things, a programming language, high level graphics, interfaces to other languages and debugging facilities.
  • The R language is a dialect of S which was designed in the 1980s
  • Its principal designer,
  • ...11 more annotations...
  • was awarded the 1998 ACM Software Systems Award for S.
  • The language syntax has a superficial similarity with C, but the semantics are
  • variety with stronger affinities with Lisp and APL.
  • It is possible to get quite far using R interactively, executing simple expressions from the command line.
  • Some users may never need to go beyond that level
  • The design of the language contains a number of fine points and common pitfalls which may surprise the user.
  • In some cases, there are multiple ways of performing a task, but some of the techniques will rely on the language implementation, and others work at a higher level of abstraction. In such cases we shall indicate the preferred usage.
  • R does not provide direct access to the computer's memory but rather provides a number of specialized data structures we will refer to as objects.
  • In R, however, the symbols are themselves objects and can be manipulated in the same way as any other object. This is different from many other languages and has wide ranging effects.
  • This is an introduction to the R language, explaining evaluation, parsing, object oriented programming, computing on the language, and so forth.
    • Raúl Sarrión
       
      En esta pagina se entiende el lenguaje R como un dialecto de S. Este lenguaje R sirve tanto para programacion, como para crear graficas de alto nivel de dificultad... Tambien nos da una breve explicacion sobre algunos de los comandos usados para R tanto como parte de la gramatica del lenguaje mismo.
    • Raúl Sarrión
       
      hola
  •  
    Una explicación mas extensa sobre el lenguaje R
Sébastien Sanchez

R Is Hot: The New Global Statistics Language R - Revolution Analytics - 1 views

    • Borja Herrero
       
      R es lenguaje de programación utilizado para procesar grandes bases de datos, por ejemplo; predicción de analisis, sistemas de decisión.
    • Borja Herrero
       
      El lenguaje R se va convirtiendo en algo indispensable para una empresa y poco a poco se va extendiendo en el mercado, ya que innova y se desarrolla de forma continua, convrtiendose en una herramienta muy util.
    • Sébastien Sanchez
       
      Explicación del porqué la programación R se ha hecho tan popular y revolucionaria. Resumen de las propiedades más destacadas de R y de quien se aprovecha de sus beneficios únicos.
  • ...7 more annotations...
  • R is a full-fledged programming language with a radically different approach to processing large and complex datasets
  • R community develops and releases new software continuously
  • R also offers benefits to companies trying to reduce their software expenditures with enterprise software vendors such as SAS and SPSS.
  • R is especially useful for quickly and easily generating charts and graphics
  • R allows
  • to create high-quality charts and graphs
  • R allowed them to effectively communicate their analytic results in ways that were easily understood by non-technical audiences
anonymous

R - About - 2 views

    • Sébastien Sanchez
       
      Introducción al lenguaje y entorno de programación R. Características y posibilidades de manejo, cálculo y gráficos.
  • Windows and MacOS
  • R is available as Free Software
  • ...9 more annotations...
  • It compiles and runs on a wide variety of UNIX
  • a suite of operators for calculations on arrays, in particular matrices
  • It includes
  • an effective data handling and storage facility
  • R is a language and environment for statistical computing and graphics
  • a large, coherent, integrated collection of intermediate tools for data analysis
  • graphical facilities for data analysis and display either on-screen or on hardcopy, and
  • a well-developed, simple and effective programming language which includes conditionals, loops, user-defined recursive functions and input and output facilities
    • anonymous
       
      Caracteristicas del lenguaje R en las que destaca su facilidad para trabajar con gráficos y análisis de datos.
nerub val

R FAQ - 0 views

  • The “Comprehensive R Archive Network” (CRAN) is a collection of sites which carry identical material, consisting of the R distribution(s), the contributed extensions, documentation for R, and binaries
  • he CRAN master site at TU Wien, Austria, can be found at the URL http://cran.R-project.org/ Daily mirrors are available at URLs including
  • R is a system for statistical computation and graphics
  • ...27 more annotations...
  • s very similar in appearance to S, the underlying implementation and semantics are derived from Scheme
  • antics are derive
  • mantics are derived
  • It is possible for the user to interface to procedures written in the C, C++, or FORTRAN languages for efficiency.
  • R was initially written by Ross Ihaka and Robert Gentleman
  • Since mid-1997 there has been a core group (the “R Core Team”) who can modify the R source code archive. The group currently consists of Doug Bates, John Chambers, Peter Dalgaard, Robert Gentleman, Kurt Hornik, Stefano Iacus, Ross Ihaka, Friedrich Leisch, Thomas Lumley, Martin Maechler, Duncan Murdoch, Paul Murrell, Martyn Plummer, Brian Ripley, Duncan Temple Lang, Luke Tierney, and Simon Urbanek.
  • R is being developed for the Unix, Windows and Mac
    • nerub val
       
      funciona en mac windows y unix
    • nerub val
       
      creadores del lenguaje c
    • nerub val
       
      colaboradores en el desarrollo asta 1997
  • Sources, binaries and documentation for R can be obtained via CRAN, the “Comprehensive R Archive Network” (see What is CRAN?)
  • How can R be installed (Macintosh) Next: How can R be installed (Windows), Previous: How can R be installed?, Up: How can R be installed?
    • nerub val
       
      como instalarlo en linux windows y mac
  • Printed copies of the R reference manual for some version(s) are available from Network Theory Ltd, at http://www.network-theory.co.uk/R/base/. For each set of manuals sold, the publisher donates USD 10 to the R Foundation (see What is the R Foundation?).
    • nerub val
       
      manual de referencia de r
    • nerub val
       
      publicado en papel
  • The R distribution also comes with the following manuals. “An Introduction to R” (R-intro) includes information on data types, programming elements, statistical modeling and graphics. This document is based on the “Notes on S-Plus” by Bill Venables and David Smith. “Writing R Extensions” (R-exts) currently describes the process of creating R add-on packages, writing R documentation, R's system and foreign language interfaces, and the R API. “R Data Import/Export” (R-data) is a guide to importing and exporting data to and from R. “The R Language Definition” (R-lang), a first version of the “Kernighan & Ritchie of R”, explains evaluation, parsing, object oriented programming, computing on the language, and so forth. “R Installation and Administration” (R-admin).
    • nerub val
       
      servidores desde conde descargar diferentes paquetes de r
  • It is the opinion of the R Core Team that one can use R for commercial purposes (e.g., in business or in consulting). The GPL, like all Open Source licenses, permits all and any use of the package. It only restricts distribution of R or of other programs containing code from R. This is made clear in clause 6 (“No Discrimination Against Fields of Endeavor”) of the Open Source Definition:
    • nerub val
       
      r es de libre uso, solo esta restringida su distrubucion.
  • The name is partly based on the (first) names of the first two R authors (Robert Gentleman and Ross Ihaka),
    • nerub val
       
      razon del nombre
  • 3.3.1 Lexical scoping
    • nerub val
       
      a partir de aqui hay especificaciones tecnicas del lexico de r
  • Web Interfaces
    • nerub val
       
      proyectos relacionados con r
  • 5.1 Which add-on packages exist for R?
    • nerub val
       
      a partir de aqui estan muchos de los paquetes y que contienen para r.
David Moya

José Luis Cárcel - 0 views

    • David Moya
       
      El lenguaje R es capaz de trabajar con archivos de texto y binarios. Además posee conectividad con bases de datos como son MySQL y Oracle.
    • David Moya
       
      R es capaz de trabajar con funciones definidas por el usuario y funciones recursivas. Además hace uso de estructuras de control y trabaja con vectores, matrices, escalares o listas.
    • David Moya
       
      Además también podemos hacer uso de operadores relacionales y lógicos, y podemos integrar archivos o complementos en otros lenguajes de programación como son C o JAVA.
  • ...22 more annotations...
    • David Moya
       
      En R podemos hacer uso de un compilador, entorno gráfico, una librería de métodos y objetos, y de un apartado de estadísticas.
  • text files (r/w)
  • text files (r/w)
  • binary files (r/w)
  • MySQL
  • Oracle
  • user defined functions
  • recursive functions
  • conditional execution: if conditional execution with alternative: if else looping: for, while, repeat
  • Arrays
  • Vectors
  • Matrices
  • Lists
  • factors
  • Equal to / not equal to <, >, <=, >=
  • graphics - R functions for base graphics.
  • is missing logical AND, OR and NOT
  • Web services *
  • compiler - R byte code compiler (added in R 2.13.0).
  • C JAVA
  • methods - Formally defined methods and classes for R objects, plus other programming tools, as described in the Green Book.
  • stats - R statistical functions.
grupo empresa

R programming - R language - R commander | R statistics - 0 views

    • grupo empresa
       
      el lenguaje de programación R, es un lenguaje con el los elementos gráficos y los algoritmos se relacionan perfectamente, esto hace que sea un lenguaje bastante intuitivo y muy útil a nivel práctico.
  • The R programming language is a populair and easy to use programming langauge used on combination with R commander. R provides a lot of statistical and graphical functions and it is highly extensible. The best thing about R is that it is easy to plot high quality graphics.
Juanjo Cristian

R, the Software, Finds Fans in Data Analysts - NYTimes.com - 0 views

  • R describe it  as a supercharged version of  Microsoft’s Excel
  • R describe it  as a supercharged version of Microsoft’s Excel
  • R describe it  as a supercharged version of Microsoft’s Excel
  • ...26 more annotations...
  • R describe it  as a supercharged version of  Microsoft’s Excel
  • R describe it  as a supercharged version of
  • R describe it  as a supercharged version of  Microsoft’s Excel
  • R describe it  as a supercharged version of  Microsoft’s Excel
  • R describe it  as a supercharged version of  Microsoft’s Excel
  • is particularly useful because it contains a number of built-in mechanisms for organizing data, running calculations on the information and creating graphical representations of data sets.
  • familiar
  • familiar
  • It allows statisticians to do very intricate and complicated analyses without knowing the blood and guts of computing systems.”
  • It is also free.
  • R is an open-source program, and its popularity reflects a shift in the type of software used inside corporations
  • R is similar to other programming languages, like C, Java and Perl, in that it helps people perform a wide variety of computing tasks by giving them access to various commands.
  • R describe it  as a supercharged version of Microsoft’s Excel
  • Excel
  • Microsoft’s
  • version
  • supercharged
  • Some people familiar with R describe it
  • familiar
  • R first appeared in 1996, when the statistics professors Ross Ihaka and Robert Gentleman of the University of Auckland in New Zealand released the code as a free software package.
  • The popularity of R at universities could threaten SAS Institute, the privately held business software company that specializes in data analysis software. SAS, with more than $2 billion in annual revenue, has been the preferred tool of scholars and corporate managers.
  • Google, for example, taps R for help understanding trends in ad pricing and for illuminating patterns in the search data it collects.
  • Pfizer has created customized packages for R to let its scientists manipulate their own data during nonclinical drug studies rather than send the information off to a statistician.
  • Mr. Gentleman is applying R-based software, called Bioconductor, in work he is doing on computational biology at the Fred Hutchinson Cancer Research Center in Seattle.
    • Sébastien Sanchez
       
      Artículo en NYTimes que habla de la creciente implantación del lenguaje de programación R en el ámbito empresarial. Explica como cada vez más, grandes empresas como Google empiezan a emplear este lenguaje de programación para todo tipo de propósitos (investigación comercial, data mining…).
    • Juanjo Cristian
       
      El lenguaje de programación R ha cautivado a gran parte de los analistas de datos debido a su potencial en el ámbito de la estadística especialmente. También es usado por grandes empresas como Google o Bank of America y por estadistas y científicos.
  •  
    Se trata de un artículo del New York Times en el que describe la historia del lenguaje y diferentes empresas que lo utilizan y los usos que le dan, como Google y Pfizer.
Jorge Castro

An Introduction to R - 0 views

  • 1 Introduction and preliminaries
    • Pablo David
       
      Introducción y explicación del lenguaje R
  • 2 Simple manipulations; numbers and vectors
    • Pablo David
       
      Instrucciones para la programación en R
  • 5 Arrays and matrices
  • ...9 more annotations...
  • 5 Arrays and matrices
  • 10 Writing your own functions
    • Pablo David
       
      Crear funciones en lenguaje R
  • 11 Statistical models in R
    • Pablo David
       
      Modelos estadísticos en lenguaje R,
    • Jorge Castro
       
      Utilidades del lenguaje R
  • R is an integrated suite of software facilities for data manipulation, calculation and graphical display.
    • Jorge Castro
       
      Uso básico de números y vectores 
    • Jorge Castro
       
      Instrucciones para escribir tus propias funciones en R
  •  
    Esta página es un manual de todo lo relacionado con el lenguaje de programación R, desde los comandos más básicos hasta usos más complejos como la descomposición QR entre otros.
Joan Bono

R, the Software, Finds Fans in Data Analysts - NYTimes.com - 0 views

    • Joan Bono
       
      Interesante artículo a tener en cuenta
  • “R is really important to the point that it’s hard to overvalue
  • It allows statisticians to do very intricate and complicated analyses without knowing the blood and guts of computing systems.”
  • ...8 more annotations...
  • It is also free.
  • R is similar to other programming languages, like C, Java and Perl,
  • R is particularly useful because it contains a number of built-in mechanisms for organizing data, running calculations on the information and creating graphical representations of data sets
  • What makes R so useful
  • is that statisticians, engineers and scientists can improve the software’s code or write variations for specific tasks
  • “The great beauty of R is that you can modify it to do all sorts of things
  • “And you have a lot of prepackaged stuff that’s already available,
  • R first appeared in 1996,
Sébastien Sanchez

R, the Software, Finds Fans in Data Analysts - NYTimes.com - 0 views

  • While it is difficult to calculate exactly how many people use R, those most familiar with the software estimate that close to 250,000 people work with it regularly.
    • corozo56
       
      Actualmente el número de usuarios esta creciendo exponencialmente.
  • “R is a real demonstration of the power of collaboration, and I don’t think you could construct something like this any other way,” Mr. Ihaka said. “We could have chosen to be commercial, and we would have sold five copies of the software.”
  • Data Analysts Captivated by R’s Power
    • corozo56
       
      Este artículo del NYTimes explica el origen y la utilidad del lenguaje de programacion en R.
  • ...12 more annotations...
    • Sébastien Sanchez
       
      Artículo en NYTimes que habla de la creciente implantación del lenguaje de programación R en el ámbito empresarial. Explica como cada vez más, grandes empresas como Google empiezan a emplear este lenguaje de programación para todo tipo de propósitos (investigación comercial, data mining…).
  • Open-source software is free for anyone to use and modify
  • an improve
  • R is similar to other programming languages
  • R is particularly useful because it contains a number of built-in mechanisms for organizing data, running calculations on the information and creating graphical representations of data sets.
  • For statisticians
  • R is also the name of a popular programming language used by a growing number of data analysts inside corporations and academia
  • statisticians, engineers and scientists can improve the software’s code or write variations for specific tasks
  • software’s
  • Packages written for R add advanced algorithms, colored and textured graphs and mining techniques to dig deeper into databases
  • While it is difficult to calculate exactly how many people use R, those most familiar with the software estimate that close to 250,000 people work with it regularly
  • “R is a real demonstration of the power of collaboration, and I don’t think you could construct something like this any other way,” Mr. Ihaka said. “We could have chosen to be commercial, and we would have sold five copies of the software.”
anonymous

Revolution Analytics Revolution R Enterprise Academic Version Download - 2 views

    • anonymous
       
      Se trata de un software de programación en R que ofrece a las empresas ventajas como la rapidez, fiabilidad, precisión en gráficos y disponibilidad en varios soportes.
  • The speed & reliability
  • Create reliable R applications faster.
  • ...3 more annotations...
  • has a graphic IDE that enables faster
  • Wide Platform Support
  • Parallel Processing Power
Fran Marijuana

R, the Software, Finds Fans in Data Analysts - NYTimes.com - 0 views

    • David Moya
       
      La primera aparición de R fue en el año 1996 en Nueva Zelanda y resulto ser un "software" de utilización libre.
    • David Moya
       
      Mucha gente que esta familiarizada con R comenta que es una herramienta mucho más potente que Excel.
    • David Moya
       
      Permite a la gente que trabaja en estadística hacer análisis muy complicados
  • ...10 more annotations...
  • it contains a number of built-in mechanisms for organizing data
  • running calculations on the information and creating graphical representations of data sets.
  • as a free software package.
  • Some people familiar with R describe it as a supercharged version of Microsoft’s Excel
  • R first appeared in 1996,
  • in New Zealand
  • It allows statisticians to do very intricate and complicated analyses without knowing the blood and guts of computing systems.”
    • Fran Marijuana
       
      Aunque R se parezca a otros lenguajes de programación (C, Java) para los estadísticos es mas útil organizativamente. 
    • Fran Marijuana
       
      Muchos usuarios comparan R con Microsoft Excel.
    • Fran Marijuana
       
      Aunque R tiene muchas mas opciones
    • Fran Marijuana
       
      John mr. Chambers ha ayudado a desarrollar S, otro proyecto de software que sin embargo, no es un código abierto.
nerub val

Rcmdr.com - 0 views

shared by nerub val on 24 Apr 13 - No Cached
  • R commander (Rcmdr)
  • R commander (Rcmdr)
  • R provides a powerful and comprehensive system for analysing data and when used in conjunction with the R-commander
  • ...5 more annotations...
  • it also provides one that is easy
  • The Rcmdr program enables analysts to access a selection of commonly-used R commands using a simple interface that should be familiar to most computer users
  • A number of plugins are available that provide direct access to R packages through the Rcmdr interface
  • There are currently 29 Plugins that provide support for specific analyses, graphics, books and teaching.
    • nerub val
       
      Aqui hay una lista de enlaces de plugins que proporcionan acceso directo a los paquetes de R a traves del interfaz Rcmdr
  •  
    Conjunto R-Commander
Alpha Teleco

A big list of the things R can do | (R news & tutorials) - 1 views

    • Alpha Teleco
       
      Listado de las diferentes funciones que R puede realizar
  • R is an incredibly comprehensive statistics package
  • R can do pretty much everything you need for data manipulation, visualization, and statistical analysis.
  • ...8 more annotations...
  • ANALYTICS
    • Alpha Teleco
       
      Simulación de procesos matemáticos y estadísticos
  • GRAPHICS AND VISUALIZATION
    • Alpha Teleco
       
      Realización de gráficos estadísticos
  • R APPLICATIONS and EXTENSIONS***
    • Alpha Teleco
       
      Aplicación de la estadística a la investigación
  • PROGRAMMING LANGUAGE FEATURES
    • Alpha Teleco
       
      Programación orientada a objetos
Alpha Teleco

Why R is Hard to Learn | (R news & tutorials) - 0 views

  • Misleading Function or Parameter Names (data=, sort, if)
  • The most difficult time people have learning R is when functions don’t do the “obvious” thing.
  • Nonstandard Output
  • ...9 more annotations...
  • Too Many Commands
  • Sloppy Control of Variables
  • Loop-a-phobia
  • Functions That Act Like Procedures
  • Naming and Renaming Variables is Way Too Complicated
  • Inability to Analyze Multiple Variables
  • Poor Ability to Select Variable Sets
  • Too Much Complexity
  • Lack of Graphical User Interface (GUI)
practica5 empresas

Quick-R: Home Page - 0 views

shared by practica5 empresas on 29 Apr 13 - Cached
    • practica5 empresas
       
      Es una buena pagina para aprender a programar en R estadisticas avanzadas
  • If you currently use another statistical package, why learn R? It's free! If you are a teacher or a student, the benefits are obvious. It runs on a variety of platforms including Windows, Unix and MacOS. It provides an unparalleled platform for programming new statistical methods in an easy and straightforward manner. It contains advanced statistical routines not yet available in other packages. It has state-of-the-art graphics capabilities.
LuCla EdPa

What is R? (Oracle R Enterprise) - 0 views

  • R has been receiving a lot of attention recently, although it’s been around for over 15 years. R is an open-source language and environment for statistical computing and data visualization, supporting data manipulation and transformations, as well as sophisticated graphical displays
    • LuCla EdPa
       
      R es un lenguaje de código abierto, que admite ser manipulado por la comunidad
  • Corporate data analysts and statisticians often know R and use it in their daily work, either writing their own R functionality,
    • LuCla EdPa
       
      Es usado por corporaciones y empresas
  • It’s a powerful, extensible environment, and as noted above, it has a wide range of statistics and data visualization capabilities. It’s easy to install and use, and it’s free
  • ...4 more annotations...
  • n contrast, statisticians and data analysts typically don’t know SQL and are not familiar with database tasks. R provides statisticians and data analysts access a wide range of analytical capabilities in a natural statistical language
  • However, there is another issue that limits R’s scalability…
  • R is limited by the memory and processing power of the machine where it runs
  • this chews up memory faster.
    • LuCla EdPa
       
      Pese a ser un potente programa, parece ser que no administra demasiado bien los recursos
1 - 20 of 26 Next ›
Showing 20 items per page