Displaying 20 results from an estimated 11000 matches similar to: "Show representation of a data structure"
2017 Oct 16
1
Download data from NASA for multiple locations - RCurl
I have done the following using readLines
directory <- "~/"
files <- list.files(directory)
data_frames <- vector("list", length(files))
for (i in seq_along(files)) {
df <- readLines(file.path(directory, files[i]))
df <- df[-(1:13)]
df <- data.frame(year = substr(df,1,4),
month = substr(df, 6,7),
day =
2009 Aug 26
1
Filtering matrices
I'm using the rcorr function from the Hmisc library to get pair-wise
correlations from a set of observations for a set of attributes. This
returns 3 matrices; one of correlations, one of the number of observations
seen for each pair and the final of the P values for each correlation seen.
>From these three matrices, all I wish to do is return a single matrix based
on the first correlation
2009 Sep 10
1
inline function in apply
I've been trying to filling in the missing variables in a matrix with the
mean from the column they are in. So the following code does this just fine.
#3X3 matrix where the middle number is missing.
data=matrix(c(1:4,NA,6:9), 3, 3)
#replace missing values in an vector with the mean of the vector
fill_in_NA<-function (x)
{
x[is.na(x)]<-sum(x[!is.na(x)])/length(x[!is.na(x)])
2009 Apr 19
1
drawing data structures
Hi,
I need to represent data structures in a figure.stuff like trees with nodes
and pointers etc.can someone guide me to a package that does this?
--
Rajesh.J
[[alternative HTML version deleted]]
2008 Oct 15
2
Lattice key title color
Dear R users,
is there a way to define the color of the title for the legend in
lattice?
The help page on xyplot has a lot of details on key options just as the
new book, but no mentioning of a color attribute for the title.
Should I use ltext or is there any other way?
Best wishes,
Erik
[[alternative HTML version deleted]]
2014 Jan 22
1
Meetme Show Activity in Minus
Hello All,
Asterisk: 1.8.13.0
Dahdi : 2.6.2
Kernel : 2.6.32-431.3.1.el6.i686 #1 SMP Fri Jan 3 18:53:30 UTC 2014 i686
i686 i386 GNU/Linux
OS : CentOS 6.4
When I show meetme room details using "meetme list" command it shows Minus
in activity column.
Any Idea.
>meetme list
Conf Num Parties Marked Activity Creation Locked
54682 0002 N/A
2010 May 27
2
Methods to explore R data structures
Hi,
I'm very confused about R structures and the methods to go with them. I'm
using R for microarray analysis with Bioconductors. Suppose without reading
the documentations, what's the best way to explore a data structure when you
know nothing about it?
I am currently using is() / class() to see what the object is. str() /
attributes() to probe inside the object, and
2008 Apr 27
1
parallel max, min, and median of dataframe columns
Hello, all,
I have a dataframe of three rows and umpteen columns. I want to show the
maximum, minimum, and median with a vertical line and a central dot (I'd
use a boxplot, but with only three data points, that's overkill; I can't
just use points, because of overlap and some of the other data plotted on
the graph).
This works:
> boxplot(data_frame,
2009 Apr 01
1
Obtaining average ranking from matrix of frequencies
I have a small matrix where the columns represents a ranking and the values
are the number of times each ranking was obtained eg
1 2 3
x 1 2 0
y 0 1 2
z 2 0 1
I'd like to be able to return an average of the ranking obtained
average
x 1.67
y 2.67
z 1.67
Whats the nicest way to do this? I'm new to the language and looking for an
elegant solution :)
Thanks
Ben
2005 Aug 16
1
predict nbinomial glm
Dear R-helpers,
let us assume, that I have the following dataset:
a <- rnbinom(200, 1, 0.5)
b <- (1:200)
c <- (30:229)
d <- rep(c("q", "r", "s", "t"), rep(50,4))
data_frame <- data.frame(a,b,c,d)
In a first step I run a glm.nb (full code is given at the end of this mail) and
want to predict my response variable a.
In a second step, I would
2008 Aug 13
1
need help with stat functions(like adaboost, random forests and glm)
Ok, so basically I have a dataframe named data_frame
data_frame contains:
startdate
startprice
endpricethreshold1
endpricethreshold2
endpricethreshold3
all of these endpricethresholds are true/false binary vectors. They are
true or false depending on whether the endprice was above or below whatever
the endpricethreshold is.
now I want to try to use lets say the general linear model to have
2006 Jan 24
1
No scientific notation in format
Hi
I have a data.frame with the following numbers (first column are month
numbers)
07,0,0,0,0.315444056314174,0,0,0,12.5827462764176,0.079194498691732,
0.0280828101707015,0,0.0695808222378877
08,0,0,105600,0.393061160316545,0,0,0,8.95551253153947,0.0880023174276553,
0.285714285714286,0,0.0669139911789158
09,0,0,0,0,12.5,0,0,13.5135887094281,0.0557531529154668,0,0,
0.0487526139182026
2010 Dec 13
2
Browsing through a dataframe page by page (like with shell command more)
Hello,
I'm looking for an easy way to display a data.frame (or other variables)
page by page, similarly to what is possible on a file using the more command
in a standard UNIX shell. Any help would be greatly appreciated.
Thanks
Alexandre
[[alternative HTML version deleted]]
2009 Dec 30
1
CDR_MYSQL 1.4 Database Structure
So I'm noticing from the docs/ on Asterisk Addons 1.4.10 that the
database structure for cdr_mysql is:
CREATE TABLE cdr (
calldate datetime NOT NULL default '0000-00-00 00:00:00',
clid varchar(80) NOT NULL default '',
src varchar(80) NOT NULL default '',
dst varchar(80) NOT NULL default '',
dcontext varchar(80) NOT NULL default '',
channel
2009 Dec 04
2
shorten str() output for long list
> x=split(1:1000,1:1000)
> str(x)
Although str() can suppress long output for vectors, but it can not
suppress long output for list. I'm wondering how to suppress the
output for long lists.
2008 Aug 12
2
ANOVA tables - storing F values
When I run a summary(anova) I get output for all of the elements (columns)
as these are multiple - single anova results. Can I store the F values? I
can't find the attribute of the fitted model attributes(fit) that stores
these F values, and for that matter, P values.
Thanks
--
Gareth Campbell
PhD Candidate
The University of Auckland
P +649 815 3670
M +6421 256 3511
E
2012 Aug 22
4
Is there a data/variable explorer in R?
Is there a data/variable explorer in R?
Hi all,
I am inspecting a complex variable which has lists inside lists...
Is there a data-explorer that can help me view the structure and content of
such variables?
Thank you!
[[alternative HTML version deleted]]
2012 Mar 31
2
Is it there any std pattern in R which show same representation style of ppt found on net
i m searching on net,material related to R,
whenever i get ppt presentation of some topic ,i found it in speical format
white backgroud & blue bars,having links for further topics
see link
1) https://www.rmetrics.org/files/Meielisalp2007/Presentations/Pfaff.pdf
2)http://grapevine.com.au/~yanchang/docs/Time-Series-Mining-slides.pdf
If this is format,how can i made it,if i want to give my R
1998 Jul 17
3
9GB Drives Show Up as 4GB
In NT Explorer, my 9GB usr shares show up as 4GB.
Any suggestions?
Doug Smith
2018 Sep 04
2
[PATCH] PCI: add prefetch quirk to work around Asus/Nvidia suspend issues
On Mon, Sep 3, 2018 at 8:12 PM, Mika Westerberg
<mika.westerberg at linux.intel.com> wrote:
> We have seen one similar issue with LPSS devices when BIOS assigns
> device BARs above 4G (which is not the case here) and it turned out to
> be misconfigured MTRR register or something like that. It may not be
> related at all but it could be worth a try to dump out MTRR registers of