任何人都可以帮我找到一个免费的开源WPF图表库吗?我们正在开发仪表板工具并使用之前的ms图表.现在我们计划选择WPF并坚持寻找一个图表库,它或多或少像ms图表一样,具有对3D再现的原生支持.
提前致谢.
我对git很新.我目前正试图熟悉它,通过使用它来跟踪我正在维护的一些excel文件中的更改,以跟踪我参与的一些连续活动.所有文件都在一个存储库中.我想用它们的版本分别标记每个文件.这可能吗?到目前为止,我发现了标记整个存储库的功能.如果我想做的是错的,请告诉我最佳做法.
提前致谢.
编辑
当我这样做的时候,我故意删除了一个先前的标签,使整个存储库被标记为(因为我没有找到标记单个文件的方法)为v1.0.由于我现在想要使用文件名重置标记的名称并且对事情的发生方式非常满意,如何回滚删除并重命名以前的标记(已删除的标记)?
我对在SSIS 2008 R2中创建与数据库的连接时发现的众多OLEDB提供商非常困惑.
如果您能告诉我以下供应商代表什么以及何时最好使用它们,我将不胜感激:
OleDB的.Net提供商
原生OLE DB
如果我想创建与相关数据库的OLE DB连接,我很不确定要使用哪些提供程序.另外,我很困惑为什么同样类型的提供程序出现在.Net和Native中.
你们中有谁知道用wpftoolkit创建多个系列图表的方法吗?简而言之,我想要的是为相同的独立值设置更多的依赖值.到目前为止,我找不到任何全面的机制来实现这一目标.非常感谢任何帮助.
这是关于在pcl文件中解压缩编码的rgb值.我是用pcl文档中描述的过程完成的,但是我得到的解压缩的rgb值并不完全正确.当我用R绘制它们时,给出的表示与真实设置中的颜色不对应(我在某种程度上确定问题不在于它用R绘制的方式).
例如,在附加的图像中,划分的区域应该具有灰色和蓝色(两把椅子和一张桌子).
可以在以下网址找到源pcl文件:https://docs.google.com/open?id = 0Bz5-HVcDiF6SanBZU0JWVmJwWHM 以及包含以下值的解压缩颜色值的文件:https://docs.google.com/open?id = 0Bz5 -HVcDiF6SV2pYQ0xUbTAwVmM.以下是用于在ac plus plus设置中解压缩颜色值的代码:
uint32_t rgbD = *reinterpret_cast<int*>(&kinectValue);
uint16_t rD = (rgbD >> 16) & 0x0000ff;
uint16_t gD = (rgbD >> 8) & 0x0000ff;
uint16_t bD = (rgbD) & 0x0000ff;
Run Code Online (Sandbox Code Playgroud)
如果你能让我知道我哪里出错了,我真的很感激.
更新:
以下是我用于绘制3D值的R代码片段:
library(rgl)
pcd <- read.table(file.choose(),sep="")
names(pcd) <- c("x","y","z","r","g","b")
plot3d(pcd$x,pcd$y,pcd$z,col=rgb(pcd$r,pcd$g,pcd$b,maxColorValue=255))
Run Code Online (Sandbox Code Playgroud)
更新:
以下是我用来读取数据的代码,用C++编写:
/*
Reads in a file from Kinect with unpacked color values, filter the color value component and
sends it to be unpacked
*/ …Run Code Online (Sandbox Code Playgroud) 是否可以通过 Microsoft Excel 浏览蒙德里安立方体?像 Microsoft SSAS 一样吗?如果没有,是否有可能使用 Sharepoint 作为前端来浏览蒙德里安立方体?
Postgres从9.5升级到9.6与查询Osmosis(用于处理OpenStreetMap数据的命令行Java应用程序)相关的处理时间非常慢.特别是将本地osm数据库与主osm repo同步(Postgis 2.3 from 2.2).同步过去每天都发生,平均花费大约500秒.升级后,48小时后仍然没有结束.我注意到与之前相比,对象处理时间非常慢(低于零)(下面的日志记录).我很确定问题出在Postgres更新上.无法弄清楚要解决的问题.pg_stat_activity提供以下查询(当前):
UPDATE ways w
SET linestring = (
SELECT ST_MakeLine(c.geom) AS way_line
FROM (
SELECT n.geom AS geom
FROM nodes n
INNER JOIN way_nodes wn ON n.id = wn.node_id
WHERE (wn.way_id = w.id)
ORDER BY wn.sequence_id ) c )
WHERE w.id IN (
SELECT w.id
FROM ways w
INNER JOIN way_nodes wn ON w.id = wn.way_id
WHERE wn.node_id = $1
GROUP BY w.id )
Run Code Online (Sandbox Code Playgroud)
更新后的日志记录:
Oct 31, 2017 12:23:59 PM org.openstreetmap.osmosis.core.Osmosis run
INFO: Osmosis Version 0.45 …Run Code Online (Sandbox Code Playgroud) 我正面临ListBox的ItemsSource相关问题.我正在使用WPF MVVM工具包版本0.1实现MVVM.
当用户双击某个其他元素时,我将一个ListBox itemSource设置为更新(我在后面的代码中处理了事件并在那里执行了命令,因为不支持将命令绑定到特定事件).此时,通过执行命令,将生成一个新的ObservableCollection项,并且ListBox的ItemsSource将相应地更新.但目前还没有发生.ListBox不会动态更新.可能是什么问题?我附上了relvent代码供你参考.
XAML:
双击项目列表以生成下一个列表:
<ListBox Height="162" HorizontalAlignment="Left" Margin="10,38,0,0" Name="tablesViewList" VerticalAlignment="Top" Width="144" Background="Transparent" BorderBrush="#20EEE2E2" BorderThickness="5" Foreground="White" ItemsSource="{Binding Path=Tables}" SelectedValue="{Binding TableNameSelected, Mode=OneWayToSource}" MouseDoubleClick="tablesViewList_MouseDoubleClick"/>
Run Code Online (Sandbox Code Playgroud)
目前尚未更新的第二个项目列表:
<ListBox Height="153" HorizontalAlignment="Left" Margin="10,233,0,0" Name="columnList" VerticalAlignment="Top" Width="144" Background="Transparent" BorderBrush="#20EEE2E2" BorderThickness="5" Foreground="White" ItemsSource="{Binding Path=Columns, Mode=OneWay}" DisplayMemberPath="ColumnDiscriptor"></ListBox>
Run Code Online (Sandbox Code Playgroud)
代码背后:
private void tablesViewList_MouseDoubleClick(object sender, MouseButtonEventArgs e)
{
MainViewModel currentViewModel = (MainViewModel)DataContext;
MessageBox.Show("Before event command is executed");
ICommand command = currentViewModel.PopulateColumns;
command.Execute(null);
MessageBox.Show(currentViewModel.TableNameSelected);
//command.Execute();
}
Run Code Online (Sandbox Code Playgroud)
查看型号:
namespace QueryBuilderMVVM.ViewModels
{
//delegate void Del();
public class MainViewModel : ViewModelBase
{
private DelegateCommand exitCommand; …Run Code Online (Sandbox Code Playgroud) 我正在寻找一种有效的方法,根据相似单词序列的外观将大约1000万个字符串聚类成簇.
考虑一个字符串列表,如:
the fruit hut number one
the ice cre am shop number one
jim's taco
ice cream shop in the corner
the ice cream shop
the fruit hut
jim's taco outlet number one
jim's t aco in the corner
the fruit hut in the corner
Run Code Online (Sandbox Code Playgroud)
算法运行后,我希望它们聚集如下:
the ice cre am shop number one
ice cream shop in the corner
the ice cream shop
jim's taco
jim's taco outlet number one
jim's t aco in the corner
the fruit hut …Run Code Online (Sandbox Code Playgroud) wpf ×3
c# ×2
wpftoolkit ×2
algorithm ×1
c++ ×1
excel ×1
git ×1
git-svn ×1
mondrian ×1
mvvm ×1
mvvm-toolkit ×1
nlp ×1
olap ×1
osmosis ×1
point-clouds ×1
postgis ×1
postgresql ×1
r ×1
sql-server ×1
ssas ×1
ssis ×1