analysis

Analysis Services Only Windows Authentication

橙三吉。 提交于 2019-12-05 00:23:36
Is it true that Analysis Services ONLY supports windows authentication? Yes, it does. Quote from MSDN "SQL Server Analysis Services supports only Windows Authentication" You'll need active directory, Refer to the following kb on how to set it up http://support.microsoft.com/kb/917409 Actually needing "Active Directory" isn't really true. You can trick OS's by logging into your PC in any domain with the same User and Password as the account on the other server that's running SSAS. I do it all the time. By default you'll get access if the domains are different but the user/pass is exact.

Defining preprocessor symbols for CLion analyzer

我的未来我决定 提交于 2019-12-04 23:53:37
In my project there's a file enclosed in an ifdef preprocessor directive #ifdef SOME_SYMBOL ... entire file ... #endif SOME_SYMBOL is defined by another file that's compiled before this one, and the code works as expected, but the static analyzer isn't aware of this symbol and so it treats SOME_SYMBOL is undefined. The entire file has no syntax highlighting and some of the analysis is just skipped (e.g. syntax error highlighting). Is there a way to tell the analyzer to treat this symbol as defined without defining it in CMakeLists.txt? I don't have the option of defining SOME_SYMBOL in

Is there a Elasticsearch plugin similar to the Solr analysis tool?

坚强是说给别人听的谎言 提交于 2019-12-04 20:10:08
问题 Solr has the built-in "Analysis Screen", which helps to debug the interplay between tokenizers and filters for specific field types: Is there a plugin for ElasticSearch that does something similar? Specifically, I want to see the input/ output of each filter, not only the end result of the analysis chain. I used Google quite intensively on this, but didn't find anything. https://www.found.no/play/#analysis contains exactly the feature I want (scroll down to "myAnalyzer"), but unfortunately it

What is the difference between Work, Span and Time in parallel algorithm analysis?

让人想犯罪 __ 提交于 2019-12-04 15:13:54
When analysing parallel algorithms, we tend to focus Work(T1), Span(T∞) or time. What I'm confused about is that if I was given an algorithm to analyse, what key hints would I need to look for, for Work, span and time? Suppose this algorithm: How do I analyse the above algorithm to find the Work, Time and span? Origin: PRAM s have been introduced in early 70-ies last century, in a hope it may allow to jump ahead a performance in tackling computationally hard problems. Yet, the promises or better expectations were cooled down by principal limitations these computing-device architectures still

Any framework for real-time correlation/analysis of event-stream (aka CEP) in Erlang?

放肆的年华 提交于 2019-12-04 14:01:33
问题 Would like to analyze a stream of events, sharing certain characteristics (s.a. a common source), and within a given time-window, ultimately to correlate those multiple events and draw some inference from same, and finally launch some action. My limited knowledge of Complex-Event-Processing (CEP) tells me that, it is the ideal candidate for such things. However in my research so far I found people compare that with Rule-Engines, and Bayesian Classifier, and sometimes using a combination of

Elasticsearch custom analyzer for hyphens, underscores, and numbers

柔情痞子 提交于 2019-12-04 13:34:56
Admittedly, I'm not that well versed on the analysis part of ES. Here's the index layout: { "mappings": { "event": { "properties": { "ipaddress": { "type": "string" }, "hostname": { "type": "string", "analyzer": "my_analyzer", "fields": { "raw": { "type": "string", "index": "not_analyzed" } } } } } }, "settings": { "analysis": { "filter": { "my_filter": { "type": "word_delimiter", "preserve_original": true } }, "analyzer": { "my_analyzer": { "type": "custom", "tokenizer": "whitespace", "filter": ["lowercase", "my_filter"] } } } } } You can see that I've attempted to use a custom analyzer for

Utilise Surv object in ggplot or lattice

情到浓时终转凉″ 提交于 2019-12-04 13:06:47
问题 Anyone knows how to take advantage of ggplot or lattice in doing survival analysis? It would be nice to do a trellis or facet-like survival graphs. So in the end I played around and sort of found a solution for a Kaplan-Meier plot. I apologize for the messy code in taking the list elements into a dataframe, but I couldnt figure out another way. Note: It only works with two levels of strata. If anyone know how I can use x<-length(stratum) to do this please let me know (in Stata I could append

Compare multiplication and division [closed]

僤鯓⒐⒋嵵緔 提交于 2019-12-04 07:11:19
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 7 years ago . I want to know if there is any difference in speed between the following two methods #include<math.h> #include<iostream> using namespace std; int main() { float k=7; float b=4; cout<<(float)k/b<<" "<<endl; cout<<

Software to help in log analysis?

青春壹個敷衍的年華 提交于 2019-12-04 06:26:15
问题 Hey guys, I have a quick question. Does anyone know of any software that can help with understanding client-server logs? I have 3 huge logs of 1 server & 2 clients that are time stamped, but only if I could arrange all 3 of them in a UI side by side in a chronological order, it would be so easy for me to understand them. Thanks for any tips on such a software. (Or maybe some ideas to help me with this.)3 Edit: the mockup image has blue line partitions to separate out time in milliseconds.

How to analyse a sparse adjacency matrix?

﹥>﹥吖頭↗ 提交于 2019-12-04 05:42:45
I am researching sparse adjacency matrices where most cells are zeros and some ones here-and-there, each relationship between two cells has a polynomial description that can be very long and their analysis manually time-consuming. My instructor is suggesting purely algebraic method in terms of Gröbner bases but before proceeding I would like to know from purely computer science and programming perspective about how to analyse sparse adjacency matrices? Does there exist some data mining tools to analyse them? hhh Multivariate polynomial computation and Gröbner basis is an active research area.