Displaying 12 results from an estimated 12 matches for "ncount".
Did you mean:
count
2003 Sep 30
0
VB Code to convert BMP to LSS for splash screens
...nd Function
Sub convertBMPtoLSS()
Dim fileSystem
Dim myBmpHeader As bmpHeader
Dim myBmpPallete(256) As RGBColor4
Dim myBmpData() As Byte
Dim myLssHeader As lssHeader
Dim DebugStr As String
Dim filename As String
Dim iColor As Byte
Dim myByte As Byte
Dim nCount As Integer
Dim run As Integer
Dim erun As Byte
Dim current As Byte
Dim prev As Byte
Dim rowBuffer() As Byte
Dim dBitmapRow As String
Dim dBuffer As String
Dim dLSSRow As String
sourcefile = "I:\PXE Server\splash.bmp"
outputfile = "I:\...
2011 Dec 07
1
Help! I couldn't put multiple qplot on the same page...
...e each plot, in the correct location
for (i in 1:numPlots) {
curRow = ceiling(i/plotCols)
curCol = (i-1) %% plotCols + 1
print(plots[[i]], vp = vplayout(curRow, curCol ))
}
}
My code is as below:
----------------------------
myplotlist=vector('list', 6)
nCount=0;
for (j in myyears)
{
print(j)
nCount=nCount+1
#...
# prepare datasub and factorsub for different j...
#...
tmp<-data.frame(as.double(datasub),as.numeric(factorsub))
tt=qplot(factor(as.numeric(factorsub)),as.double(datasub),dat...
2011 Jul 20
2
Bootstrap
...)
xx <- read.table(textConnection(" y x
11 5.16
11 4.04
14 3.85
19 5.68
4 1.26
23 7.89
15 4.25
17 3.94
7 2.35
17 4.74
14 5.49
11 4.12
17 5.92"), header=TRUE)
data <- as.matrix(xx)
closeAllconnections()
Nt <- NULL
for (Ncount in 1:100)
{
y <- data[,1]
x <- data[,2]
n <- length(x)
X <- cbind(rep(1,n),x) #covariate/design matrix
obeta<- c(1,1) #previous/starting values of beta
nbeta <- c(0,0) #new beta
iter=0...
2002 Nov 04
0
[Bug 425] New: Integer overflow in mm_zalloc
...(on platforms where
size_t is larger than u_int). This patch should fix it, although
I can't test it:
--- openssh-3.5p1/monitor.c-orig Fri Sep 27 05:26:02 2002
+++ openssh-3.5p1/monitor.c Mon Nov 4 18:06:24 2002
@@ -1551,7 +1551,7 @@
void *
mm_zalloc(struct mm_master *mm, u_int ncount, u_int size)
{
- size_t len = size * ncount;
+ size_t len = (size_t) size * ncount;
void *address;
if (len == 0 || ncount > SIZE_T_MAX / size)
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2009 Aug 27
2
subset of a matrix
...o don't bother to correct it unless extremely necessary. I write down the code so you know exactly what I'm trying to do:
table <- vector()
for (i in (1:length(data))){
for (j in (1:length(data[[i]][1,]))){
t <- table(data[[i]][,j])
table <- c(table, t)
}}
ncount <- table[names(table) != "-"] #this line is necessary to eliminate "-" characters which should not be included in the analysis
sfs <- table (ncount)
And with this code I get something like:
1 2 3 4 5 6 7 8 9 10 ....
542 125 98 49 47 41 26 31 22...
2007 Aug 15
4
Possible to "import" histograms in R?
Hi,
I have a large amount of data that I would like to create a histogram of and
plot and do things with in R. It is pretty much impossible to read the data
into R, so I have written a program to bin the data and now have a list of
counts in each bin. Is it possible to somehow import this into R and use
hist(), so I can, for instance, plot the probability density? I have looked
at the help page
2000 Oct 06
4
R: plotting values on graphics
Everyone,
I have an array of integer values which are located on a uniform 2-D grid. I want to plot the integer values at the node locations. The closest I have come is with the following code:
for (i in 1:ny) {
for (j in 1:nx) {
ncell <- nx*(i - 1) + j
ch <- as.character(ncount[ncell])
tx <- j*dx - dx/2
ty <- ny*dy - (i-1)*dy - dy/2
points(tx, ty, pch = ch, col = "red", bg = "yellow", cex = 3)
}
}
The problem with the code above is I only get a one character symbol at each node (e.g. n=123 gives me 1 on the screen). Is there something w...
2012 Jul 06
3
Tables extraction in R ?
Hi,
I 'm a novice user of R statistics and my hands-on experience with it is
minimal.
I want to create a table for my MBA course assignment that looks like the
ones that SPSS and MS Excel produces ,the data that the table has to include
are the following :
> table(agec)
agec
1 2 3
749 160 32
> x=table(agec)
> x
agec
1 2 3
749 160 32
>
> prop.table(x)
agec
2008 Jul 08
4
Histogram with colors according to factor
Given a data frame with a continuous variable and a factor. I would like to
generate a histogram of the continuous variable, where each bar is filled
with different colors according to the percentage of factor values falling
into this region of the continuous variable.
I looked into packages like 'lattice' and 'ggplot2'. Searching R-help
revealed that 'histogram' is
2008 Jan 25
0
Wine release 0.9.54
...estInterfaceEx.
kernel32: Initialise the top 16-bit stack frame to zero.
widl: Write out code for initialising out-only client context handles.
riched20: The wParam parameter to WM_GETTEXT contains the number of characters, not the number of bytes.
riched20: Always treat the nCount variable in the EM_GETTEXTEX handler as a character count.
rpcrt4: Implement asynchronous RPC support.
rpcrt4: Move the receiving of an individual fragment to a separate function.
rpcrt4: Remove some unimplemented win9x-only spec entries.
rpcrt4: Don't set BufferStart an...
2011 Apr 29
0
Wine release 1.3.19
...rust: Mark internal symbols as hidden.
windowscodecs: Mark internal symbols as hidden.
Matteo Bruni (8):
wined3d: Add two functions for GL context activation/restore.
wined3d: Fallback to our private window when context activation fails otherwise.
d3dx9: Print a FIXME when encountering an unknown surface format.
d3dx9: Remove some redundant and compiler-unfriendly pixel format checking code.
wined3d: Add missing temporary variable declaration to ARB shader backend.
wined3d: Remove rcp special handling of 0 from the ARB shader backend.
wined3d: Split p...
2013 Oct 25
0
Wine release 1.7.5
...ons
17929 Crash when creating a DC
18465 url.dll FileProtocolHandler does not open URLs in browser.
22926 Main Steam window disappears when entering Expos?
24770 Bioshock not work
25327 Risen - No space between words in Risen
26900 GetTabbedTextExtent() returns non-zero value when nCount == 0
27168 chromium-based apps can't load https sites
27694 wine iexplore can't load hotmail.com (gives a blank page)
28946 Steam freezes
29365 Internet Explorer 8 fails to submit a URL to VirusTotal for analysis
29784 Spotify crashes on startup
30745 GOG.com version of So...